aboutsummaryrefslogtreecommitdiff
path: root/contrib/dp/dp.ml
diff options
context:
space:
mode:
authorfilliatr2007-02-14 08:09:05 +0000
committerfilliatr2007-02-14 08:09:05 +0000
commit2e1e80b173846c8ed7ac94ce5f533ffc6cd6c8bd (patch)
tree4d8bd342c8fbb1cac7bb05ef47ea81ff13acc605 /contrib/dp/dp.ml
parent3786c49aadcd609151c44b2458c00cf612b807bb (diff)
encodage des types
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9646 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/dp/dp.ml')
-rw-r--r--contrib/dp/dp.ml8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/dp/dp.ml b/contrib/dp/dp.ml
index 49d1c20d19..9636206b03 100644
--- a/contrib/dp/dp.ml
+++ b/contrib/dp/dp.ml
@@ -646,7 +646,7 @@ let remove_files = List.iter (fun f -> try Sys.remove f with _ -> ())
let sprintf = Format.sprintf
let call_simplify fwhy =
- let cmd = sprintf "why --no-prelude --simplify %s" fwhy in
+ let cmd = sprintf "why --no-arrays --simplify --encoding strat %s" fwhy in
if Sys.command cmd <> 0 then error ("call to " ^ cmd ^ " failed");
let fsx = Filename.chop_suffix fwhy ".why" ^ "_why.sx" in
let cmd =
@@ -693,7 +693,7 @@ let call_zenon fwhy =
end
let call_yices fwhy =
- let cmd = sprintf "why -smtlib --encoding sstrat %s" fwhy in
+ let cmd = sprintf "why --no-arrays -smtlib --encoding sstrat %s" fwhy in
if Sys.command cmd <> 0 then error ("call to " ^ cmd ^ " failed");
let fsmt = Filename.chop_suffix fwhy ".why" ^ "_why.smt" in
let cmd =
@@ -708,7 +708,7 @@ let call_yices fwhy =
r
let call_cvcl fwhy =
- let cmd = sprintf "why --cvcl --encoding sstrat %s" fwhy in
+ let cmd = sprintf "why --no-arrays --cvcl --encoding sstrat %s" fwhy in
if Sys.command cmd <> 0 then error ("call to " ^ cmd ^ " failed");
let fcvc = Filename.chop_suffix fwhy ".why" ^ "_why.cvc" in
let cmd =
@@ -723,7 +723,7 @@ let call_cvcl fwhy =
r
let call_harvey fwhy =
- let cmd = sprintf "why --harvey %s" fwhy in
+ let cmd = sprintf "why --no-arrays --harvey --encoding strat %s" fwhy in
if Sys.command cmd <> 0 then error ("call to " ^ cmd ^ " failed");
let frv = Filename.chop_suffix fwhy ".why" ^ "_why.rv" in
let out = Sys.command (sprintf "rvc -e -t %s > /dev/null 2>&1" frv) in