You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One can see the program continuously iterating by setting severity to debug.
It is also possible to get the same outcome as in the previously mentioned issue by shortening the specification to just o1[n] = g(o1[n-1]) that is by skipping the explicit assignment of 0 to the initial timeline.
Steps to Reproduce
Step 1: What input did you first provide?
sbf o1 = console
f(0) := {b}:sbf
f({a b}:sbf) := {a b}:sbf
g(x) := {a}:sbf f(x)
h[0]() := 0
h[n]() := g(h[n-1]())
n h()
# g(x) has a fixed point when being run through rr but hangs in a loop with the interpreter
r o1[0] = 0 && o1[n] = g(o1[n-1])
Step 2: Any additional input to Tau?
Expected Result
Same result from the interpreter as from the equivalent test through a recurrence relation h:
h[0]() = 0
h[1]() = { a b } : sbf
...
Actual Result
Program hanging
Additional Information
Error Messages or Logs:
Screenshots:
Partial debug output:
Severity and Impact
Severity Level: Minor
Impact on Work: Program Hanging
Workaround (if applicable)
Tell us if you found a way around this problem:
It's possible to prevent this particular example from going to an endless loop by not explicitly assigning 0 to o1[0] in the specification, but then the interpreter yields the unsat error:
Contact Information
Name: pt7k
Email: Telegram @ksdjfskfh
Additional Notes: Any other message for the Tau Team
Submission Instructions
Make sure to attach any input files to this bug report.
The text was updated successfully, but these errors were encountered:
Summary
Environment
Steps to Reproduce
Step 1: What input did you first provide?
Step 2: Any additional input to Tau?
Expected Result
Same result from the interpreter as from the equivalent test through a recurrence relation h:
Actual Result
Program hanging
Partial debug output:
Severity and Impact
Workaround (if applicable)
Submission Instructions
The text was updated successfully, but these errors were encountered: