chase-rs/examples/geolog/iso_theory_test.geolog

10 lines
254 B
Plaintext
Raw Normal View History

2026-03-11 10:24:56 +01:00
// Multi-parameter theory test (Iso from vision)
// First just try sorts as parameters
theory (X : Sort) (Y : Sort) Iso {
fwd : X -> Y;
bwd : Y -> X;
// Axioms would need chained function application...
// fb : forall x : X. |- x fwd bwd = x;
}