Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
why3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Why3
why3
Commits
88f7c204
Commit
88f7c204
authored
7 years ago
by
MARCHE Claude
Browse files
Options
Downloads
Patches
Plain Diff
attempt to solve issue #131
parent
cd5c33a0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
share/provers-detection-data.conf
+6
-5
6 additions, 5 deletions
share/provers-detection-data.conf
src/driver/call_provers.ml
+2
-2
2 additions, 2 deletions
src/driver/call_provers.ml
with
8 additions
and
7 deletions
share/provers-detection-data.conf
+
6
−
5
View file @
88f7c204
...
...
@@ -71,7 +71,7 @@ version_ok = "1.5"
driver
=
"cvc4_15"
# --random-seed=42 is not needed as soon as --random-freq=0.0 by default
# to try: --inst-when=full-last-call
command
=
"%e --tlimit
-per
=%t000 --lang=smt2 %f"
command
=
"%e --tlimit=%t000 --lang=smt2 %f"
command_steps
=
"%e --stats --rlimit=%S --lang=smt2 %f"
use_at_auto_level
=
1
...
...
@@ -88,7 +88,7 @@ driver = "cvc4_14"
# to try: --inst-when=full-last-call
# --rlimit=%S : cvc4 1.4 DOES NOT accept -1 as argument
# cvc4 1.4 does not print steps used in --stats anyway
command
=
"%e --tlimit
-per
=%t000 --lang=smt2 %f"
command
=
"%e --tlimit=%t000 --lang=smt2 %f"
use_at_auto_level
=
1
# CVC4 version 1.4, not using SMTLIB bitvectors
...
...
@@ -105,7 +105,7 @@ driver = "cvc4"
# to try: --inst-when=full-last-call
# --rlimit=%S : cvc4 1.4 DOES NOT accept -1 as argument
# cvc4 1.4 does not print steps used in --stats anyway
command
=
"%e --tlimit
-per
=%t000 --lang=smt2 %f"
command
=
"%e --tlimit=%t000 --lang=smt2 %f"
# CVC4 version 1.0 to 1.3
...
...
@@ -376,6 +376,7 @@ version_ok = "4.5.0"
version_old
=
"4.4.1"
version_old
=
"4.4.0"
driver
=
"z3_440_counterexample"
# -t sets the time limit per query
command
=
"%e -smt2 -t:%t000 sat.random_seed=42 nlsat.randomize=false smt.random_seed=42 %f"
command_steps
=
"%e -smt2 sat.random_seed=42 nlsat.randomize=false smt.random_seed=42 memory_max_alloc_count=%S %f"
...
...
@@ -394,7 +395,7 @@ version_ok = "4.5.0"
version_old
=
"4.4.1"
version_old
=
"4.4.0"
driver
=
"z3_440"
command
=
"%e -smt2 -
t
:%t000 sat.random_seed=42 nlsat.randomize=false smt.random_seed=42 %f"
command
=
"%e -smt2 -
T
:%t000 sat.random_seed=42 nlsat.randomize=false smt.random_seed=42 %f"
command_steps
=
"%e -smt2 sat.random_seed=42 nlsat.randomize=false smt.random_seed=42 memory_max_alloc_count=%S %f"
use_at_auto_level
=
1
...
...
@@ -414,7 +415,7 @@ version_ok = "4.5.0"
version_old
=
"4.4.1"
version_old
=
"4.4.0"
driver
=
"z3_432"
command
=
"%e -smt2 -
t
:%t000 sat.random_seed=42 nlsat.randomize=false smt.random_seed=42 %f"
command
=
"%e -smt2 -
T
:%t000 sat.random_seed=42 nlsat.randomize=false smt.random_seed=42 %f"
command_steps
=
"%e -smt2 sat.random_seed=42 nlsat.randomize=false smt.random_seed=42 memory_max_alloc_count=%S %f"
# Z3 4.3.2 does not support option global option -rs anymore.
...
...
This diff is collapsed.
Click to expand it.
src/driver/call_provers.ml
+
2
−
2
View file @
88f7c204
...
...
@@ -364,8 +364,8 @@ let adapt_limits limit on_timelimit =
(* for steps limit use 2 * t + 1 time *)
if
limit
.
limit_steps
<>
empty_limit
.
limit_steps
then
(
2
*
limit
.
limit_time
+
1
)
(* if prover implements time limit, use
16
t + 1 *)
else
if
on_timelimit
then
16
*
limit
.
limit_time
+
1
(* if prover implements time limit, use
4
t + 1 *)
else
if
on_timelimit
then
4
*
limit
.
limit_time
+
1
(* otherwise use t *)
else
limit
.
limit_time
}
...
...
This diff is collapsed.
Click to expand it.
MARCHE Claude
@marche
mentioned in issue
#131 (closed)
·
7 years ago
mentioned in issue
#131 (closed)
mentioned in issue #131
Toggle commit list
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