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
Steps to Reproduce
Step 1: What input did you first provide?
sbf o1 = console
f(0) := {a}:sbf
f({a}:sbf) := 1
g(x) := {a}:sbf f(x)
r o1[0] = 0 && o1[n] = g(o1[n-1])
# interpreter fails on this, but running the same function through rr works as intended
h[0]() := 0
h[n]() := g(h[n-1]())
n h()
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
Interpreter:
Temporal normalization of always specification reached fixpoint after 2 steps, yielding the result:
F
(Error) Tau specification is unsat
Recurrence relation:
{ a } : sbf
Additional Information
Error Messages or Logs:
(Error) Tau specification is unsat
Screenshots:
Severity and Impact
Severity Level: Minor
Impact on Work: Unable to use the interpreter in certain scenarios
Workaround (if applicable)
Tell us if you found a way around this problem:
A slightly simpler example works both ways as intended:
sbf o2 = console
f2(x) := x'
g2(x) := {a}:sbf f2(x)
h2[0]() := 0
h2[n]() := g2(h2[n-1]())
n h2()
r o2[0] = 0 && o2[n] = g2(o2[n-1])
n
n
n
q
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
Interpreter:
Temporal normalization of always specification reached fixpoint after 2 steps, yielding the result:
F
(Error) Tau specification is unsat
Recurrence relation:
{ a } : sbf
(Error) Tau specification is unsat
Severity and Impact
Workaround (if applicable)
Submission Instructions
The text was updated successfully, but these errors were encountered: