Skip to content

Commit

Permalink
Arithmetic queries on simplifyer
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven de Oliveira committed May 22, 2019
1 parent 0590b93 commit 8ea095d
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 26 deletions.
6 changes: 4 additions & 2 deletions sources/lib/frontend/cnf.ml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ module DummySimp:
type expl = Explanation.t
type env = Theory.Main_Default.t
let empty = Theory.Main_Default.empty
let query _ _ = None
let bool_query _ _ = None
let q_query _ _ = None
end
)

Expand All @@ -63,13 +64,14 @@ module ThSimp : Simple_reasoner_expr.S with type expr = Expr.t
type expl = Explanation.t
type env = Theory.Main_Default.t
let empty = Theory.Main_Default.empty
let query ex env =
let bool_query ex env =
try
match Theory.Main_Default.query ex env with
Some (expl,_) -> Some (true, expl)
| None -> None
with _ ->
Format.eprintf "Query failed on %a@." Expr.print ex; None
let q_query _ _ = None (* Todo : add arithmetic solving *)
end
)

Expand Down
64 changes: 42 additions & 22 deletions sources/lib/frontend/simple_reasoner_expr.ml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ let (|>=) v1 v2 =
| Num n1, Num n2 -> n1 >= n2
| _,_ -> assert false



(** Same as List.fold_left, but f returns
a tuple (acc, stop) where stop is a boolean
stating that the loop has to stop. *)
Expand Down Expand Up @@ -174,14 +172,21 @@ sig
type env
type expl

(** An empty environment. Know nothing. *)
(** Empty environment. *)
val empty : unit -> env

(** Tries to decide the expression in argument given the environment.
If it fails, returns None. Otherwise, provides the answer and
an explanation (possibly empty)
*)
val query : expr -> env -> (bool * expl) option
val bool_query : expr -> env -> (bool * expl) option

(** Tries to decide the arithmetic value of an expression given the
environment.
If it fails, returns None. Otherwise, provides the answer and
an explanation (possibly empty) *)
val q_query : expr -> env -> (Q.t * expl) option

end

(** This is the signature of the simplifyer. *)
Expand Down Expand Up @@ -235,19 +240,39 @@ struct
in
{rev with v = List.rev rev.v}

(* Check is an expression has an arithmetic type (Some true),
a boolean type (Some false) or else (None). *)
let is_arith (e : expr) : bool option =
match E.get_type e with
Ty.Tbool -> Some false
| Ty.Tint | Ty.Treal
| Ty.Tvar {value = Some Ty.Tint;_}
| Ty.Tvar {value = Some Ty.Treal;_} -> Some true
| _ -> None

let value_from_query (e : expr) : (value * expl) option =
match is_arith e with
Some true -> (
match T.q_query e !env with
Some (res_query, expl) ->
Some ((Num res_query), expl)
| None -> None
)
| Some false -> (
match T.bool_query e !env with
Some (res_query, expl) ->
Some ((Bool res_query), expl)
| None -> None
)
| None -> None

let expr_to_value (e : expr) : (value * expl) option =
match E.get_comp e with
True -> Some ((Bool true), no_reason)
| False -> Some ((Bool false), no_reason)
| Int s -> Some ((Num (Q.of_string (Hstring.view s))), no_reason)
| Real s -> Some ((Num (Q.of_string (Hstring.view s))), no_reason)
| _ ->
if E.get_type e = Ty.Tbool then
match T.query e !env with
Some (res_query, expl) ->
Some ((Bool res_query), expl)
| None -> None
else None
| _ -> value_from_query e

let value_to_expr (ty : Ty.t) (v : value) : expr =
debug "Type = %a@." Ty.print ty;
Expand Down Expand Up @@ -379,18 +404,13 @@ struct
{v = e; diff = false; expl = no_reason}
)
else
let query_res =
if E.get_type e = Ty.Tbool
then T.query e !env
else None in
let query_res = value_from_query e in
match query_res with
Some (true, expl) -> (
debug "Theory found it is true@.";
{v = E.vrai; diff = true; expl}
)
| Some (false, expl) -> (
debug "Theory found it is false@.";
{v = E.faux; diff = true; expl}
| Some (q, expl) -> (
let cst_exp = value_to_expr (E.get_type e) q in
debug "Theory found %a = %a@."
E.pretty e E.pretty cst_exp;
{v = cst_exp; diff = true; expl}
)
| None ->
debug "Theory did not found an answer@.";
Expand Down
15 changes: 14 additions & 1 deletion sources/lib/frontend/simple_reasoner_expr.mli
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,21 @@ sig
type expr
type env
type expl

(** Empty environment. *)
val empty : unit -> env
val query : expr -> env -> (bool * expl) option

(** Tries to decide the expression in argument given the environment.
If it fails, returns None. Otherwise, provides the answer and
an explanation (possibly empty)
*)
val bool_query : expr -> env -> (bool * expl) option

(** Tries to decide the arithmetic value of an expression given the
environment.
If it fails, returns None. Otherwise, provides the answer and
an explanation (possibly empty) *)
val q_query : expr -> env -> (Q.t * expl) option
end

(** This is the signature of the simplifyer. *)
Expand Down
3 changes: 2 additions & 1 deletion sources/lib/structures/expr.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2563,6 +2563,7 @@ module SimpExprDummy =
type env = unit
type expl = unit
let empty _ = ()
let query _ _ = None
let bool_query _ _ = None
let q_query _ _ = None
end
)

0 comments on commit 8ea095d

Please sign in to comment.