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

[pyrat] Rework negation of formula w/o touching the driver.

No need to modify the driver because PyRAT handles stict inequality symbols.
parent c204e725
No related branches found
No related tags found
No related merge requests found
...@@ -96,20 +96,24 @@ let rec negate_term info t = ...@@ -96,20 +96,24 @@ let rec negate_term info t =
(* Negate float relational symbols. *) (* Negate float relational symbols. *)
let ls_neg = let ls_neg =
if Term.ls_equal ls info.ls_rel_float.le if Term.ls_equal ls info.ls_rel_float.le
|| Term.ls_equal ls info.ls_rel_float.lt then info.ls_rel_float.gt
else if Term.ls_equal ls info.ls_rel_float.lt
then info.ls_rel_float.ge then info.ls_rel_float.ge
else if Term.ls_equal ls info.ls_rel_float.ge else if Term.ls_equal ls info.ls_rel_float.ge
|| Term.ls_equal ls info.ls_rel_float.gt then info.ls_rel_float.lt
else if Term.ls_equal ls info.ls_rel_float.gt
then info.ls_rel_float.le then info.ls_rel_float.le
else ls else ls
in in
(* Negate real relational symbols. *) (* Negate real relational symbols. *)
let ls_neg = let ls_neg =
if Term.ls_equal ls info.ls_rel_real.le if Term.ls_equal ls info.ls_rel_real.le
|| Term.ls_equal ls info.ls_rel_real.lt then info.ls_rel_real.gt
else if Term.ls_equal ls info.ls_rel_real.lt
then info.ls_rel_real.ge then info.ls_rel_real.ge
else if Term.ls_equal ls info.ls_rel_real.ge else if Term.ls_equal ls info.ls_rel_real.ge
|| Term.ls_equal ls info.ls_rel_real.gt then info.ls_rel_real.lt
else if Term.ls_equal ls info.ls_rel_real.gt
then info.ls_rel_real.le then info.ls_rel_real.le
else ls_neg else ls_neg
in in
......
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