catala/tests/proof/good/rationals.catala_en
2024-05-03 15:27:06 +02:00

32 lines
586 B
Plaintext

## Test
```catala
declaration scope A:
internal x content decimal
output y content boolean
scope A:
definition x equals 1.
definition y under condition x > 1./3. consequence equals true
definition y under condition x <= 1./3. consequence equals false
```
```catala-test-inline
$ catala Typecheck --check-invariants
┌─[RESULT]─
│ All invariant checks passed
└─
┌─[RESULT]─
│ Typechecking successful!
└─
```
```catala-test-inline
$ catala Proof --disable-counterexamples
┌─[RESULT]─
│ No errors found during the proof mode run.
└─
```