File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ open System.Reflection
8
8
open System.Collections .Generic
9
9
open Microsoft.FSharp .Collections
10
10
open VSharp
11
+ open VSharp.Core
11
12
12
13
type ICallGraphNode =
13
14
inherit IGraphNode< ICallGraphNode>
@@ -519,7 +520,7 @@ and IGraphTrackableState =
519
520
abstract member CodeLocation: codeLocation
520
521
abstract member CallStack: list < Method >
521
522
abstract member Id: uint < stateId >
522
- abstract member PathConditionSize: uint
523
+ abstract member PathCondition: pathCondition
523
524
abstract member VisitedNotCoveredVerticesInZone: uint with get
524
525
abstract member VisitedNotCoveredVerticesOutOfZone: uint with get
525
526
abstract member VisitedAgainVertices: uint with get
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ type pathCondition = pset<term>
7
7
// - PC does not contain True
8
8
// - if PC contains False then False is the only element in PC
9
9
10
- module internal PC =
10
+ module PC =
11
11
12
12
let public empty : pathCondition = PersistentSet.empty< term>
13
13
let public isEmpty pc = PersistentSet.isEmpty pc
You can’t perform that action at this time.
0 commit comments