@reicek/neataptic-ts 0.1.25 → 0.1.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/copilot-instructions.md +11 -0
- package/.github/skills/trace-analyzer-extension/SKILL.md +3 -3
- package/.github/skills/trace-analyzer-extension/assets/extension-checklist.md +1 -1
- package/.github/skills/trace-analyzer-extension/references/analyzer-extension-workflow.md +1 -1
- package/.github/skills/trace-audit-reporting/SKILL.md +3 -3
- package/.github/skills/trace-audit-reporting/references/trace-analysis-workflow.md +1 -1
- package/package.json +19 -13
- package/plans/Flappy_Bird_Folder_Documentation_Pass.md +4 -4
- package/plans/README.md +24 -0
- package/plans/Roadmap.md +62 -40
- package/plans/analyze-trace-solid-split.plans.md +66 -0
- package/plans/architecture-solid-split.plans.md +9 -15
- package/plans/asciiMaze-typescript-repair.plans.md +1 -1
- package/plans/generate-docs-solid-split.plans.md +87 -0
- package/plans/methods-docs.plans.md +25 -1
- package/plans/methods-solid-split.plans.md +14 -14
- package/plans/neat-docs.plans.md +9 -1
- package/plans/neat-test-surface-repair.plans.md +1 -1
- package/plans/render-docs-html-solid-split.plans.md +68 -0
- package/plans/src-no-explicit-any-cleanup.plans.md +1 -1
- package/plans/utils-docs.plans.md +6 -1
- package/scripts/analyze-trace/analyze-trace.analysis.ts +479 -0
- package/scripts/analyze-trace/analyze-trace.constants.ts +35 -0
- package/scripts/analyze-trace/analyze-trace.io.ts +69 -0
- package/scripts/analyze-trace/analyze-trace.report.ts +100 -0
- package/scripts/analyze-trace/analyze-trace.shared.ts +116 -0
- package/scripts/analyze-trace/analyze-trace.ts +45 -0
- package/scripts/analyze-trace/analyze-trace.types.ts +72 -0
- package/scripts/assets/theme.css +80 -23
- package/scripts/copy-examples.ts +239 -0
- package/scripts/export-onnx.ts +223 -0
- package/scripts/generate-bench-tables.ts +378 -37
- package/scripts/generate-docs/generate-docs.constants.ts +107 -0
- package/scripts/generate-docs/generate-docs.order.ts +355 -0
- package/scripts/generate-docs/generate-docs.state.ts +31 -0
- package/scripts/generate-docs/generate-docs.targets.ts +165 -0
- package/scripts/generate-docs/generate-docs.ts +63 -0
- package/scripts/generate-docs/generate-docs.types.ts +112 -0
- package/scripts/generate-docs/output/generate-docs.output.folder-index.utils.ts +167 -0
- package/scripts/generate-docs/output/generate-docs.output.ordering.utils.ts +353 -0
- package/scripts/generate-docs/output/generate-docs.output.readme.utils.ts +420 -0
- package/scripts/generate-docs/output/generate-docs.output.ts +123 -0
- package/scripts/generate-docs/output/generate-docs.output.warnings.utils.ts +219 -0
- package/scripts/generate-docs/symbols/generate-docs.symbols.collection.utils.ts +365 -0
- package/scripts/generate-docs/symbols/generate-docs.symbols.jsdoc.utils.ts +373 -0
- package/scripts/generate-docs/symbols/generate-docs.symbols.normalize.utils.ts +155 -0
- package/scripts/generate-docs/symbols/generate-docs.symbols.render.utils.ts +149 -0
- package/scripts/generate-docs/symbols/generate-docs.symbols.signature.utils.ts +289 -0
- package/scripts/generate-docs/symbols/generate-docs.symbols.ts +11 -0
- package/scripts/mermaid-cli.mjs +102 -22
- package/scripts/mermaid-cli.ts +736 -0
- package/scripts/render-docs-html/render-docs-html.assets.ts +54 -0
- package/scripts/render-docs-html/render-docs-html.mermaid.ts +245 -0
- package/scripts/{render-docs-html.sidebar.ts → render-docs-html/render-docs-html.navigation.ts} +141 -144
- package/scripts/render-docs-html/render-docs-html.pages.ts +333 -0
- package/scripts/render-docs-html/render-docs-html.shared.ts +333 -0
- package/scripts/render-docs-html/render-docs-html.types.ts +42 -0
- package/scripts/render-docs-html.ts +23 -587
- package/scripts/run-docs.ts +238 -0
- package/scripts/write-dist-docs-pkg.ts +40 -0
- package/src/README.md +75 -75
- package/src/architecture/connection/README.md +5 -5
- package/src/architecture/layer/README.md +508 -508
- package/src/architecture/network/README.md +1458 -1458
- package/src/architecture/network/activate/README.md +694 -694
- package/src/architecture/network/bootstrap/README.md +77 -77
- package/src/architecture/network/connect/README.md +74 -74
- package/src/architecture/network/deterministic/README.md +135 -135
- package/src/architecture/network/evolve/README.md +364 -364
- package/src/architecture/network/gating/README.md +130 -130
- package/src/architecture/network/genetic/README.md +399 -399
- package/src/architecture/network/mutate/README.md +897 -897
- package/src/architecture/network/onnx/README.md +720 -720
- package/src/architecture/network/onnx/export/README.md +728 -728
- package/src/architecture/network/onnx/export/layers/README.md +450 -450
- package/src/architecture/network/onnx/import/README.md +618 -618
- package/src/architecture/network/onnx/schema/README.md +32 -32
- package/src/architecture/network/prune/README.md +245 -245
- package/src/architecture/network/remove/README.md +135 -135
- package/src/architecture/network/runtime/README.md +106 -106
- package/src/architecture/network/serialize/README.md +542 -542
- package/src/architecture/network/slab/README.md +608 -608
- package/src/architecture/network/standalone/README.md +212 -212
- package/src/architecture/network/stats/README.md +84 -84
- package/src/architecture/network/topology/README.md +465 -465
- package/src/architecture/network/training/README.md +200 -200
- package/src/architecture/node/README.md +5 -5
- package/src/architecture/nodePool/README.md +14 -14
- package/src/methods/README.md +99 -99
- package/src/methods/activation/README.md +189 -189
- package/src/methods/cost/README.md +131 -131
- package/src/methods/rate/README.md +86 -86
- package/src/multithreading/README.md +77 -77
- package/src/multithreading/workers/browser/README.md +8 -8
- package/src/multithreading/workers/node/README.md +8 -8
- package/src/neat/README.md +148 -148
- package/src/neat/adaptive/README.md +120 -120
- package/src/neat/adaptive/acceptance/README.md +40 -40
- package/src/neat/adaptive/complexity/README.md +137 -137
- package/src/neat/adaptive/core/README.md +197 -197
- package/src/neat/adaptive/lineage/README.md +90 -90
- package/src/neat/adaptive/mutation/README.md +284 -284
- package/src/neat/compat/README.md +43 -43
- package/src/neat/compat/core/README.md +90 -90
- package/src/neat/diversity/README.md +35 -35
- package/src/neat/diversity/core/README.md +88 -88
- package/src/neat/evaluate/README.md +85 -85
- package/src/neat/evaluate/auto-distance/README.md +75 -75
- package/src/neat/evaluate/entropy-compat/README.md +37 -37
- package/src/neat/evaluate/entropy-sharing/README.md +43 -43
- package/src/neat/evaluate/fitness/README.md +23 -23
- package/src/neat/evaluate/novelty/README.md +120 -120
- package/src/neat/evaluate/objectives/README.md +17 -17
- package/src/neat/evaluate/shared/README.md +94 -94
- package/src/neat/evolve/README.md +96 -96
- package/src/neat/evolve/adaptive/README.md +60 -60
- package/src/neat/evolve/objectives/README.md +63 -63
- package/src/neat/evolve/offspring/README.md +56 -56
- package/src/neat/evolve/population/README.md +171 -171
- package/src/neat/evolve/runtime/README.md +79 -79
- package/src/neat/evolve/speciation/README.md +74 -74
- package/src/neat/evolve/warnings/README.md +10 -10
- package/src/neat/export/README.md +114 -114
- package/src/neat/helpers/README.md +50 -50
- package/src/neat/init/README.md +9 -9
- package/src/neat/lineage/core/README.md +101 -101
- package/src/neat/multiobjective/category/README.md +74 -74
- package/src/neat/multiobjective/crowding/README.md +272 -272
- package/src/neat/multiobjective/dominance/README.md +171 -171
- package/src/neat/multiobjective/fronts/README.md +68 -68
- package/src/neat/multiobjective/metrics/README.md +43 -43
- package/src/neat/multiobjective/objectives/README.md +31 -31
- package/src/neat/multiobjective/shared/README.md +27 -27
- package/src/neat/mutation/README.md +97 -97
- package/src/neat/mutation/add-conn/README.md +115 -115
- package/src/neat/mutation/add-node/README.md +126 -126
- package/src/neat/mutation/flow/README.md +149 -149
- package/src/neat/mutation/repair/README.md +185 -185
- package/src/neat/mutation/select/README.md +117 -117
- package/src/neat/mutation/shared/README.md +32 -32
- package/src/neat/objectives/README.md +25 -25
- package/src/neat/objectives/core/README.md +67 -67
- package/src/neat/pruning/README.md +40 -40
- package/src/neat/pruning/core/README.md +171 -171
- package/src/neat/pruning/facade/README.md +32 -32
- package/src/neat/rng/README.md +104 -104
- package/src/neat/rng/core/README.md +137 -137
- package/src/neat/rng/facade/README.md +50 -50
- package/src/neat/selection/README.md +111 -111
- package/src/neat/selection/core/README.md +227 -227
- package/src/neat/selection/facade/README.md +61 -61
- package/src/neat/shared/README.md +163 -163
- package/src/neat/speciation/README.md +31 -31
- package/src/neat/speciation/threshold/README.md +35 -35
- package/src/neat/species/README.md +25 -25
- package/src/neat/species/core/README.md +20 -20
- package/src/neat/species/core/shared/README.md +18 -18
- package/src/neat/species/history/context/README.md +22 -22
- package/src/neat/telemetry/accessors/README.md +58 -58
- package/src/neat/telemetry/exports/README.md +233 -233
- package/src/neat/telemetry/facade/README.md +252 -252
- package/src/neat/telemetry/facade/archive/README.md +57 -57
- package/src/neat/telemetry/facade/buffer/README.md +43 -43
- package/src/neat/telemetry/facade/lineage/README.md +12 -12
- package/src/neat/telemetry/facade/objectives/README.md +44 -44
- package/src/neat/telemetry/facade/runtime/README.md +26 -26
- package/src/neat/telemetry/facade/species/README.md +27 -27
- package/src/neat/telemetry/metrics/README.md +696 -696
- package/src/neat/telemetry/recorder/README.md +57 -57
- package/src/neat/telemetry/types/README.md +32 -32
- package/src/neat/topology-intent/README.md +75 -75
- package/src/utils/README.md +193 -193
- package/test/examples/asciiMaze/browser-entry/README.md +92 -92
- package/test/examples/asciiMaze/dashboardManager/README.md +109 -109
- package/test/examples/asciiMaze/dashboardManager/telemetry/README.md +28 -28
- package/test/examples/asciiMaze/evolutionEngine/README.md +1527 -1527
- package/test/examples/asciiMaze/mazeMovement/README.md +105 -105
- package/test/examples/asciiMaze/mazeMovement/finalization/README.md +16 -16
- package/test/examples/asciiMaze/mazeMovement/policy/README.md +57 -57
- package/test/examples/asciiMaze/mazeMovement/runtime/README.md +52 -52
- package/test/examples/asciiMaze/mazeMovement/shaping/README.md +46 -46
- package/test/examples/flappy_bird/browser-entry/README.md +508 -508
- package/test/examples/flappy_bird/browser-entry/host/README.md +101 -101
- package/test/examples/flappy_bird/browser-entry/host/resize/README.md +144 -144
- package/test/examples/flappy_bird/browser-entry/network-view/README.md +194 -194
- package/test/examples/flappy_bird/browser-entry/playback/README.md +278 -278
- package/test/examples/flappy_bird/browser-entry/playback/background/README.md +129 -129
- package/test/examples/flappy_bird/browser-entry/playback/background/ground-grid/README.md +502 -502
- package/test/examples/flappy_bird/browser-entry/playback/frame-render/README.md +139 -139
- package/test/examples/flappy_bird/browser-entry/playback/snapshot/README.md +10 -10
- package/test/examples/flappy_bird/browser-entry/playback/trail/README.md +43 -43
- package/test/examples/flappy_bird/browser-entry/playback/worker-channel/README.md +30 -30
- package/test/examples/flappy_bird/browser-entry/runtime/README.md +59 -59
- package/test/examples/flappy_bird/browser-entry/visualization/README.md +276 -276
- package/test/examples/flappy_bird/browser-entry/worker-channel/README.md +16 -16
- package/test/examples/flappy_bird/constants/README.md +1070 -1070
- package/test/examples/flappy_bird/environment/README.md +22 -22
- package/test/examples/flappy_bird/evaluation/README.md +32 -32
- package/test/examples/flappy_bird/evaluation/rollout/README.md +141 -141
- package/test/examples/flappy_bird/flappy-evolution-worker/README.md +425 -425
- package/test/examples/flappy_bird/simulation-shared/README.md +170 -170
- package/test/examples/flappy_bird/simulation-shared/observation/README.md +109 -109
- package/test/examples/flappy_bird/trainer/README.md +325 -325
- package/test/examples/flappy_bird/trainer/evaluation/README.md +74 -74
- package/scripts/analyze-trace.ts +0 -590
- package/scripts/copy-examples.mjs +0 -114
- package/scripts/export-onnx.mjs +0 -86
- package/scripts/generate-bench-tables.mjs +0 -182
- package/scripts/generate-docs.ts +0 -2900
- package/scripts/write-dist-docs-pkg.mjs +0 -16
|
@@ -35,40 +35,22 @@ flowchart TD
|
|
|
35
35
|
|
|
36
36
|
## neat/adaptive/core/adaptive.core.types.ts
|
|
37
37
|
|
|
38
|
-
###
|
|
39
|
-
|
|
40
|
-
Contract map for the adaptive helper boundary.
|
|
38
|
+
### AdaptiveMutationConfig
|
|
41
39
|
|
|
42
|
-
|
|
43
|
-
single feedback loop while still sharing one precise agreement about what it
|
|
44
|
-
may read, what it may rewrite, and which option family owns each tuning
|
|
45
|
-
decision. This file is that agreement.
|
|
40
|
+
Shared config view for per-genome adaptive mutation helpers.
|
|
46
41
|
|
|
47
|
-
|
|
42
|
+
The mutation adaptation loop reads this slice to clamp rates, normalize
|
|
43
|
+
perturbation scales, and decide how often genome-local parameters are
|
|
44
|
+
refreshed. It is the mutation-side policy vocabulary before defaults are
|
|
45
|
+
resolved into `MutationSettings`.
|
|
48
46
|
|
|
49
|
-
|
|
50
|
-
scratch fields adaptive controllers are allowed to maintain,
|
|
51
|
-
- continue with the exported `*Config` aliases to see how complexity,
|
|
52
|
-
acceptance, mutation, operator adaptation, and lineage feedback each slice
|
|
53
|
-
the broader options object,
|
|
54
|
-
- finish with `Genome`, `MutationSettings`, `MutationPartitions`, and
|
|
55
|
-
`MutationOutcome` when you want the normalized working shapes used inside
|
|
56
|
-
adaptive mutation helpers.
|
|
47
|
+
### AncestorUniqAdaptiveConfig
|
|
57
48
|
|
|
58
|
-
|
|
59
|
-
This file stays focused on contracts so the generated chapter reads as a
|
|
60
|
-
bounded vocabulary map rather than a second controller implementation.
|
|
49
|
+
Shared config view for ancestor-uniqueness feedback helpers.
|
|
61
50
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
Host --> Population[Population runtime state]
|
|
66
|
-
Host --> Scratch[Adaptive scratch fields and telemetry]
|
|
67
|
-
Options --> Complexity[Complexity and phased schedules]
|
|
68
|
-
Options --> Acceptance[Acceptance and minimal criterion]
|
|
69
|
-
Options --> Mutation[Mutation and operator adaptation]
|
|
70
|
-
Options --> Lineage[Ancestor uniqueness and lineage pressure]
|
|
71
|
-
```
|
|
51
|
+
This captures the thresholds, cooldowns, and mode switches used when the
|
|
52
|
+
controller nudges diversity pressure in response to lineage concentration.
|
|
53
|
+
Read it as the lineage-feedback slice of the broader adaptive options object.
|
|
72
54
|
|
|
73
55
|
### ComplexityBudgetConfig
|
|
74
56
|
|
|
@@ -79,13 +61,13 @@ schedule shape, and improvement-window tuning for the adaptive budget loop.
|
|
|
79
61
|
It is the smallest view needed for the controller that grows or shrinks the
|
|
80
62
|
allowed topology budget over time.
|
|
81
63
|
|
|
82
|
-
###
|
|
64
|
+
### Genome
|
|
83
65
|
|
|
84
|
-
Shared
|
|
66
|
+
Shared genome view used by the adaptive helpers.
|
|
85
67
|
|
|
86
|
-
This
|
|
87
|
-
|
|
88
|
-
|
|
68
|
+
This is intentionally opaque beyond the adaptive scratch fields already
|
|
69
|
+
exposed through `NeatLikeWithAdaptive['population']`. The adaptive core cares
|
|
70
|
+
about per-genome scores and adaptive overrides, not full network structure.
|
|
89
71
|
|
|
90
72
|
### MinimalCriterionAdaptiveConfig
|
|
91
73
|
|
|
@@ -95,31 +77,21 @@ Helpers use this slice when they are only adjusting the acceptance
|
|
|
95
77
|
threshold, not inspecting the rest of the controller policy surface. This is
|
|
96
78
|
the acceptance-side tuning vocabulary, not a whole-population runtime view.
|
|
97
79
|
|
|
98
|
-
###
|
|
99
|
-
|
|
100
|
-
Shared config view for ancestor-uniqueness feedback helpers.
|
|
101
|
-
|
|
102
|
-
This captures the thresholds, cooldowns, and mode switches used when the
|
|
103
|
-
controller nudges diversity pressure in response to lineage concentration.
|
|
104
|
-
Read it as the lineage-feedback slice of the broader adaptive options object.
|
|
105
|
-
|
|
106
|
-
### AdaptiveMutationConfig
|
|
80
|
+
### MutationOutcome
|
|
107
81
|
|
|
108
|
-
|
|
82
|
+
Outcome flags used to detect whether mutation pressure stayed balanced.
|
|
109
83
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
resolved into `MutationSettings`.
|
|
84
|
+
Mutation adaptation uses this tiny result object to summarize whether recent
|
|
85
|
+
adjustments produced both upward and downward movement rather than collapsing
|
|
86
|
+
into one-sided pressure.
|
|
114
87
|
|
|
115
|
-
###
|
|
88
|
+
### MutationPartitions
|
|
116
89
|
|
|
117
|
-
|
|
90
|
+
Score-ranked population halves used by two-tier and explore-low strategies.
|
|
118
91
|
|
|
119
|
-
This
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
feedback loop from per-genome rate tuning.
|
|
92
|
+
This keeps the mutation strategies' working partitions explicit so helpers
|
|
93
|
+
can talk about "top half" and "bottom half" without recomputing or loosely
|
|
94
|
+
describing that split.
|
|
123
95
|
|
|
124
96
|
### MutationSettings
|
|
125
97
|
|
|
@@ -131,29 +103,57 @@ optional config fields. Read it as the mutation chapter's resolved call
|
|
|
131
103
|
frame: one object with every clamp, sigma, strategy, and baseline already in
|
|
132
104
|
concrete form.
|
|
133
105
|
|
|
134
|
-
###
|
|
106
|
+
### NeatLikeWithAdaptive
|
|
135
107
|
|
|
136
|
-
|
|
108
|
+
Contract map for the adaptive helper boundary.
|
|
137
109
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
110
|
+
The adaptive subtree works because each policy chapter can stay focused on a
|
|
111
|
+
single feedback loop while still sharing one precise agreement about what it
|
|
112
|
+
may read, what it may rewrite, and which option family owns each tuning
|
|
113
|
+
decision. This file is that agreement.
|
|
141
114
|
|
|
142
|
-
|
|
115
|
+
Read the contracts in three passes:
|
|
143
116
|
|
|
144
|
-
|
|
117
|
+
- start with `NeatLikeWithAdaptive` to see the runtime host surface and the
|
|
118
|
+
scratch fields adaptive controllers are allowed to maintain,
|
|
119
|
+
- continue with the exported `*Config` aliases to see how complexity,
|
|
120
|
+
acceptance, mutation, operator adaptation, and lineage feedback each slice
|
|
121
|
+
the broader options object,
|
|
122
|
+
- finish with `Genome`, `MutationSettings`, `MutationPartitions`, and
|
|
123
|
+
`MutationOutcome` when you want the normalized working shapes used inside
|
|
124
|
+
adaptive mutation helpers.
|
|
145
125
|
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
126
|
+
The matching defaults and mode labels live in `adaptive.core.constants.ts`.
|
|
127
|
+
This file stays focused on contracts so the generated chapter reads as a
|
|
128
|
+
bounded vocabulary map rather than a second controller implementation.
|
|
149
129
|
|
|
150
|
-
|
|
130
|
+
```mermaid
|
|
131
|
+
flowchart TD
|
|
132
|
+
Host[NeatLikeWithAdaptive host] --> Options[Adaptive option families]
|
|
133
|
+
Host --> Population[Population runtime state]
|
|
134
|
+
Host --> Scratch[Adaptive scratch fields and telemetry]
|
|
135
|
+
Options --> Complexity[Complexity and phased schedules]
|
|
136
|
+
Options --> Acceptance[Acceptance and minimal criterion]
|
|
137
|
+
Options --> Mutation[Mutation and operator adaptation]
|
|
138
|
+
Options --> Lineage[Ancestor uniqueness and lineage pressure]
|
|
139
|
+
```
|
|
151
140
|
|
|
152
|
-
|
|
141
|
+
### OperatorAdaptationConfig
|
|
153
142
|
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
143
|
+
Shared config view for operator-stat adaptation helpers.
|
|
144
|
+
|
|
145
|
+
This is the policy surface for helpers that bias mutation-operator choice
|
|
146
|
+
using historical success and attempt statistics. It stays separate from the
|
|
147
|
+
broader adaptive mutation config because operator-choice decay is a different
|
|
148
|
+
feedback loop from per-genome rate tuning.
|
|
149
|
+
|
|
150
|
+
### PhasedComplexityConfig
|
|
151
|
+
|
|
152
|
+
Shared config view for phased-complexity helpers.
|
|
153
|
+
|
|
154
|
+
This isolates the alternating complexify/simplify schedule from the broader
|
|
155
|
+
adaptive options object so phase-oriented helpers can stay narrow and think
|
|
156
|
+
in terms of mode transitions instead of the entire adaptive policy surface.
|
|
157
157
|
|
|
158
158
|
## neat/adaptive/core/adaptive.core.ts
|
|
159
159
|
|
|
@@ -326,262 +326,262 @@ adaptive subtree reuses one glossary for tiny math helpers, schedule timing,
|
|
|
326
326
|
mode names, and safety clamps instead of scattering unrelated literals across
|
|
327
327
|
each control loop.
|
|
328
328
|
|
|
329
|
-
###
|
|
329
|
+
### ACCEPTANCE_LOWER_MULTIPLIER
|
|
330
330
|
|
|
331
|
-
|
|
331
|
+
Lower multiplier used when the controller relaxes acceptance pressure.
|
|
332
332
|
|
|
333
|
-
###
|
|
333
|
+
### ACCEPTANCE_UPPER_MULTIPLIER
|
|
334
334
|
|
|
335
|
-
|
|
335
|
+
Upper multiplier used when the controller nudges acceptance pressure upward.
|
|
336
336
|
|
|
337
|
-
###
|
|
337
|
+
### ADJUST_RATE_DEFAULT
|
|
338
338
|
|
|
339
|
-
|
|
339
|
+
Default adjustment step for adaptive minimal-criterion threshold updates.
|
|
340
340
|
|
|
341
|
-
###
|
|
341
|
+
### ANCESTOR_UNIQ_MODE_EPSILON
|
|
342
342
|
|
|
343
|
-
|
|
343
|
+
Mode label for epsilon-style ancestor-uniqueness feedback.
|
|
344
344
|
|
|
345
|
-
###
|
|
345
|
+
### ANCESTOR_UNIQ_MODE_LINEAGE_PRESSURE
|
|
346
346
|
|
|
347
|
-
|
|
347
|
+
Mode label for ancestor-uniqueness control via lineage-pressure tuning.
|
|
348
348
|
|
|
349
|
-
###
|
|
349
|
+
### ANNEAL_BASELINE_GENERATIONS
|
|
350
350
|
|
|
351
|
-
|
|
351
|
+
Baseline generations for annealing progress.
|
|
352
352
|
|
|
353
|
-
###
|
|
353
|
+
### ANNEAL_PROGRESS_MAX
|
|
354
354
|
|
|
355
|
-
|
|
355
|
+
Maximum progress ratio used in annealing.
|
|
356
356
|
|
|
357
|
-
###
|
|
357
|
+
### BUDGET_GROWTH_MULTIPLIER
|
|
358
358
|
|
|
359
|
-
|
|
359
|
+
Default budget growth multiplier.
|
|
360
360
|
|
|
361
|
-
###
|
|
361
|
+
### COMPLEXITY_MODE_ADAPTIVE
|
|
362
362
|
|
|
363
|
-
|
|
363
|
+
Mode label for feedback-driven complexity-budget scheduling.
|
|
364
364
|
|
|
365
|
-
###
|
|
365
|
+
### COMPLEXITY_MODE_LINEAR
|
|
366
366
|
|
|
367
|
-
|
|
367
|
+
Mode label for pre-planned linear complexity-budget scheduling.
|
|
368
368
|
|
|
369
|
-
###
|
|
369
|
+
### DEFAULT_ADAPT_EVERY
|
|
370
370
|
|
|
371
|
-
|
|
371
|
+
Default cadence for refreshing per-genome adaptive mutation settings.
|
|
372
372
|
|
|
373
|
-
###
|
|
373
|
+
### DEFAULT_ANCESTOR_UNIQ_ADJUST
|
|
374
374
|
|
|
375
|
-
|
|
375
|
+
Default adjustment magnitude for uniqueness nudges.
|
|
376
376
|
|
|
377
|
-
###
|
|
377
|
+
### DEFAULT_ANCESTOR_UNIQ_COOLDOWN
|
|
378
378
|
|
|
379
|
-
Default
|
|
379
|
+
Default cooldown (generations) for ancestor-uniqueness adjustments.
|
|
380
380
|
|
|
381
|
-
###
|
|
381
|
+
### DEFAULT_ANCESTOR_UNIQ_HIGH_THRESHOLD
|
|
382
382
|
|
|
383
|
-
Default
|
|
383
|
+
Default upper bound for acceptable ancestor uniqueness.
|
|
384
384
|
|
|
385
|
-
###
|
|
385
|
+
### DEFAULT_ANCESTOR_UNIQ_LOW_THRESHOLD
|
|
386
386
|
|
|
387
|
-
|
|
387
|
+
Default lower bound for acceptable ancestor uniqueness.
|
|
388
388
|
|
|
389
|
-
###
|
|
389
|
+
### DEFAULT_CB_INCREASE_FACTOR
|
|
390
390
|
|
|
391
|
-
|
|
391
|
+
Default multiplier used when adaptive complexity budgeting detects improvement.
|
|
392
392
|
|
|
393
|
-
###
|
|
393
|
+
### DEFAULT_CB_STAGNATION_FACTOR
|
|
394
394
|
|
|
395
|
-
|
|
395
|
+
Default multiplier used when adaptive complexity budgeting responds to stagnation.
|
|
396
396
|
|
|
397
|
-
###
|
|
397
|
+
### DEFAULT_IMPROVEMENT_WINDOW
|
|
398
398
|
|
|
399
|
-
|
|
399
|
+
Default score-history window for trend-aware complexity budgeting.
|
|
400
400
|
|
|
401
|
-
###
|
|
401
|
+
### DEFAULT_INITIAL_MUTATION_RATE
|
|
402
402
|
|
|
403
|
-
|
|
403
|
+
Default initial mutation rate used before adaptive balancing specializes genomes.
|
|
404
404
|
|
|
405
|
-
###
|
|
405
|
+
### DEFAULT_LINEAGE_PRESSURE_STRENGTH
|
|
406
406
|
|
|
407
|
-
|
|
407
|
+
Default lineage pressure strength when initializing the option.
|
|
408
408
|
|
|
409
|
-
###
|
|
409
|
+
### DEFAULT_MAX_MUTATION_AMOUNT
|
|
410
410
|
|
|
411
|
-
|
|
411
|
+
Default maximum mutation amount.
|
|
412
412
|
|
|
413
|
-
###
|
|
413
|
+
### DEFAULT_MAX_MUTATION_RATE
|
|
414
414
|
|
|
415
|
-
Default
|
|
415
|
+
Default upper clamp for per-genome adaptive mutation rates.
|
|
416
416
|
|
|
417
|
-
###
|
|
417
|
+
### DEFAULT_MIN_MUTATION_AMOUNT
|
|
418
418
|
|
|
419
|
-
Default
|
|
419
|
+
Default minimum mutation amount.
|
|
420
420
|
|
|
421
|
-
###
|
|
421
|
+
### DEFAULT_MIN_MUTATION_RATE
|
|
422
422
|
|
|
423
|
-
|
|
423
|
+
Default lower clamp for per-genome adaptive mutation rates.
|
|
424
424
|
|
|
425
|
-
###
|
|
425
|
+
### DEFAULT_MUTATION_AMOUNT
|
|
426
426
|
|
|
427
|
-
Default
|
|
427
|
+
Default mutation amount when genome value is missing.
|
|
428
428
|
|
|
429
|
-
###
|
|
429
|
+
### DEFAULT_MUTATION_AMOUNT_SIGMA
|
|
430
430
|
|
|
431
|
-
Default
|
|
431
|
+
Default perturbation spread for adaptive mutation-amount updates.
|
|
432
432
|
|
|
433
|
-
###
|
|
433
|
+
### DEFAULT_MUTATION_SIGMA
|
|
434
434
|
|
|
435
|
-
Default
|
|
435
|
+
Default perturbation spread for adaptive mutation-rate updates.
|
|
436
436
|
|
|
437
|
-
###
|
|
437
|
+
### DENOMINATOR_FALLBACK
|
|
438
438
|
|
|
439
|
-
|
|
439
|
+
Fallback denominator to avoid divide-by-zero.
|
|
440
440
|
|
|
441
|
-
###
|
|
441
|
+
### EXPLORE_LOW_DECREASE_MULTIPLIER
|
|
442
442
|
|
|
443
|
-
|
|
443
|
+
Multiplicative decay for explore-low strategy (top half).
|
|
444
444
|
|
|
445
|
-
###
|
|
445
|
+
### EXPLORE_LOW_INCREASE_MULTIPLIER
|
|
446
446
|
|
|
447
|
-
|
|
447
|
+
Multiplicative boost for explore-low strategy (bottom half).
|
|
448
448
|
|
|
449
|
-
###
|
|
449
|
+
### FIVE
|
|
450
450
|
|
|
451
|
-
|
|
451
|
+
Small count baseline reused by archive-size and cooldown defaults.
|
|
452
452
|
|
|
453
|
-
###
|
|
453
|
+
### FOUR
|
|
454
454
|
|
|
455
|
-
|
|
455
|
+
Small multiplier reused by adaptive-budget growth defaults.
|
|
456
456
|
|
|
457
|
-
###
|
|
457
|
+
### HALF_INDEX_DIVISOR
|
|
458
458
|
|
|
459
|
-
|
|
459
|
+
Divisor used to split populations in half.
|
|
460
460
|
|
|
461
|
-
###
|
|
461
|
+
### HISTORY_MIN_IMPROVEMENT_COUNT
|
|
462
462
|
|
|
463
|
-
|
|
463
|
+
Minimum history length to compute improvement.
|
|
464
464
|
|
|
465
|
-
###
|
|
465
|
+
### HISTORY_MIN_SLOPE_COUNT
|
|
466
466
|
|
|
467
|
-
|
|
467
|
+
Minimum history length to compute slope.
|
|
468
468
|
|
|
469
|
-
###
|
|
469
|
+
### LINEAGE_PRESSURE_DECREASE_MULTIPLIER
|
|
470
470
|
|
|
471
|
-
|
|
471
|
+
Multiplier when decreasing lineage pressure strength.
|
|
472
472
|
|
|
473
|
-
###
|
|
473
|
+
### LINEAGE_PRESSURE_INCREASE_MULTIPLIER
|
|
474
474
|
|
|
475
|
-
|
|
475
|
+
Multiplier when increasing lineage pressure strength.
|
|
476
476
|
|
|
477
477
|
### LINEAGE_PRESSURE_MODE_SPREAD
|
|
478
478
|
|
|
479
479
|
Lineage pressure spread mode.
|
|
480
480
|
|
|
481
|
-
###
|
|
482
|
-
|
|
483
|
-
Default cooldown (generations) for ancestor-uniqueness adjustments.
|
|
484
|
-
|
|
485
|
-
### DEFAULT_ANCESTOR_UNIQ_LOW_THRESHOLD
|
|
481
|
+
### LINEAR_HORIZON_DEFAULT
|
|
486
482
|
|
|
487
|
-
Default
|
|
483
|
+
Default horizon for linear schedule.
|
|
488
484
|
|
|
489
|
-
###
|
|
485
|
+
### MINIMAL_TOPOLOGY_OFFSET
|
|
490
486
|
|
|
491
|
-
|
|
487
|
+
Offset added to input/output for minimal topology.
|
|
492
488
|
|
|
493
|
-
###
|
|
489
|
+
### MUTATION_SIGMA_SCALE
|
|
494
490
|
|
|
495
|
-
|
|
491
|
+
Scale applied to mutation sigma for perturbations.
|
|
496
492
|
|
|
497
|
-
###
|
|
493
|
+
### MUTATION_STRATEGY_ANNEAL
|
|
498
494
|
|
|
499
|
-
|
|
495
|
+
Strategy label for annealed mutation pressure across run progress.
|
|
500
496
|
|
|
501
|
-
###
|
|
497
|
+
### MUTATION_STRATEGY_EXPLORE_LOW
|
|
502
498
|
|
|
503
|
-
|
|
499
|
+
Strategy label for boosting structural risk on the lower-ranked half.
|
|
504
500
|
|
|
505
|
-
###
|
|
501
|
+
### MUTATION_STRATEGY_TWO_TIER
|
|
506
502
|
|
|
507
|
-
|
|
503
|
+
Strategy label for ranking-sensitive two-tier adaptive mutation.
|
|
508
504
|
|
|
509
|
-
###
|
|
505
|
+
### NEGATIVE_ONE
|
|
510
506
|
|
|
511
|
-
|
|
507
|
+
Last-index sentinel reused when helpers need the final recorded item.
|
|
512
508
|
|
|
513
|
-
###
|
|
509
|
+
### NOVELTY_ARCHIVE_MIN_SIZE
|
|
514
510
|
|
|
515
|
-
|
|
511
|
+
Novelty archive minimum size.
|
|
516
512
|
|
|
517
|
-
###
|
|
513
|
+
### NOVELTY_FACTOR_DEFAULT
|
|
518
514
|
|
|
519
|
-
|
|
515
|
+
Novelty factor when archive is sufficient.
|
|
520
516
|
|
|
521
|
-
###
|
|
517
|
+
### NOVELTY_FACTOR_SMALL
|
|
522
518
|
|
|
523
|
-
|
|
519
|
+
Novelty factor when archive is small.
|
|
524
520
|
|
|
525
|
-
###
|
|
521
|
+
### ONE
|
|
526
522
|
|
|
527
|
-
|
|
523
|
+
Unit baseline reused by clamp, ratio, and fallback calculations.
|
|
528
524
|
|
|
529
|
-
###
|
|
525
|
+
### ONE_HUNDRED
|
|
530
526
|
|
|
531
|
-
|
|
527
|
+
Large round-number default for long-horizon scheduling.
|
|
532
528
|
|
|
533
|
-
###
|
|
529
|
+
### OPERATOR_DECAY_DEFAULT
|
|
534
530
|
|
|
535
|
-
Default
|
|
531
|
+
Default operator decay factor.
|
|
536
532
|
|
|
537
|
-
###
|
|
533
|
+
### PHASE_COMPLEXIFY
|
|
538
534
|
|
|
539
|
-
|
|
535
|
+
Phase label for the structure-growth side of phased complexity.
|
|
540
536
|
|
|
541
|
-
###
|
|
537
|
+
### PHASE_LENGTH_DEFAULT
|
|
542
538
|
|
|
543
|
-
Default
|
|
539
|
+
Default phase length in generations for phased complexify/simplify schedules.
|
|
544
540
|
|
|
545
|
-
###
|
|
541
|
+
### PHASE_SIMPLIFY
|
|
546
542
|
|
|
547
|
-
|
|
543
|
+
Phase label for the structure-pruning side of phased complexity.
|
|
548
544
|
|
|
549
|
-
###
|
|
545
|
+
### PROGRESS_RATIO_MAX
|
|
550
546
|
|
|
551
|
-
|
|
547
|
+
Maximum progress ratio for scheduling.
|
|
552
548
|
|
|
553
549
|
### RNG_CENTER_OFFSET
|
|
554
550
|
|
|
555
551
|
Random offset for signed deltas.
|
|
556
552
|
|
|
557
|
-
###
|
|
553
|
+
### RNG_SPREAD_MULTIPLIER
|
|
558
554
|
|
|
559
|
-
|
|
555
|
+
Random range multiplier for signed deltas.
|
|
560
556
|
|
|
561
|
-
###
|
|
557
|
+
### SLOPE_BOOST_MULTIPLIER
|
|
562
558
|
|
|
563
|
-
|
|
559
|
+
Slope boost multiplier for adaptive increase factor.
|
|
564
560
|
|
|
565
|
-
###
|
|
561
|
+
### SLOPE_NORMALIZE_CLAMP
|
|
566
562
|
|
|
567
|
-
|
|
563
|
+
Clamp magnitude for slope normalization.
|
|
568
564
|
|
|
569
|
-
###
|
|
565
|
+
### SLOPE_PENALTY_MULTIPLIER
|
|
570
566
|
|
|
571
|
-
|
|
567
|
+
Slope penalty multiplier for stagnation factor.
|
|
572
568
|
|
|
573
|
-
###
|
|
569
|
+
### TARGET_ACCEPTANCE_DEFAULT
|
|
574
570
|
|
|
575
|
-
|
|
571
|
+
Default acceptance target for adaptive minimal-criterion control.
|
|
576
572
|
|
|
577
|
-
###
|
|
573
|
+
### TEN
|
|
578
574
|
|
|
579
|
-
|
|
575
|
+
Round-number default reused by windows and phase lengths.
|
|
580
576
|
|
|
581
|
-
###
|
|
577
|
+
### THREE
|
|
582
578
|
|
|
583
|
-
|
|
579
|
+
Small threshold used by helpers that need a minimal multi-sample floor.
|
|
584
580
|
|
|
585
|
-
###
|
|
581
|
+
### TWO
|
|
586
582
|
|
|
587
|
-
|
|
583
|
+
Small divisor and offset used by split and normalization helpers.
|
|
584
|
+
|
|
585
|
+
### ZERO
|
|
586
|
+
|
|
587
|
+
Zero baseline reused by tiny adaptive arithmetic helpers.
|