Browse Source

Bug fix in approximate model checking of time-bounded until properties.

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@1214 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Dave Parker 17 years ago
parent
commit
c66eecb5cc
  1. 5
      prism/src/simulator/simpctl.cc

5
prism/src/simulator/simpctl.cc

@ -349,12 +349,11 @@ void CBoundedUntil::Notify_State(CPathState* last_state, int* current_state)
/*
* Determines whether the answer is already known for this path formula. This
* will either be if the answer has been proven, or if the answer has not been
* determined but the path is looping.
* will *only* be if the answer has been proven, *not* if the path is looping.
*/
bool CBoundedUntil::Is_Answer_Known(CLoopDetectionHandler* loop_detection)
{
return answer_known || loop_detection->Is_Proven_Looping() || loop_detection->Is_Deadlock();
return answer_known;
}
/*

Loading…
Cancel
Save