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
The following was part of an encoding of an intuitionistic Kripke model.
(declare-sort World) (define-fun R ((x World) (y World)) Bool ((_ partial-order 0) x y)) (declare-sort Atom) (declare-fun value (World Atom) Bool) (declare-const w World) (assert (R w w)) (assert (forall ((p Atom) (u World) (w World)) (=> (and (value w p) (R w u)) (value u p) ) ) ) (check-sat) (get-model)
on Z3 version 4.10.2 - 64 bit it crashes with the message
Z3 version 4.10.2 - 64 bit
terminate called after throwing an instance of 'std::bad_variant_access' what(): Unexpected index Aborted (core dumped)
The text was updated successfully, but these errors were encountered:
b55ad5f
No branches or pull requests
The following was part of an encoding of an intuitionistic Kripke model.
on
Z3 version 4.10.2 - 64 bit
it crashes with the messageThe text was updated successfully, but these errors were encountered: