@@ -21,10 +21,10 @@ sealed trait ExecutionTree { self =>
2121 parent match {
2222 case b : Branch if b.branches(true ) == self =>
2323 // self node is in the true branch
24- (b.symcond , true ) :: b.pathCondition(suffix)
24+ (b.symcondition , true ) :: b.pathCondition(suffix)
2525 case b : Branch if b.branches(false ) == self =>
2626 // self node is in the false branch
27- (b.symcond , false ) :: b.pathCondition(suffix)
27+ (b.symcondition , false ) :: b.pathCondition(suffix)
2828 case _ => parent.pathCondition(suffix)
2929 }
3030
@@ -90,7 +90,7 @@ class UnsatSubTree(val parent: Branch) extends ExecutionTree {
9090 */
9191class Branch (
9292 val condition : AExpr ,
93- val symcond : AExpr ,
93+ val symcondition : AExpr ,
9494 val parent : ExecutionTree ,
9595 val branches : mutable.Map [Boolean , ExecutionTree ] = mutable.Map (),
9696 val count : mutable.Map [Boolean , Int ] = mutable.Map ()
@@ -105,7 +105,7 @@ class Branch(
105105
106106 override def branch (cond : AExpr , symcond : AExpr , value : Boolean ): ExecutionTree = {
107107 assert(cond == condition)
108- assert(symcond == symcond)
108+ assert(symcondition == symcond)
109109 log.info(s " Encountered seen branching condition: $cond" )
110110 log.info(s " Exploring ${if (count(value) == 0 ) " unseen " else " " }$value branch " )
111111 count(value) += 1
@@ -133,7 +133,7 @@ object ExecutionTreePrinter {
133133 else
134134 " <??>"
135135 case _ : UnsatSubTree => " <unsat>"
136- case b : Branch => s " ${b.symcond } ( ${b.condition}) "
136+ case b : Branch => s " ${b.symcondition } ( ${b.condition}) "
137137 case _ => ???
138138 }
139139 out.append(str)
0 commit comments