Skip to content

Commit 95bac7a

Browse files
committed
Rename PathCondition according to client's naming
1 parent 629778d commit 95bac7a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

VSharp.Explorer/AISearcher.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ type internal AISearcher(oracle: Oracle, aiAgentTrainingMode: Option<AIAgentTrai
178178
State(
179179
s.Id,
180180
s.Position,
181-
s.PathCondition,
181+
s.PathConditionSize,
182182
s.VisitedAgainVertices,
183183
s.VisitedNotCoveredVerticesInZone,
184184
s.VisitedNotCoveredVerticesOutOfZone,

VSharp.ML.GameServer/Messages.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ type StateHistoryElem =
153153
type State =
154154
val Id: uint<stateId>
155155
val Position: uint<byte_offset> // to basic block id
156-
val PathCondition: PathConditionVertex
156+
val PathConditionSize: PathConditionVertex
157157
val VisitedAgainVertices: uint
158158
val VisitedNotCoveredVerticesInZone: uint
159159
val VisitedNotCoveredVerticesOutOfZone: uint
@@ -177,7 +177,7 @@ type State =
177177
) =
178178
{ Id = id
179179
Position = position
180-
PathCondition = pathCondition
180+
PathConditionSize = pathCondition
181181
VisitedAgainVertices = visitedAgainVertices
182182
VisitedNotCoveredVerticesInZone = visitedNotCoveredVerticesInZone
183183
VisitedNotCoveredVerticesOutOfZone = visitedNotCoveredVerticesOutOfZone

0 commit comments

Comments
 (0)