Open source 
Subscribe to Open source feed Open source
Trac Timeline
Updated: 7 hours 16 min ago

Changeset [1326]: Updated standard.expdef animated demo: uses the most recent Framsticks ...

Sat, 2024-08-24 23:56

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

Wed, 2024-08-14 00:48

Minor optimizations

Changeset [1324]: Updated for current SDK sources and current Emscripten

Tue, 2024-08-13 22:56

Updated for current SDK sources and current Emscripten

Changeset [1323]: Field rename for less ambiguity

Mon, 2024-08-12 01:48

Field rename for less ambiguity

Changeset [1322]: Use libm.so when available to disable exceptions in pyemd, and if not ...

Fri, 2024-08-09 03:33

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

Fri, 2024-08-09 00:53

Updated one genotype to its current colored version

Changeset [1320]: update test results

Thu, 2024-08-08 23:02

update test results

Changeset [1319]: updated for Framsticks 5.0

Fri, 2024-07-12 01:32

updated for Framsticks 5.0

Changeset [1318]: Cosmetic

Thu, 2024-07-11 15:59

Cosmetic

Changeset [1317]: Randomly swap parents in crossover to avoid any imbalances or biases ...

Thu, 2024-07-11 15:41

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, ...

Thu, 2024-07-11 15:38

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 ...

Thu, 2024-07-11 15:26

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 - ...

Thu, 2024-07-11 15:22

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" ...

Thu, 2024-07-11 15:15

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

Fri, 2024-07-05 00:08

Cosmetic

Changeset [1311]: Introduced FITNESS_VALUE_INFEASIBLE_SOLUTION and modified selection ...

Fri, 2024-07-05 00:02

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 ...

Wed, 2024-06-26 02:52

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 - ...

Tue, 2024-06-25 00:48

Print genotypes that may have caused problems when being evaluated - useful when reproducing the problem