Skip to content
Snippets Groups Projects
Commit f9da1d60 authored by Michele Alberti's avatar Michele Alberti
Browse files

Rework result rules in pyrat's driver.

parent 427a1c78
No related branches found
No related tags found
No related merge requests found
(* Why3 drivers for PyRAT *) (* Why3 drivers for PyRAT *)
(* additional regexp for detection of answers, needed for alt-ergo <= 0.99 *)
valid "^Inconsistent assumption$"
printer "pyrat" printer "pyrat"
filename "%f-%t-%g.why" filename "%f-%t-%g.why"
valid "Result: True" valid "Result = [Tt]rue"
invalid "Result: False" invalid "Result = [Ff]alse"
timeout "Result: Timeout" timeout "Result = [Tt]imeout"
unknown "Result: Unknown" "" unknown "Result = [Uu]nknown" ""
transformation "inline_trivial" transformation "inline_trivial"
transformation "introduce_premises" transformation "introduce_premises"
......
...@@ -9,5 +9,5 @@ case $1 in ...@@ -9,5 +9,5 @@ case $1 in
echo "NN: $2" echo "NN: $2"
echo "Goal:" echo "Goal:"
cat $4 cat $4
echo "Result: Unknown" echo "Result = Unknown"
esac esac
...@@ -61,7 +61,7 @@ Test verify ...@@ -61,7 +61,7 @@ Test verify
x0 < 0.5 x0 < 0.5
0.0 < y0 0.0 < y0
y0 < 0.5 y0 < 0.5
Result: Unknown Result = Unknown
Unknown () Unknown ()
(0.00s) (0.00s)
...@@ -75,5 +75,5 @@ Test verify ...@@ -75,5 +75,5 @@ Test verify
0.0 < y0 or 0.5 < y0 0.0 < y0 or 0.5 < y0
0.0 < y1 0.0 < y1
y1 < 0.5 y1 < 0.5
Result: Unknown Result = Unknown
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment