This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \begin{tikzpicture}[draw, minimum width=1cm, minimum height=0.5cm] | |
| \node[draw] (in) at (-1,2) {}; | |
| \node[draw] (out) at (1,2) {}; | |
| \matrix (queue)[matrix of nodes, nodes={draw, nodes={draw}}, nodes in empty cells] | |
| { | |
| \\ \\ \\ \\ | |
| }; | |
| \draw[-latex] (0.25,1) .. controls (0.25,1.5) and (1,1.5) .. (out.south); | |
| \draw[-latex] (in.south) .. controls (-1, 1.5) and (-0.25,1.5) .. (-0.25,1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \begin{tikzpicture} [nodes in empty cells, | |
| nodes={minimum width=0.5cm, minimum height=0.5cm}, | |
| row sep=-\pgflinewidth, column sep=-\pgflinewidth] | |
| border/.style={draw} | |
| \matrix(vector)[matrix of nodes, | |
| row 1/.style={nodes={draw=none, minimum width=0.3cm}}, | |
| nodes={draw}] | |
| { | |
| \tiny{0} & \tiny{1} & \tiny{2} & \tiny{3}\\ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set smartindent | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set expandtab |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Authored my Maxfan http://github.com/Maxfan-zone http://maxfan.org | |
| # This is used to convert tikz code into svg file and load in you jekyll site | |
| # | |
| # Install: | |
| # | |
| # 1. Copy this file in your _plugins/ directory. You can customize it, of course. | |
| # 2. Make sure texlive and pdf2svg are installed on your computer. | |
| # | |
| # Input: | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Support files for the practical "Programming Evolutionary Algorithms with inspyred". This code is based on examples taken from inpyred source code. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Support files for the practical "Understanding parameters settings in Evolutionary Algorithms". This code is based on examples taken from inpyred source code. |
NewerOlder