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

[vnnlib] Just simplify already negated formula.

parent a7465725
No related branches found
No related tags found
No related merge requests found
......@@ -435,6 +435,7 @@ let print_goal info fmt (pr, t) =
let rec negate_term info t =
match t.Term.t_node with
| Tnot t -> t
| Tbinop (Tand, t1, t2) ->
Term.t_or (negate_term info t1) (negate_term info t2)
| Tbinop (Tor, t1, t2) ->
......
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