query-engine/examples/geolog/iso_theory_test.geolog
2026-04-09 12:38:43 +02:00

10 lines
254 B
Plaintext

// 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;
}