-
Notifications
You must be signed in to change notification settings - Fork 450
New issue
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
example error #33
Comments
Let me provide the full code as I made it based on your example. It gives me an error when I try to run it.
The error is as follows:
|
I get the same/very similar error. My code:
error:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When trying to run your example I get the following error: TypeError: expected variable, received <class 'tuple'>
american_enemies = (
ForAll(x, Implies(enemy(x, (y,'America')),
hostile(x),
join=Join.OUTER),
join=Join.OUTER,
world=World.AXIOM)
)
When I replace Join.OUTER with Join.INNER it compiles well, but still doesn't give me the correct result. What is the meaning of these Join constants? And what can be wrong with the formula?
The text was updated successfully, but these errors were encountered: