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
Possibly a non-issue (there's no bug), but it can lead to some spooky behavior.
In the below example, repeatedly setting bar, even though its table never changes, causes a feedback loop.
bar
(function foo (i64) i64 :default 0) (function bar () i64 :merge (min (foo new) 0)) (set (bar) 1) (set (bar) 2) (rule ((= f (foo x))) ((set (bar) (+ x 1)))) (print bar) ; (bar) -> 0 (run 100) (print bar) ; (bar) -> 0 (print-size foo) ; Function foo has size 101
The text was updated successfully, but these errors were encountered:
set
Subsumed by #421
Sorry, something went wrong.
No branches or pull requests
Possibly a non-issue (there's no bug), but it can lead to some spooky behavior.
In the below example, repeatedly setting
bar
, even though its table never changes, causes a feedback loop.The text was updated successfully, but these errors were encountered: