We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This normal form is worrisome, with the F type variable left there. Even if perhaps that type variable doesn't matter, it's visually wrong. The code comes from this definition: https://github.com/psg-mit/marshall/blob/master/examples/cad.asd#L125-L128
F
# unit_cone;; - : (real*real*real -> bool) -> bool = fun P : F -> bool => mkbool (forall x : [0.0, 1.] , forall x40 : [-1., 1.] , forall x24 : [-1., 1.] , 1. < x40 ^ 2 + x24 ^ 2 \/ is_true (P (x, x * x40, x * x24))) (exists x : [0.0, 1.] , exists x39 : [-1., 1.] , exists x23 : [-1., 1.] , x39 ^ 2 + x23 ^ 2 < 1. /\ is_false (P (x, x * x39, x * x23)))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This normal form is worrisome, with the
F
type variable left there. Even if perhaps that type variable doesn't matter, it's visually wrong.The code comes from this definition:
https://github.com/psg-mit/marshall/blob/master/examples/cad.asd#L125-L128
The text was updated successfully, but these errors were encountered: