FAQ

My Algorithm does not work

▸ It does not do anything

Please double check that you set variables before using them. Crossover sets both offsprings in a hidden way, since blockly does not support more than one return value. If you're not using crossover, you need to set the offsprings yourself or use the parents directly.

▸ It stops before finding the optimum

Double check that you set variables before using them. Crossover sets both offsprings in a hidden way, since blockly does not support more than one return value. If you're not using crossover, you need to set the offsprings yourself or use the parents directly.

▸ It crashes with: ReferenceError: [...] is not defined

Please take a look if every needed variable is defined. For example, init population with μ individuals with the init strategy ... needs a variable named μ .

▸ It crashes with another error

Please download the XML file of your algorithm and send it to me: jellyfishcoding at live.de

▸ It crashes the browser completely

Please make sure you don't have any infinite loops in your code.