summaryrefslogtreecommitdiff
path: root/src/gap_pipeline/__init__.py
diff options
context:
space:
mode:
authorAnonymous Authors <anonymous@invalid.example>2026-07-24 13:52:11 -0500
committerAnonymous Authors <anonymous@invalid.example>2026-07-24 13:52:11 -0500
commitd4eb26780a8a8c70ca75812af0c3c6a295c0797c (patch)
tree46d2aa0fca13f6db2c8226471981ce06c1423eac /src/gap_pipeline/__init__.py
parentdb293f3606a97b3e417de27124858e134005acbd (diff)
Restore original GAP prompts and lock prompt bytes
Diffstat (limited to 'src/gap_pipeline/__init__.py')
-rw-r--r--src/gap_pipeline/__init__.py10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/gap_pipeline/__init__.py b/src/gap_pipeline/__init__.py
index 2591afe..fe2e04c 100644
--- a/src/gap_pipeline/__init__.py
+++ b/src/gap_pipeline/__init__.py
@@ -3,10 +3,8 @@
from .models import (
CanonicalItem,
KernelCandidate,
+ KernelPlan,
KernelRunResult,
- MethodPlan,
- ProofDAG,
- ReplacementSpec,
)
from .pipeline import KernelPipeline, PipelineConfig
@@ -14,11 +12,9 @@ __all__ = [
"CanonicalItem",
"KernelCandidate",
"KernelPipeline",
+ "KernelPlan",
"KernelRunResult",
- "MethodPlan",
"PipelineConfig",
- "ProofDAG",
- "ReplacementSpec",
]
-__version__ = "0.1.0"
+__version__ = "0.2.0"