Some checks are pending
Lean Action CI / build (push) Waiting to run
Restructure to engine-only contents. Application code (Topolei.*
namespace, canvas-rs / render Rust crates, Main / ProbeTest, naga IR
pipeline, Selection / Subobject / Trace / Obs.Ctx hypothesis stack,
cells-spec / HYPOTHESES / STATUS / NAGA_IR_PLAN docs) moves to the
sibling repo max/topolei.
What moved:
- `Topolei/Cubical/*.lean` (22 files) → `CubicalTransport/*.lean`
with namespace `Topolei.Cubical.*` renamed to `CubicalTransport.*`.
Fully-qualified test types `TopoleiCubical{FFI,Property}Test` →
`CubicalTransport{FFI,Property}Test` for consistency.
- New root file `CubicalTransport.lean` re-exporting all 22 modules.
- Lakefile: package `cubicalTransport`; lib `CubicalTransport`; only
`cubical-test` and `cubical-bench` exes (no GPU link path).
The split criterion: anything an AI shortcut could break that would
cascade-corrupt downstream proofs lives here. Anything that would
only break the application stays in the topolei interface repo.
cubical-test passes 62/62 (smoke + properties) on the renamed engine.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
15 lines
440 B
Text
15 lines
440 B
Text
import CubicalTransport.FFITest
|
|
import CubicalTransport.PropertyTest
|
|
|
|
def main : IO UInt32 := do
|
|
let smokeFails ← CubicalTransportFFITest.runSmokeTests
|
|
IO.println ""
|
|
let propFails ← CubicalTransportPropertyTest.runProperties
|
|
let total := smokeFails + propFails
|
|
IO.println ""
|
|
if total > 0 then
|
|
IO.println s!"FAIL: {total} test(s) failed"
|
|
return 1
|
|
else
|
|
IO.println "PASS: all smoke + property tests"
|
|
return 0
|