You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| HTTP retry tuning |[examples/retry-tuning/](examples/retry-tuning/)| Drop-in service integration: choose retry policy per endpoint from recent failure rate and p99 latency. |
27
27
| Language clients |[examples/syntra-node/](examples/syntra-node/), [examples/syntra-go/](examples/syntra-go/), [examples/syntra-java/](examples/syntra-java/), [examples/syntra-rs/](examples/syntra-rs/)| Shows Syntra as an integration surface, including the Node OpenFeature provider. |
28
28
29
+
## Mega demos people miss
30
+
31
+
These demos are not the normal service-integration path. They are included
32
+
because they show what the compiled Lycan substrate can express when decisions
33
+
need real computation before the action is chosen.
34
+
35
+
| Demo | Path | What it proves |
36
+
|------|------|----------------|
37
+
| Live Mars mission planner |[examples/lycan-internals/showcase/02-live-mars-mission.sh](examples/lycan-internals/showcase/02-live-mars-mission.sh)| Fetches live NASA/JPL HORIZONS data, runs a native Lambert solver, then learns from mission feedback. |
38
+
| Earth-to-Mars transfer windows |[examples/lycan-internals/demo_mars_transfer.lycs](examples/lycan-internals/demo_mars_transfer.lycs)| Searches viable launch / transfer windows using orbital mechanics and competing search strategies. |
39
+
| Mars mission designer |[examples/lycan-internals/demo_mars_decide.lycs](examples/lycan-internals/demo_mars_decide.lycs)| Uses mission constraints, ephemeris data, and a Lambert solver to choose among mission-design strategies. |
40
+
| Apophis HORIZONS validation |[examples/lycan-internals/demo_horizons_apophis.lycs](examples/lycan-internals/demo_horizons_apophis.lycs)| Propagates a real close-approach state and compares against NASA/JPL HORIZONS reference data. |
41
+
| Pandemic / COVID-style policy simulator |[examples/lycan-internals/demo_pandemic_policy.lycs](examples/lycan-internals/demo_pandemic_policy.lycs)| Scores intervention choices across transmissibility, hospital load, test capacity, compliance, cost, and public-health outcomes. |
42
+
| Edge of chaos |[examples/lycan-internals/demo_edge_of_chaos.lycs](examples/lycan-internals/demo_edge_of_chaos.lycs)| Computes Feigenbaum-style and Lyapunov-style estimates of a nonlinear regime boundary. |
43
+
| Control chaos |[examples/lycan-internals/demo_control_chaos.lycs](examples/lycan-internals/demo_control_chaos.lycs)| Chooses controllers around a drifting nonlinear system. |
| Antiviral target selection |[examples/lycan-internals/demo_antiviral_target_selection.lycs](examples/lycan-internals/demo_antiviral_target_selection.lycs)| Selects candidate intervention targets from biological and operational constraints. |
48
+
| Planetary defense |[examples/lycan-internals/demo_planetary_defense.lycs](examples/lycan-internals/demo_planetary_defense.lycs)| Chooses among mitigation strategies under orbital-risk constraints. |
49
+
29
50
## Operational intelligence demos
30
51
31
52
These show capsules computing useful signals before choosing an action.
@@ -40,7 +61,7 @@ These show capsules computing useful signals before choosing an action.
40
61
| Shared-state action embeddings |[examples/shared-state-action-embeddings/](examples/shared-state-action-embeddings/)| Uses action features so learning can generalize across semantically similar actions. |
41
62
| Hierarchical region routing |[examples/hierarchical-region-routing/](examples/hierarchical-region-routing/)| Shows nested action spaces with per-level learning. |
42
63
43
-
## Substrate breadth demos
64
+
## Additional substrate breadth demos
44
65
45
66
These are Lycan-internals demos. They are not the normal service integration
46
67
path, but they show what the compiled runtime substrate can express.
@@ -54,6 +75,9 @@ path, but they show what the compiled runtime substrate can express.
54
75
| Edge of chaos |[examples/lycan-internals/demo_edge_of_chaos.lycs](examples/lycan-internals/demo_edge_of_chaos.lycs)| Computes Feigenbaum-style and Lyapunov-style estimates of a nonlinear regime boundary. |
55
76
| Control chaos |[examples/lycan-internals/demo_control_chaos.lycs](examples/lycan-internals/demo_control_chaos.lycs)| Chooses controllers around a drifting nonlinear system. |
|[Retry tuning](examples/retry-tuning/)| Chooses retry and timeout policy based on failure rate, latency, and later success feedback. |
51
58
|[Earth-to-Mars transfer windows](examples/lycan-internals/demo_mars_transfer.lycs)| Searches constraint-heavy mission windows with competing strategies. |
59
+
|[Live Mars mission planner](examples/lycan-internals/showcase/02-live-mars-mission.sh)| Fetches live NASA/JPL HORIZONS data, runs a native Lambert solver, and learns from mission feedback. |
60
+
|[Apophis HORIZONS validation](examples/lycan-internals/demo_horizons_apophis.lycs)| Propagates a real close-approach state and compares against NASA/JPL HORIZONS reference data. |
Copy file name to clipboardExpand all lines: examples/lycan-internals/README.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,26 @@ beyond what Syntra exposes.
9
9
The Syntra integration path is [`../retry-tuning/`](../retry-tuning/) and the
10
10
Syntra-shaped demos live in [`..`](..).
11
11
12
+
## Mega demos in this directory
13
+
14
+
These are the examples most likely to be missed by shallow repository
15
+
summaries:
16
+
17
+
| Demo | What it proves |
18
+
|------|----------------|
19
+
|[`showcase/02-live-mars-mission.sh`](showcase/02-live-mars-mission.sh)| Fetches live NASA/JPL HORIZONS data, runs a native Lambert solver, then learns from mission feedback. |
20
+
|[`demo_mars_transfer.lycs`](demo_mars_transfer.lycs)| Searches viable Earth-to-Mars transfer windows with orbital constraints and competing strategies. |
21
+
|[`demo_mars_decide.lycs`](demo_mars_decide.lycs)| Chooses among mission-design strategies from ephemeris and mission constraints. |
22
+
|[`demo_horizons_apophis.lycs`](demo_horizons_apophis.lycs)| Propagates a real Apophis close-approach state and compares against NASA/JPL HORIZONS reference data. |
23
+
|[`demo_pandemic_policy.lycs`](demo_pandemic_policy.lycs)| Scores pandemic / COVID-style intervention choices across hospital load, transmissibility, test capacity, compliance, cost, and outcomes. |
0 commit comments