Closed ChristopherRabotin closed 7 years ago
The following code does not generate enough states:
go func() { curDT := startDT for { curDT = curDT.Add(10 * time.Second) gonnaBreak := curDT.Equal(endDT) mission.PropagateUntil(curDT, gonnaBreak) if gonnaBreak { break } } }()
I don't know why.
The following code does not generate enough states:
I don't know why.