Skip to content
Snippets Groups Projects
Commit 43b8869f authored by Arthur Correnson's avatar Arthur Correnson
Browse files

Remove redundant converters for FP

parent 8fa0a824
No related branches found
No related tags found
1 merge request!12Feature/fp check
......@@ -157,21 +157,29 @@ let converter d (f:Ground.t) =
match Ground.sem f with
| {app={builtin=Expr.Fp_add (8, 24); _}; args; _} ->
let m, a, b = IArray.extract3_exn args in
reg a; reg b; attach d f;
reg m; reg a; reg b; attach d f;
let wait =
set r (let+ va = get a and+ vb = get b in Farith.B32.add !>>m va vb)
in
List.iter (fun n -> wait_for_this_node_get_a_value d n wait) [a;b;r]
| {app={builtin=Expr.Fp_sub (8, 24); _}; args; _} ->
let m, a, b = IArray.extract3_exn args in
reg a; reg b; attach d f;
reg m; reg a; reg b; attach d f;
let wait =
set r (let+ va = get a and+ vb = get b in Farith.B32.sub !>>m va vb)
in
List.iter (fun n -> wait_for_this_node_get_a_value d n wait) [a;b;r]
| {app={builtin=Expr.Fp_mul (8, 24); _}; args; _} ->
let m, a, b = IArray.extract3_exn args in
reg m; reg a; reg b; attach d f;
let wait =
set r (let* va = get a and+ vb = get b in
if is_zero vb then None else Some (Farith.B32.mul !>>m va vb))
in
List.iter (fun n -> wait_for_this_node_get_a_value d n wait) [a;b;r]
| {app={builtin=Expr.Fp_div (8, 24); _}; args; _} ->
let m, a, b = IArray.extract3_exn args in
reg a; reg b; attach d f;
reg m; reg a; reg b; attach d f;
let wait =
set r (let* va = get a and+ vb = get b in
if is_zero vb then None else Some (Farith.B32.div !>>m va vb))
......
......@@ -18,23 +18,7 @@
(* for more details (enclosed in the file licenses/LGPLv2.1). *)
(*************************************************************************)
open Colibri2_popop_lib
let converter d f =
let reg n = Egraph.register d n in
match Ground.sem f with
| { app = {builtin = Expr.Fp_add (_, _); _}; args; _ } ->
IArray.iter ~f:reg args
| { app = {builtin = Expr.Fp_sub (_, _); _}; args; _ } ->
IArray.iter ~f:reg args
| { app = {builtin = Expr.Fp_div (_, _); _}; args; _ } ->
IArray.iter ~f:reg args
| { app = {builtin = Expr.Fp_mul (_, _); _}; args; _ } ->
IArray.iter ~f:reg args
| _ -> ()
let th_register env =
Ground.register_converter env converter;
Rounding_mode.init env;
Float32.init env;
Float64.init env
......
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