Changeset [1326]: Updated standard.expdef animated demo: uses the most recent Framsticks ...
Updated standard.expdef animated demo: uses the most recent Framsticks SDK, supports 6 genetic encodings, adjustable mutation and crossover probabilities, shows colored genotypes, allows user to manually increase/decrease fitness of the current individual, displays its neural network
Changeset [1325]: Minor optimizations
Minor optimizations
Changeset [1324]: Updated for current SDK sources and current Emscripten
Updated for current SDK sources and current Emscripten
Changeset [1323]: Field rename for less ambiguity
Field rename for less ambiguity
Changeset [1322]: Use libm.so when available to disable exceptions in pyemd, and if not ...
Use libm.so when available to disable exceptions in pyemd, and if not (e.g., on Windows), proceed without it
Changeset [1321]: Updated one genotype to its current colored version
Updated one genotype to its current colored version
Changeset [1320]: update test results
update test results
Changeset [1319]: updated for Framsticks 5.0
updated for Framsticks 5.0
Changeset [1318]: Cosmetic
Cosmetic
Changeset [1317]: Randomly swap parents in crossover to avoid any imbalances or biases ...
Randomly swap parents in crossover to avoid any imbalances or biases in crossover implementations (in case parent order in the implementation of operators would matter - while we assume it should not)
Changeset [1316]: Fixed the reported fraction of parent1 and parent2 genes in the child, ...
Fixed the reported fraction of parent1 and parent2 genes in the child, when the second child is chosen (the fractions were previously swapped in this case, i.e, they did not match the order of parent names)
Changeset [1315]: Offset of fields within an object: replaced subtraction of ...
Offset of fields within an object: replaced subtraction of pointers/addresses with the official offsetof()
Changeset [1314]: Added realloc() implementation that behaves like free() when size==0 - ...
Added realloc() implementation that behaves like free() when size==0 - consistently on all platforms, in contrast to standard realloc()
Changeset [1313]: Color mutations in f1 and f4, and a new syntax for "allowed modifiers" ...
Color mutations in f1 and f4, and a new syntax for "allowed modifiers" (opposite to previous "excluded modifiers") with optional probabilities for each modifier
Changeset [1312]: Cosmetic
Cosmetic
Changeset [1311]: Introduced FITNESS_VALUE_INFEASIBLE_SOLUTION and modified selection ...
Introduced FITNESS_VALUE_INFEASIBLE_SOLUTION and modified selection and statistics so that infeasible solutions are explicitly excluded (previously they were not excluded from statistics calculation, and eliminating/discriminating them during selection only relied on their relatively poor fitness value)
Changeset [1310]: Introduced GENOTYPE_INVALID_OFFSPRING_SUBSTITUTE_ORIGINAL (True by ...
Introduced GENOTYPE_INVALID_OFFSPRING_SUBSTITUTE_ORIGINAL (True by default) for developers who do not specifically detect and handle returned invalid genotypes after mutate() and crossOver()
Changeset [1309]: Print genotypes that may have caused problems when being evaluated - ...
Print genotypes that may have caused problems when being evaluated - useful when reproducing the problem