Skip to content

Commit

Permalink
Remove printlns
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed Nov 22, 2019
1 parent a15660e commit 247a969
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,11 @@ trait PartialEvaluator extends SimplifierWithPC { self =>
} (expr)

def validMeasure: Boolean = {
println("measure: " + measureOf(tfd.fullBody))
measureOf(tfd.fullBody) match {
case Some(measure) =>
val nextMeasure = exprOps.replaceFromSymbols(tfd.params.zip(args).toMap, measure)
println("next: " + nextMeasure)
val query = strictlyPositive(nextMeasure.getType, nextMeasure)
println("query: " + query)
val result = path.implies(query)

println("result: " + result)
result
path.implies(query)

case None => false
}
Expand Down

0 comments on commit 247a969

Please sign in to comment.