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
I have been trying different FOL expressions with quantifiers and equality (Eq).
Eq
Firstly, strict_proves seems to provide incorrect results for many expressions. For example:
strict_proves
# Expression for testing whether predicate P is true for three or more different constants >>> strict_proves((P(a)), EX(x, EX(y, EX(z, P(x) & P(y) & P(z) & ~Eq(x,y) & ~Eq(y,z) )))) True >>> proves((P(a)), EX(x, EX(y, EX(z, P(x) & P(y) & P(z) & ~Eq(x,y) & ~Eq(y,z) )))) False
Secondly, proves gets stuck when given expressions with many nested quantifiers. For example:
proves
# Function gets stuck and never returns proves((P(a), P(b)), EX(x,EX(y,EX(z, P(x) & P(y) & P(z) & ~Eq(x,y) & ~Eq(y,z)))))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have been trying different FOL expressions with quantifiers and equality (
Eq
).Firstly,
strict_proves
seems to provide incorrect results for many expressions. For example:Secondly,
proves
gets stuck when given expressions with many nested quantifiers. For example:The text was updated successfully, but these errors were encountered: