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 program has the following output
a("a"). &in{1..2} =: X :- a(X). b :- &sum{"a"} = 1.
fclingo test.lp 0 fclingo version 0.1 Reading from test.lp Solving... Answer: 1 a("a") Answer: 2 a("a") b SATISFIABLE
Changing "a" to a gives the expected output
"a"
a
fclingo test.lp 0 fclingo version 0.1 Reading from test.lp Solving... Answer: 1 a(a) val(a,2) Answer: 2 a(a) b val(a,1) SATISFIABLE
The text was updated successfully, but these errors were encountered:
This seems to affect printing only, inside my application class I have access to all the values through the __csp predicates.
__csp
Sorry, something went wrong.
No branches or pull requests
This program has the following output
Changing
"a"
toa
gives the expected outputThe text was updated successfully, but these errors were encountered: