Skip to content
Snippets Groups Projects
Commit 5422acbb authored by François Bobot's avatar François Bobot
Browse files

[Bool] fix:special case for cl=true and cl=false work (bad or pattern ...)

parent 0ca0f6af
No related branches found
No related tags found
No related merge requests found
PACKAGES=oUnit zarith ocamlgraph str #-package lablgtk2 PACKAGES=oUnit zarith ocamlgraph str #-package lablgtk2
OPTIONS=-tag annot -no-sanitize -tag debug -use-ocamlfind -cflags -w,+a-4-9 -cflags -warn-error,+5+10+8 -cflag -bin-annot -j 8 OPTIONS=-tag annot -no-sanitize -tag debug -use-ocamlfind -cflags -w,+a-4-9 -cflags -warn-error,+5+10+8+12 -cflag -bin-annot -j 8
#OPTIONS += -cflags -warn-error,+a #OPTIONS += -cflags -warn-error,+a
DIRECTORIES=src src/util src/inputlang/altergo src/inputlang/dimacs_cnf src/inputlang/smtlib2 tests src/cmd fuzz DIRECTORIES=src src/util src/inputlang/altergo src/inputlang/dimacs_cnf src/inputlang/smtlib2 tests src/cmd fuzz
OCAMLBUILD=ocamlbuild \ OCAMLBUILD=ocamlbuild \
......
...@@ -183,7 +183,7 @@ module Th = struct ...@@ -183,7 +183,7 @@ module Th = struct
| None -> raise (Found (cl,b)) | None -> raise (Found (cl,b))
) l ) l
let bcp d l absorbent = let _bcp d l absorbent =
try try
let res = IArray.fold (fun acc cl -> let res = IArray.fold (fun acc cl ->
let cl = Delayed.find d cl in let cl = Delayed.find d cl in
...@@ -750,20 +750,26 @@ module ConClause = struct ...@@ -750,20 +750,26 @@ module ConClause = struct
let s = get_con s t c2 in let s = get_con s t c2 in
GRequested s GRequested s
let propacl t age cl rcl = let propacl t _age clo rcl =
match cl, rcl with match clo, rcl with
| _true, cl | cl, _true when Cl.equal _true cl_true -> | (_true, cl) when Cl.equal _true cl_true ->
ComputeConflict.set_dec_cho t dom cl chobool cl; ComputeConflict.set_dec_cho t dom cl chobool cl;
GRequested (Cl.M.singleton cl true) GRequested (Cl.M.singleton cl true)
| _false, cl | cl, _false when Cl.equal _false cl_false -> | (cl, _true) when Cl.equal _true cl_true ->
ComputeConflict.set_dec_cho t dom cl chobool cl;
GRequested (Cl.M.singleton cl true)
| (_false, cl) when Cl.equal _false cl_false ->
ComputeConflict.set_dec_cho t dom cl chobool cl;
GRequested (Cl.M.singleton cl false)
| (cl, _false) when Cl.equal _false cl_false ->
ComputeConflict.set_dec_cho t dom cl chobool cl; ComputeConflict.set_dec_cho t dom cl chobool cl;
GRequested (Cl.M.singleton cl false) GRequested (Cl.M.singleton cl false)
| _ -> | _ ->
let eq = !mk_permanent_equality (cl,rcl) in let eq = !mk_permanent_equality (clo,rcl) in
ComputeConflict.set_dec_cho t dom eq chobool eq; ComputeConflict.set_dec_cho t dom eq chobool eq;
GRequested (Cl.M.singleton eq true) GRequested (Cl.M.singleton eq true)
let propasem t age sem v cl = let propasem t _age sem v cl =
(** TODO ty bool if sem is bool? *) (** TODO ty bool if sem is bool? *)
let eq = !mk_permanent_equality (cl,new_permanent sem v (Cl.ty cl)) in let eq = !mk_permanent_equality (cl,new_permanent sem v (Cl.ty cl)) in
ComputeConflict.set_dec_cho t dom eq chobool eq; ComputeConflict.set_dec_cho t dom eq chobool eq;
......
...@@ -301,8 +301,12 @@ module ExpSubst = struct ...@@ -301,8 +301,12 @@ module ExpSubst = struct
let fty = Cl.ty f in let fty = Cl.ty f in
let gty = Cl.ty g in let gty = Cl.ty g in
let deps = Deps.empty in let deps = Deps.empty in
let rl = get_sem t sem v in
let ty = match rl with CRepr -> assert false (* get_sem *)
| CMerge (rcl,_,_,_) -> Cl.ty rcl in
let deps = let deps =
Equality.GenEquality.sem_def t deps age (get_sem t sem v) in (** TODO separate the first Merge(UF) from the others(GenEquality)? *)
Equality.GenEquality.sem t deps age sem v rl ty in
let deps = let deps =
Equality.GenEquality.repr t deps age f (get_cl_repr t f) fty in Equality.GenEquality.repr t deps age f (get_cl_repr t f) fty in
let deps = let deps =
......
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