erdos-problems 0.2.7 → 0.2.9
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/README.md +3 -1
- package/docs/RESEARCH_LOOP.md +1 -1
- package/package.json +2 -1
- package/packs/graph-theory/README.md +6 -6
- package/packs/graph-theory/problems/1008/CONTEXT.md +1 -1
- package/packs/graph-theory/problems/1008/OPS_DETAILS.yaml +1 -1
- package/packs/graph-theory/problems/1008/ROUTE_HISTORY.md +1 -1
- package/packs/graph-theory/problems/1008/context.yaml +1 -1
- package/packs/graph-theory/problems/19/CONTEXT.md +1 -1
- package/packs/graph-theory/problems/19/FRONTIER_NOTE.md +1 -1
- package/packs/graph-theory/problems/19/OPS_DETAILS.yaml +1 -1
- package/packs/graph-theory/problems/19/ROUTE_HISTORY.md +1 -1
- package/packs/graph-theory/problems/19/context.yaml +2 -2
- package/packs/graph-theory/problems/22/CONTEXT.md +1 -1
- package/packs/graph-theory/problems/22/OPS_DETAILS.yaml +1 -1
- package/packs/graph-theory/problems/22/ROUTE_HISTORY.md +1 -1
- package/packs/graph-theory/problems/22/context.yaml +3 -3
- package/packs/number-theory/README.md +4 -4
- package/packs/number-theory/problems/1/FRONTIER_NOTE.md +1 -1
- package/packs/number-theory/problems/1/OPS_DETAILS.yaml +4 -4
- package/packs/number-theory/problems/1/ROUTE_HISTORY.md +1 -1
- package/packs/number-theory/problems/1/context.yaml +2 -2
- package/packs/number-theory/problems/2/FRONTIER_NOTE.md +1 -1
- package/packs/number-theory/problems/2/OPS_DETAILS.yaml +1 -1
- package/packs/number-theory/problems/2/ROUTE_HISTORY.md +1 -1
- package/packs/number-theory/problems/2/context.yaml +2 -2
- package/src/commands/cluster.js +5 -5
- package/src/runtime/archive.js +1 -1
- package/src/runtime/graph-theory.js +1 -1
- package/src/runtime/number-theory.js +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# erdos-problems
|
|
2
2
|
|
|
3
|
+
Maintained by Fractal Research Group (`frg.earth`).
|
|
4
|
+
|
|
3
5
|
> CLI and workspace for Paul Erdos problems.
|
|
4
6
|
>
|
|
5
7
|
> Browse the atlas, scaffold a dossier, and keep public status, local route state, and verification records separate.
|
|
@@ -98,7 +100,7 @@ Checkpoint focus: keep the board packet honest around T10 while preserving the o
|
|
|
98
100
|
$ erdos graph-theory status 1008
|
|
99
101
|
Erdos Problem #1008 graph-theory harness
|
|
100
102
|
Family role: c4_free_lean_archive
|
|
101
|
-
Harness profile:
|
|
103
|
+
Harness profile: lean_archive_workspace
|
|
102
104
|
Archive mode: method_exemplar
|
|
103
105
|
Problem solved: yes
|
|
104
106
|
First ready atom: G1008.G1.A1 — Freeze the primary Lean-facing archive hook for the `C_4`-free density result
|
package/docs/RESEARCH_LOOP.md
CHANGED
|
@@ -75,7 +75,7 @@ For sunflower compute lanes, ORP sits above `breakthroughs`:
|
|
|
75
75
|
- `erdos sunflower board <id>` exposes the packaged atomic or bridge board for the active sunflower problem
|
|
76
76
|
- `erdos sunflower ready <id>` exposes the dependency-satisfied ready queue for the packaged board
|
|
77
77
|
- `erdos sunflower ladder <id>` exposes the first-principles ladder for the packaged board
|
|
78
|
-
- `erdos sunflower frontier <id>` exposes the compressed
|
|
78
|
+
- `erdos sunflower frontier <id>` exposes the compressed frontier view for the active board
|
|
79
79
|
- `erdos sunflower routes <id>` exposes the public route table for the packaged board
|
|
80
80
|
- `erdos sunflower tickets <id>` exposes the ticket table for the packaged board
|
|
81
81
|
- `erdos sunflower route <id> <route-id>` exposes the deeper public route packet
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "erdos-problems",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.9",
|
|
4
4
|
"description": "CLI atlas and workspace tools for Paul Erdos problems.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"agents",
|
|
37
37
|
"sunflower"
|
|
38
38
|
],
|
|
39
|
+
"author": "Fractal Research Group <cody@frg.earth>",
|
|
39
40
|
"dependencies": {
|
|
40
41
|
"breakthroughs": "^0.1.1",
|
|
41
42
|
"yaml": "^2.8.3"
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# Graph-Theory Pack
|
|
2
2
|
|
|
3
|
-
Archive and decision
|
|
3
|
+
Archive and decision workspace for graph-theory problems in `erdos-problems`.
|
|
4
4
|
|
|
5
|
-
Current seeded
|
|
6
|
-
- `19`: decision/archive
|
|
7
|
-
- `22`: proof archive
|
|
8
|
-
- `1008`: Lean-facing proof archive
|
|
5
|
+
Current seeded pack problems:
|
|
6
|
+
- `19`: decision/archive workspace around the chromatic-number record
|
|
7
|
+
- `22`: proof archive workspace around the Ramsey-Turan `K_4` construction record
|
|
8
|
+
- `1008`: Lean-facing proof archive workspace for the `C_4`-free density problem
|
|
9
9
|
|
|
10
10
|
Useful commands:
|
|
11
11
|
- `erdos graph-theory status 19`
|
|
@@ -14,4 +14,4 @@ Useful commands:
|
|
|
14
14
|
- `erdos graph-theory tickets 1008`
|
|
15
15
|
|
|
16
16
|
Design rule:
|
|
17
|
-
- keep this pack honest as an archive/decision
|
|
17
|
+
- keep this pack honest as an archive/decision workspace until a real open graph-theory frontier earns deeper gated flow
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Role in pack:
|
|
4
4
|
- Lean-facing proof archive for the `C_4`-free density problem
|
|
5
|
-
- solved graph-theory
|
|
5
|
+
- solved graph-theory workspace rather than a live open frontier
|
|
6
6
|
|
|
7
7
|
Bootstrap focus:
|
|
8
8
|
- preserve the solved status and Lean-facing badge
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
packet_id: gt1008_ops_details_v1
|
|
2
|
-
summary: Lean-facing proof archive
|
|
2
|
+
summary: Lean-facing proof archive workspace packet for the `C_4`-free density result.
|
|
3
3
|
routes:
|
|
4
4
|
- route_id: c4_free_lean_archive
|
|
5
5
|
title: "`C_4`-Free Lean Proof Archive"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Problem 1008 Route History
|
|
2
2
|
|
|
3
|
-
- Initial public pack lift: moved the dossier into a graph-theory Lean archive
|
|
3
|
+
- Initial public pack lift: moved the dossier into a graph-theory Lean archive workspace.
|
|
4
4
|
- Current route: `c4_free_lean_archive`.
|
|
5
5
|
- Honest next improvement: freeze the best Lean-facing source hook and checkpoint the archive packet.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
problem_id: "1008"
|
|
2
2
|
family_role: c4_free_lean_archive
|
|
3
|
-
harness_profile:
|
|
3
|
+
harness_profile: lean_archive_workspace
|
|
4
4
|
default_active_route: c4_free_lean_archive
|
|
5
5
|
bootstrap_focus: Freeze the `C_4`-free density result as a Lean-facing archive packet and keep the solved status synchronized with the public dossier.
|
|
6
6
|
route_story: Problem 1008 is a formalization-flavored proof archive. The public job is to preserve the solved record, the Lean-facing posture, and the core extremal-graph framing without re-opening a closed problem.
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Role in pack:
|
|
4
4
|
- chromatic-number decision archive
|
|
5
|
-
- graph-theory archive
|
|
5
|
+
- graph-theory archive workspace rather than a live theorem frontier today
|
|
6
6
|
|
|
7
7
|
Bootstrap focus:
|
|
8
8
|
- keep the public decision posture explicit
|
|
@@ -5,4 +5,4 @@ This is an archive-facing graph-theory packet.
|
|
|
5
5
|
Current honest posture:
|
|
6
6
|
- preserve the public decision status
|
|
7
7
|
- keep the chromatic-number framing explicit
|
|
8
|
-
- do not re-inflate the dossier into an open-problem
|
|
8
|
+
- do not re-inflate the dossier into an open-problem workspace
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Problem 19 Route History
|
|
2
2
|
|
|
3
|
-
- Initial public pack lift: moved the dossier into a graph-theory decision archive
|
|
3
|
+
- Initial public pack lift: moved the dossier into a graph-theory decision archive workspace.
|
|
4
4
|
- Current route: `chromatic_decision_record`.
|
|
5
5
|
- Honest next improvement: freeze the best source explaining the decision posture and checkpoint it.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
problem_id: "19"
|
|
2
2
|
family_role: chromatic_number_decision_archive
|
|
3
|
-
harness_profile:
|
|
3
|
+
harness_profile: decision_archive_workspace
|
|
4
4
|
default_active_route: chromatic_decision_record
|
|
5
5
|
bootstrap_focus: Freeze the exact chromatic-number decision posture, the dossier provenance, and the archive packet without drifting back into open-problem language.
|
|
6
|
-
route_story: Problem 19 is currently best treated as a decision/archive
|
|
6
|
+
route_story: Problem 19 is currently best treated as a decision/archive workspace. The public job is to preserve the decision record and its references cleanly enough that future agents do not mis-handle it as a live open frontier.
|
|
7
7
|
frontier_label: chromatic_decision_record
|
|
8
8
|
frontier_detail: Keep the decision posture and the primary chromatic-number source trail explicit.
|
|
9
9
|
checkpoint_focus: Synchronize the public decision status, archive packet, and primary references every time this dossier is touched.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
packet_id: gt22_ops_details_v1
|
|
2
|
-
summary: Proof archive
|
|
2
|
+
summary: Proof archive workspace packet for the Ramsey-Turan `K_4` record.
|
|
3
3
|
routes:
|
|
4
4
|
- route_id: ramsey_turan_k4_archive
|
|
5
5
|
title: Ramsey-Turan `K_4` Proof Archive
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Problem 22 Route History
|
|
2
2
|
|
|
3
|
-
- Initial public pack lift: moved the dossier into a graph-theory proof archive
|
|
3
|
+
- Initial public pack lift: moved the dossier into a graph-theory proof archive workspace.
|
|
4
4
|
- Current route: `ramsey_turan_k4_archive`.
|
|
5
5
|
- Honest next improvement: freeze the best source trail and keep the solved wording maximally clear.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
problem_id: "22"
|
|
2
2
|
family_role: ramsey_turan_proof_archive
|
|
3
|
-
harness_profile:
|
|
3
|
+
harness_profile: proof_archive_workspace
|
|
4
4
|
default_active_route: ramsey_turan_k4_archive
|
|
5
5
|
bootstrap_focus: Freeze the solved Ramsey-Turan `K_4` record as a proof archive and keep its dossier wording aligned with the public solved status.
|
|
6
|
-
route_story: Problem 22 is a proof archive
|
|
6
|
+
route_story: Problem 22 is a proof archive workspace. The public job is to preserve the solved status, the Ramsey-Turan framing, and the main source trail without pretending there is a live frontier here.
|
|
7
7
|
frontier_label: ramsey_turan_k4_archive
|
|
8
8
|
frontier_detail: Preserve the affirmative proof posture and the extremal graph framing without blurring it into an open program.
|
|
9
9
|
checkpoint_focus: Keep the proof archive wording, the public solved status, and the main source trail synchronized.
|
|
@@ -20,7 +20,7 @@ question_ledger:
|
|
|
20
20
|
open_questions:
|
|
21
21
|
- Which exact reference should anchor the proof archive packet first?
|
|
22
22
|
active_route_notes:
|
|
23
|
-
- Treat Problem 22 as a proof archive, not as a live open
|
|
23
|
+
- Treat Problem 22 as a proof archive, not as a live open workspace.
|
|
24
24
|
route_breakthroughs: []
|
|
25
25
|
problem_solved:
|
|
26
26
|
- The public site marks this problem as proved.
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Number Theory Pack
|
|
2
2
|
|
|
3
|
-
Light starter
|
|
3
|
+
Light starter workspace for number-theory problems in `erdos-problems`.
|
|
4
4
|
|
|
5
|
-
Current seeded
|
|
6
|
-
- `1`: open starter
|
|
7
|
-
- `2`: counterexample/archive
|
|
5
|
+
Current seeded pack problems:
|
|
6
|
+
- `1`: open starter workspace around a distinct-subset-sum lower-bound route
|
|
7
|
+
- `2`: counterexample/archive workspace for a disproved covering-systems problem
|
|
8
8
|
|
|
9
9
|
Useful commands:
|
|
10
10
|
- `erdos number-theory status 1`
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
packet_id: nt1_ops_details_v1
|
|
2
|
-
summary: Starter
|
|
2
|
+
summary: Starter workspace packet for the distinct-subset-sum lower-bound route.
|
|
3
3
|
routes:
|
|
4
4
|
- route_id: distinct_subset_sum_lower_bound
|
|
5
5
|
title: Distinct Subset-Sum Lower Bound
|
|
6
6
|
status: active
|
|
7
7
|
summary: Keep the problem centered on the exponential-growth lower-bound route implied by distinct subset sums.
|
|
8
|
-
why_now: This is the smallest honest route that turns the dossier into a real
|
|
8
|
+
why_now: This is the smallest honest route that turns the dossier into a real workspace.
|
|
9
9
|
next_move: Freeze the first exact reduction and connect it to the canonical references.
|
|
10
10
|
tickets:
|
|
11
11
|
- ticket_id: N1
|
|
12
12
|
title: Freeze the lower-bound route note
|
|
13
13
|
route_id: distinct_subset_sum_lower_bound
|
|
14
14
|
status: active
|
|
15
|
-
summary: Turn the starter dossier into a stable lower-bound
|
|
15
|
+
summary: Turn the starter dossier into a stable lower-bound workspace.
|
|
16
16
|
current_blocker: The first exact reduction and evidence stack are not yet frozen together.
|
|
17
17
|
next_move: Close `N1.G1.A1`.
|
|
18
18
|
atoms:
|
|
@@ -21,5 +21,5 @@ atoms:
|
|
|
21
21
|
route_id: distinct_subset_sum_lower_bound
|
|
22
22
|
ticket_id: N1
|
|
23
23
|
status: ready
|
|
24
|
-
summary: This is the smallest honest move that upgrades the dossier into a route-aware
|
|
24
|
+
summary: This is the smallest honest move that upgrades the dossier into a route-aware workspace.
|
|
25
25
|
next_move: Record the first reduction and checkpoint it without overclaiming theorem progress.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Problem 1 Route History
|
|
2
2
|
|
|
3
3
|
- Initial public pack posture: dossier-first seed.
|
|
4
|
-
- Current public pack posture: starter
|
|
4
|
+
- Current public pack posture: starter workspace around the distinct-subset-sum lower-bound route.
|
|
5
5
|
- Next maturity threshold: freeze the first exact reduction or historical lower-bound checkpoint before adding deeper pack machinery.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
problem_id: "1"
|
|
2
2
|
family_role: additive_number_theory_seed
|
|
3
|
-
harness_profile:
|
|
3
|
+
harness_profile: starter_workspace
|
|
4
4
|
default_active_route: distinct_subset_sum_lower_bound
|
|
5
5
|
bootstrap_focus: Freeze the exact problem statement, the local dossier, and the first honest lower-bound route for distinct subset sums.
|
|
6
|
-
route_story: This problem now has a starter
|
|
6
|
+
route_story: This problem now has a starter workspace whose job is to keep the lower-bound route explicit without pretending we already have a deep theorem engine.
|
|
7
7
|
frontier_label: distinct_subset_sum_lower_bound
|
|
8
8
|
frontier_detail: Keep the problem anchored to the binary-growth lower-bound route and freeze the exact first reduction before widening claims.
|
|
9
9
|
checkpoint_focus: Preserve provenance, the exact lower-bound route, and the open-problem boundary in every checkpoint.
|
|
@@ -5,4 +5,4 @@ This is not a live open-problem frontier.
|
|
|
5
5
|
The honest posture is:
|
|
6
6
|
- preserve the disproval cleanly
|
|
7
7
|
- keep the references synchronized
|
|
8
|
-
- package the problem as a counterexample/method archive instead of a live
|
|
8
|
+
- package the problem as a counterexample/method archive instead of a live workspace
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Problem 2 Route History
|
|
2
2
|
|
|
3
3
|
- Initial pack posture: dossier-first seed.
|
|
4
|
-
- Current pack posture: archive
|
|
4
|
+
- Current pack posture: archive workspace around the counterexample/disproval record.
|
|
5
5
|
- Next maturity threshold: freeze the best archive packet rather than inventing open-frontier pressure.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
problem_id: "2"
|
|
2
2
|
family_role: covering_systems_counterexample_archive
|
|
3
|
-
harness_profile:
|
|
3
|
+
harness_profile: archive_workspace
|
|
4
4
|
default_active_route: counterexample_archive
|
|
5
5
|
bootstrap_focus: Freeze the exact disproval record, the dossier provenance, and the counterexample-facing archive packet.
|
|
6
6
|
route_story: This problem is not a live open frontier; the honest public job is to preserve the disproval and keep it usable as a method/counterexample exemplar.
|
|
@@ -20,6 +20,6 @@ question_ledger:
|
|
|
20
20
|
open_questions:
|
|
21
21
|
- Which exact disproval or counterexample references should be frozen first in the archive packet?
|
|
22
22
|
active_route_notes:
|
|
23
|
-
- Treat this as an archive
|
|
23
|
+
- Treat this as an archive workspace, not a live open-problem route.
|
|
24
24
|
route_breakthroughs: []
|
|
25
25
|
problem_solved: []
|
package/src/commands/cluster.js
CHANGED
|
@@ -11,13 +11,13 @@ function printCluster(cluster) {
|
|
|
11
11
|
console.log(' Strong sunflower sibling: 20');
|
|
12
12
|
console.log(' Related analogues: 536, 856');
|
|
13
13
|
} else if (cluster.name === 'number-theory') {
|
|
14
|
-
console.log(' Open starter
|
|
15
|
-
console.log(' Counterexample/archive
|
|
14
|
+
console.log(' Open starter workspace: 1');
|
|
15
|
+
console.log(' Counterexample/archive workspace: 2');
|
|
16
16
|
console.log(' Additional dossier seeds: 3, 4, 5, 6, 7, 18, 542');
|
|
17
17
|
} else if (cluster.name === 'graph-theory') {
|
|
18
|
-
console.log(' Decision archive
|
|
19
|
-
console.log(' Proof archive
|
|
20
|
-
console.log(' Lean proof archive
|
|
18
|
+
console.log(' Decision archive workspace: 19');
|
|
19
|
+
console.log(' Proof archive workspace: 22');
|
|
20
|
+
console.log(' Lean proof archive workspace: 1008');
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
|
package/src/runtime/archive.js
CHANGED
|
@@ -23,7 +23,7 @@ export function getArchiveView(problemId) {
|
|
|
23
23
|
solved: isSolved(problem),
|
|
24
24
|
archiveMode: isSolved(problem) ? 'method_exemplar' : 'inactive',
|
|
25
25
|
nextMove: isSolved(problem)
|
|
26
|
-
? 'Extract reusable methods, references, and formalization hooks without treating this as an open-problem
|
|
26
|
+
? 'Extract reusable methods, references, and formalization hooks without treating this as an open-problem workspace.'
|
|
27
27
|
: 'This problem is not currently in solved archival mode.',
|
|
28
28
|
};
|
|
29
29
|
}
|
|
@@ -121,7 +121,7 @@ export function buildGraphTheoryStatusSnapshot(problem) {
|
|
|
121
121
|
title: problem.title,
|
|
122
122
|
cluster: problem.cluster,
|
|
123
123
|
familyRole: context.family_role ?? 'graph_theory_pack',
|
|
124
|
-
harnessProfile: context.harness_profile ?? '
|
|
124
|
+
harnessProfile: context.harness_profile ?? 'starter_workspace',
|
|
125
125
|
activeRoute,
|
|
126
126
|
routeBreakthrough,
|
|
127
127
|
problemSolved,
|
|
@@ -144,7 +144,7 @@ export function buildNumberTheoryStatusSnapshot(problem) {
|
|
|
144
144
|
title: problem.title,
|
|
145
145
|
cluster: problem.cluster,
|
|
146
146
|
familyRole: context.family_role ?? 'number_theory_pack',
|
|
147
|
-
harnessProfile: context.harness_profile ?? '
|
|
147
|
+
harnessProfile: context.harness_profile ?? 'starter_workspace',
|
|
148
148
|
activeRoute,
|
|
149
149
|
routeBreakthrough,
|
|
150
150
|
problemSolved,
|