Files
midas/tests/cases/generator/04_frames.midas
LordBaryhobal 2b09a29165
All checks were successful
Tests / tests (pull_request) Successful in 6s
tests: add frame constraint generation test
2026-07-09 22:16:28 +02:00

15 lines
247 B
Plaintext

predicate is_positive(v: float) = v >= 0
type Positive = float where is_positive(_)
alias T1 = Frame[
a: int
]
alias T2 = Frame[
a: int,
b: str,
c: Positive,
d: float where is_positive(_)
]
alias Positives = Column[Positive]