Skip to content

Commit

Permalink
Restrict ghost var ranges to only 1
Browse files Browse the repository at this point in the history
  • Loading branch information
zafer-esen committed Mar 12, 2024
1 parent b056197 commit c092198
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,10 @@ class InstrumentationLoop (
// clauses.foreach(clause => println(clause.toPrologString))
// println("="*80 + "\n")

private val ghostVarRanges: MBuffer[Int] = (1 to 2).toBuffer
/**
* TODO: support ghost variable ranges > 1
*/
private val ghostVarRanges: MBuffer[Int] = (1 to 1).toBuffer
private var rawResult : Result = Inconclusive
private val searchSpaceSizePerNumGhostRanges = new MHashMap[Int, Int]
private val searchStepsPerNumGhostRanges = new MHashMap[Int, Int]
Expand Down

0 comments on commit c092198

Please sign in to comment.