Skip to content

Commit

Permalink
Fixes after merge: missed CFG loading.
Browse files Browse the repository at this point in the history
  • Loading branch information
gsvgit committed Aug 14, 2023
1 parent cc91a05 commit 63a37aa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
4 changes: 0 additions & 4 deletions VSharp.IL/CFG.fs
Original file line number Diff line number Diff line change
Expand Up @@ -598,10 +598,6 @@ type ApplicationGraph(getNextBasicBlockGlobalId) =
newState.CodeLocation.BasicBlock.IsVisited
|| newState.CodeLocation.offset = newState.CodeLocation.BasicBlock.FinalOffset

let addStates (parentState : Option<IGraphTrackableState>) (states : array<IGraphTrackableState>) =
// Not implemented yet
()

let getShortestDistancesToGoals (states : array<codeLocation>) =
__notImplemented__()

Expand Down
4 changes: 1 addition & 3 deletions VSharp.SILI/SILI.fs
Original file line number Diff line number Diff line change
Expand Up @@ -358,9 +358,7 @@ type public SILI(options : SiliOptions) =
if searcher :? BidirectionalSearcher && (searcher :?> BidirectionalSearcher).ForwardSearcher :? AISearcher && ((searcher :?> BidirectionalSearcher).ForwardSearcher :?> AISearcher).InAIMode
then stepsPlayed <- stepsPlayed + 1u
if statistics.CurrentExplorationTime.TotalMilliseconds >= timeout
then x.Stop()

while not isStopped && not <| isStepsLimitReached() && not <| isTimeoutReached() && pick() do
then x.Stop()
if shouldReleaseBranches() then
releaseBranches()
match action with
Expand Down

0 comments on commit 63a37aa

Please sign in to comment.