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
Hello,
I was playing with spock (which is awesome!) and found this:
(with-open [rules (with-rules '[(g [:a :b :c] [(or (and :a :b) :c)])])] (solve {:rules rules} '(g (= :x 1) (= :y 2) (= :y 3))))
Execution error (StackOverflowError) at org.jpl7.Term/getTerm (Term.java:282).
When I do the same globally, no problem:
(assert-rules '[(g [:a :b :c] [(or (and :a :b) :c)])]) (solve '(g (= :x 1) (= :y 2) (= :y 3)))
[{:x 1, :y 2} {:x _101, :y 3}]
Any idea ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I was playing with spock (which is awesome!) and found this:
Execution error (StackOverflowError) at org.jpl7.Term/getTerm (Term.java:282).
When I do the same globally, no problem:
[{:x 1, :y 2} {:x _101, :y 3}]
Any idea ?
The text was updated successfully, but these errors were encountered: