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
The following code causes a cascade of null pointer exceptions in SymphonyTool 0.4.0.
channels
tick
class ClockSt = begin
state
public s: nat
initial
Init()
frame wr s
post s = 0
operations
public increment()
frame wr s
post s = s~ + 1
end
process SimpleClock = begin
state c: ClockSt
actions
Ticking = Wait 1; c.increment(); tick -> Skip
@
c := new ClockSt(); c.Init(); mu X @ (Ticking; X)
end
The text was updated successfully, but these errors were encountered:
The following code causes a cascade of null pointer exceptions in SymphonyTool 0.4.0.
The text was updated successfully, but these errors were encountered: