Skip to content
Snippets Groups Projects
Commit 961072ec authored by Manos Koukoutos's avatar Manos Koukoutos
Browse files

Some style

parent 29e6b242
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
package leon package leon
package verification package verification
import purescala.Common._
import purescala.Definitions._ import purescala.Definitions._
import purescala.Expressions._ import purescala.Expressions._
import purescala.ExprOps._ import purescala.ExprOps._
...@@ -25,7 +24,7 @@ object AnalysisPhase extends LeonPhase[Program,VerificationReport] { ...@@ -25,7 +24,7 @@ object AnalysisPhase extends LeonPhase[Program,VerificationReport] {
val reporter = ctx.reporter val reporter = ctx.reporter
// Solvers selection and validation // Solvers selection and validation
var baseSolverF = SolverFactory.getFromSettings(ctx, program) val baseSolverF = SolverFactory.getFromSettings(ctx, program)
val solverF = timeout match { val solverF = timeout match {
case Some(sec) => case Some(sec) =>
...@@ -88,10 +87,10 @@ object AnalysisPhase extends LeonPhase[Program,VerificationReport] { ...@@ -88,10 +87,10 @@ object AnalysisPhase extends LeonPhase[Program,VerificationReport] {
} }
def checkVCs( def checkVCs(
vctx: VerificationContext, vctx: VerificationContext,
vcs: Seq[VC], vcs: Seq[VC],
checkInParallel: Boolean = false, checkInParallel: Boolean = false,
stopAfter: Option[(VC, VCResult) => Boolean] = None stopAfter: Option[(VC, VCResult) => Boolean] = None
): VerificationReport = { ): VerificationReport = {
val interruptManager = vctx.context.interruptManager val interruptManager = vctx.context.interruptManager
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment