diff options
| author | Anonymous Authors <anonymous@invalid.example> | 2026-07-24 13:24:36 -0500 |
|---|---|---|
| committer | Anonymous Authors <anonymous@invalid.example> | 2026-07-24 13:24:36 -0500 |
| commit | db293f3606a97b3e417de27124858e134005acbd (patch) | |
| tree | 8efeedcd2033b82d1c90eb0cb84e134421ff1a8f /src/gap_pipeline/__init__.py | |
Add minimal GAP reproduction package
Diffstat (limited to 'src/gap_pipeline/__init__.py')
| -rw-r--r-- | src/gap_pipeline/__init__.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/gap_pipeline/__init__.py b/src/gap_pipeline/__init__.py new file mode 100644 index 0000000..2591afe --- /dev/null +++ b/src/gap_pipeline/__init__.py @@ -0,0 +1,24 @@ +"""Reference implementation of GAP.""" + +from .models import ( + CanonicalItem, + KernelCandidate, + KernelRunResult, + MethodPlan, + ProofDAG, + ReplacementSpec, +) +from .pipeline import KernelPipeline, PipelineConfig + +__all__ = [ + "CanonicalItem", + "KernelCandidate", + "KernelPipeline", + "KernelRunResult", + "MethodPlan", + "PipelineConfig", + "ProofDAG", + "ReplacementSpec", +] + +__version__ = "0.1.0" |
