Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
inox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LARA
inox
Commits
0d80f944
Commit
0d80f944
authored
12 years ago
by
Philippe Suter
Browse files
Options
Downloads
Patches
Plain Diff
Removed verbose output from FairZ3Solver.
I can only assume this was introduced by accident in a previous commit.
parent
12e074fe
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/scala/leon/solvers/z3/FairZ3Solver.scala
+7
-7
7 additions, 7 deletions
src/main/scala/leon/solvers/z3/FairZ3Solver.scala
with
7 additions
and
7 deletions
src/main/scala/leon/solvers/z3/FairZ3Solver.scala
+
7
−
7
View file @
0d80f944
...
...
@@ -472,9 +472,9 @@ class FairZ3Solver(context : LeonContext)
reporter
.
info
(
" - Running Z3 search..."
)
reporter
.
info
(
"Searching in:\n"
+
solver
.
getAssertions
.
toSeq
.
mkString
(
"\nAND\n"
))
reporter
.
info
(
"Unroll. Assumptions:\n"
+
unrollingBank
.
z3CurrentZ3Blockers
.
mkString
(
" && "
))
reporter
.
info
(
"Userland Assumptions:\n"
+
assumptionsAsZ3
.
mkString
(
" && "
))
//
reporter.info("Searching in:\n"+solver.getAssertions.toSeq.mkString("\nAND\n"))
//
reporter.info("Unroll. Assumptions:\n"+unrollingBank.z3CurrentZ3Blockers.mkString(" && "))
//
reporter.info("Userland Assumptions:\n"+assumptionsAsZ3.mkString(" && "))
z3Time
.
start
solver
.
push
()
// FIXME: remove when z3 bug is fixed
...
...
@@ -555,7 +555,7 @@ class FairZ3Solver(context : LeonContext)
}
reporter
.
info
(
"UNSAT BECAUSE: "
+
solver
.
getUnsatCore
.
mkString
(
"\n AND \n"
))
//
reporter.info("UNSAT BECAUSE: "+solver.getUnsatCore.mkString("\n AND \n"))
//reporter.info("UNSAT BECAUSE: "+core.mkString(" AND "))
if
(!
forceStop
)
{
...
...
@@ -574,10 +574,10 @@ class FairZ3Solver(context : LeonContext)
res2
match
{
case
Some
(
false
)
=>
reporter
.
info
(
"UNSAT WITHOUT Blockers"
)
//
reporter.info("UNSAT WITHOUT Blockers")
foundAnswer
(
Some
(
false
),
core
=
z3CoreToCore
(
solver
.
getUnsatCore
))
case
Some
(
true
)
=>
reporter
.
info
(
"SAT WITHOUT Blockers"
)
//
reporter.info("SAT WITHOUT Blockers")
if
(
this
.
feelingLucky
&&
!
forceStop
)
{
// we might have been lucky :D
luckyTime
.
start
...
...
@@ -629,7 +629,7 @@ class FairZ3Solver(context : LeonContext)
StopwatchCollections
.
get
(
"FairZ3 Unlocking"
)
+=
unlockingTime
StopwatchCollections
.
get
(
"FairZ3 ScalaTime"
)
+=
scalaTime
reporter
.
info
(
" !! DONE !! "
)
//
reporter.info(" !! DONE !! ")
if
(
forceStop
)
{
None
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment