Summary: This patch adds an embarrassingly inefficient implementation of a decision procedure for equality in the theories of uninterpreted functions and linear arithmetic. A Shostak-style approach, where a single congruence closure structure is shared by all theories, is used. This is mostly based on the corrected variant of Shostak's algorithm from: Harald Rueβ and Natarajan Shankar. 2001. Deconstructing Shostak. In Proceedings of the 16th Annual IEEE Symposium on Logic in Computer Science (LICS '01). Reviewed By: jvillard Differential Revision: D14251655 fbshipit-source-id: 8a080145fmaster
parent
e56646674f
commit
cd63204dba
@ -0,0 +1,276 @@
|
||||
(*
|
||||
* Copyright (c) 2018-present, Facebook, Inc.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*)
|
||||
|
||||
(** Equality over uninterpreted functions and linear rational arithmetic *)
|
||||
|
||||
type 'a exp_map = 'a Map.M(Exp).t [@@deriving compare, sexp]
|
||||
|
||||
let empty_map = Map.empty (module Exp)
|
||||
|
||||
type subst = Exp.t exp_map [@@deriving compare, sexp]
|
||||
|
||||
(** see also [invariant] *)
|
||||
type t =
|
||||
{ sat: bool (** [false] only if constraints are inconsistent *)
|
||||
; rep: subst
|
||||
(** functional set of oriented equations: map [a] to [a'],
|
||||
indicating that [a = a'] holds, and that [a'] is the
|
||||
'rep(resentative)' of [a] *) }
|
||||
[@@deriving compare, sexp]
|
||||
|
||||
(** Pretty-printing *)
|
||||
|
||||
let pp fs {sat; rep} =
|
||||
let pp_alist pp_k pp_v fs alist =
|
||||
let pp_assoc fs (k, v) =
|
||||
Format.fprintf fs "[@[%a@ @<2>↦ %a@]]" pp_k k pp_v (k, v)
|
||||
in
|
||||
Format.fprintf fs "[@[<hv>%a@]]" (List.pp ";@ " pp_assoc) alist
|
||||
in
|
||||
let pp_exp_v fs (k, v) = if not (Exp.equal k v) then Exp.pp fs v in
|
||||
Format.fprintf fs "@[{@[<hv>sat= %b;@ rep= %a@]}@]" sat
|
||||
(pp_alist Exp.pp pp_exp_v)
|
||||
(Map.to_alist rep)
|
||||
|
||||
let pp_classes fs r =
|
||||
let cls =
|
||||
Map.fold r.rep ~init:empty_map ~f:(fun ~key ~data cls ->
|
||||
if Exp.equal key data then cls
|
||||
else Map.add_multi cls ~key:data ~data:key )
|
||||
in
|
||||
List.pp "@ @<2>∧ "
|
||||
(fun fs (key, data) ->
|
||||
Format.fprintf fs "@[%a@ = %a@]" Exp.pp key (List.pp "@ = " Exp.pp)
|
||||
(List.sort ~compare:Exp.compare data) )
|
||||
fs (Map.to_alist cls)
|
||||
|
||||
let pp_diff fs (r, s) =
|
||||
let pp_sdiff_map pp_elt_diff equal nam fs x y =
|
||||
let sd = Sequence.to_list (Map.symmetric_diff ~data_equal:equal x y) in
|
||||
if not (List.is_empty sd) then
|
||||
Format.fprintf fs "%s= [@[<hv>%a@]];@ " nam
|
||||
(List.pp ";@ " pp_elt_diff)
|
||||
sd
|
||||
in
|
||||
let pp_sdiff_elt pp_key pp_val pp_sdiff_val fs = function
|
||||
| k, `Left v ->
|
||||
Format.fprintf fs "-- [@[%a@ @<2>↦ %a@]]" pp_key k pp_val v
|
||||
| k, `Right v ->
|
||||
Format.fprintf fs "++ [@[%a@ @<2>↦ %a@]]" pp_key k pp_val v
|
||||
| k, `Unequal vv ->
|
||||
Format.fprintf fs "[@[%a@ @<2>↦ %a@]]" pp_key k pp_sdiff_val vv
|
||||
in
|
||||
let pp_sdiff_exp_map =
|
||||
let pp_sdiff_exp fs (u, v) =
|
||||
Format.fprintf fs "-- %a ++ %a" Exp.pp u Exp.pp v
|
||||
in
|
||||
pp_sdiff_map (pp_sdiff_elt Exp.pp Exp.pp pp_sdiff_exp) Exp.equal
|
||||
in
|
||||
let pp_sat fs =
|
||||
if not (Bool.equal r.sat s.sat) then
|
||||
Format.fprintf fs "sat= @[-- %b@ ++ %b@];@ " r.sat s.sat
|
||||
in
|
||||
let pp_rep fs = pp_sdiff_exp_map "rep" fs r.rep s.rep in
|
||||
Format.fprintf fs "@[{@[<hv>%t%t@]}@]" pp_sat pp_rep
|
||||
|
||||
(** Invariant *)
|
||||
|
||||
(** test membership in carrier *)
|
||||
let in_car r e = Map.mem r.rep e
|
||||
|
||||
let invariant r =
|
||||
Invariant.invariant [%here] r [%sexp_of: t]
|
||||
@@ fun () ->
|
||||
Map.iteri r.rep ~f:(fun ~key:a ~data:_ ->
|
||||
(* no interpreted exps in carrier *)
|
||||
assert (Poly.(Exp.classify a <> `Interpreted)) ;
|
||||
(* carrier is closed under sub-expressions *)
|
||||
Exp.iter a ~f:(fun b ->
|
||||
assert (
|
||||
in_car r b
|
||||
|| Trace.fail "@[subexp %a of %a not in carrier of@ %a@]" Exp.pp
|
||||
b Exp.pp a pp r ) ) )
|
||||
|
||||
(** Core operations *)
|
||||
|
||||
let true_ = {sat= true; rep= empty_map} |> check invariant
|
||||
|
||||
(** apply a subst to an exp *)
|
||||
let apply s a = try Map.find_exn s a with Caml.Not_found -> a
|
||||
|
||||
(** apply a subst to maximal non-interpreted subexps *)
|
||||
let rec norm s a =
|
||||
match Exp.classify a with
|
||||
| `Interpreted -> Exp.map ~f:(norm s) a
|
||||
| _ -> apply s a
|
||||
|
||||
(** exps are congruent if equal after normalizing subexps *)
|
||||
let congruent r a b =
|
||||
Exp.equal (Exp.map ~f:(norm r.rep) a) (Exp.map ~f:(norm r.rep) b)
|
||||
|
||||
(** [lookup r a] is [b'] if [a ~ b = b'] for some equation [b = b'] in rep *)
|
||||
let lookup r a =
|
||||
With_return.with_return
|
||||
@@ fun {return} ->
|
||||
(* congruent specialized to assume [a] canonized and [b] non-interpreted *)
|
||||
let semi_congruent r a b = Exp.equal a (Exp.map ~f:(apply r.rep) b) in
|
||||
Map.iteri r.rep ~f:(fun ~key ~data ->
|
||||
if semi_congruent r a key then return data ) ;
|
||||
a
|
||||
|
||||
(** rewrite an exp into canonical form using rep and, for uninterpreted
|
||||
exps, congruence composed with rep *)
|
||||
let rec canon r a =
|
||||
match Exp.classify a with
|
||||
| `Interpreted -> Exp.map ~f:(canon r) a
|
||||
| `Uninterpreted -> lookup r (Exp.map ~f:(canon r) a)
|
||||
| `Atomic -> apply r.rep a
|
||||
|
||||
(** add an exp to the carrier *)
|
||||
let rec extend a r =
|
||||
match Exp.classify a with
|
||||
| `Interpreted -> Exp.fold ~f:extend a ~init:r
|
||||
| _ ->
|
||||
Map.find_or_add r.rep a
|
||||
~if_found:(fun _ -> r)
|
||||
~default:a
|
||||
~if_added:(fun rep -> Exp.fold ~f:extend a ~init:{r with rep})
|
||||
|
||||
let extend a r = extend a r |> check invariant
|
||||
|
||||
let compose r a a' =
|
||||
let s = Map.singleton (module Exp) a a' in
|
||||
let rep = Map.map ~f:(norm s) r.rep in
|
||||
let rep =
|
||||
Map.update rep a ~f:(function
|
||||
| None -> a'
|
||||
| Some b when Exp.equal a' b -> b
|
||||
| _ -> fail "domains intersect: %a" Exp.pp a () )
|
||||
in
|
||||
{r with rep} |> check invariant
|
||||
|
||||
let merge a b r =
|
||||
[%Trace.call fun {pf} -> pf "%a@ %a@ %a" Exp.pp a Exp.pp b pp r]
|
||||
;
|
||||
( match Exp.solve a b with
|
||||
| Some (c, c') -> compose r c c'
|
||||
| None -> {r with sat= false} )
|
||||
|>
|
||||
[%Trace.retn fun {pf} r' ->
|
||||
pf "%a" pp_diff (r, r') ;
|
||||
invariant r']
|
||||
|
||||
(** find an unproved equation between congruent exps *)
|
||||
let find_missing r =
|
||||
With_return.with_return
|
||||
@@ fun {return} ->
|
||||
Map.iteri r.rep ~f:(fun ~key:a ~data:a' ->
|
||||
Map.iteri r.rep ~f:(fun ~key:b ~data:b' ->
|
||||
if
|
||||
Exp.compare a b < 0
|
||||
&& (not (Exp.equal a' b'))
|
||||
&& congruent r a b
|
||||
then return (Some (a', b')) ) ) ;
|
||||
None
|
||||
|
||||
let rec close r =
|
||||
if not r.sat then r
|
||||
else
|
||||
match find_missing r with
|
||||
| Some (a', b') -> close (merge a' b' r)
|
||||
| None -> r
|
||||
|
||||
let and_eq a b r =
|
||||
if not r.sat then r
|
||||
else
|
||||
let a' = canon r a in
|
||||
let b' = canon r b in
|
||||
let r = extend a' r in
|
||||
let r = extend b' r in
|
||||
if Exp.equal a' b' then r else close (merge a' b' r)
|
||||
|
||||
(** Exposed interface *)
|
||||
|
||||
let is_true {sat; rep} =
|
||||
sat && Map.for_alli rep ~f:(fun ~key:a ~data:a' -> Exp.equal a a')
|
||||
|
||||
let is_false {sat} = not sat
|
||||
let entails_eq r d e = Exp.equal (canon r d) (canon r e)
|
||||
|
||||
let entails r s =
|
||||
Map.for_alli s.rep ~f:(fun ~key:e ~data:e' -> entails_eq r e e')
|
||||
|
||||
let normalize = canon
|
||||
|
||||
let difference r a b =
|
||||
[%Trace.call fun {pf} -> pf "%a@ %a@ %a" Exp.pp a Exp.pp b pp r]
|
||||
;
|
||||
let a = canon r a in
|
||||
let b = canon r b in
|
||||
( if Exp.equal a b then Some Z.zero
|
||||
else
|
||||
match (Exp.typ a, Exp.typ b) with
|
||||
| Some typ, _ | _, Some typ -> (
|
||||
match normalize r (Exp.sub typ a b) with
|
||||
| Integer {data} -> Some data
|
||||
| _ -> None )
|
||||
| _ -> None )
|
||||
|>
|
||||
[%Trace.retn fun {pf} ->
|
||||
function Some d -> pf "%a" Z.pp_print d | None -> ()]
|
||||
|
||||
let and_ r s =
|
||||
if not r.sat then r
|
||||
else if not s.sat then s
|
||||
else
|
||||
let s, r =
|
||||
if Map.length s.rep <= Map.length r.rep then (s, r) else (r, s)
|
||||
in
|
||||
Map.fold s.rep ~init:r ~f:(fun ~key:e ~data:e' r -> and_eq e e' r)
|
||||
|
||||
let or_ r s =
|
||||
if not s.sat then r
|
||||
else if not r.sat then s
|
||||
else
|
||||
let merge_mems rs r s =
|
||||
Map.fold s.rep ~init:rs ~f:(fun ~key:e ~data:e' rs ->
|
||||
if entails_eq r e e' then and_eq e e' rs else rs )
|
||||
in
|
||||
let rs = true_ in
|
||||
let rs = merge_mems rs r s in
|
||||
let rs = merge_mems rs s r in
|
||||
rs
|
||||
|
||||
(* assumes that f is injective and for any set of exps E, f[E] is disjoint
|
||||
from E *)
|
||||
let map_exps ({sat= _; rep} as r) ~f =
|
||||
[%Trace.call fun {pf} -> pf "%a" pp r]
|
||||
;
|
||||
let map ~equal_key ~equal_data ~f_key ~f_data m =
|
||||
Map.fold m ~init:m ~f:(fun ~key ~data m ->
|
||||
let key' = f_key key in
|
||||
let data' = f_data data in
|
||||
if equal_key key' key then
|
||||
if equal_data data' data then m else Map.set m ~key ~data:data'
|
||||
else Map.remove m key |> Map.add_exn ~key:key' ~data:data' )
|
||||
in
|
||||
let rep' =
|
||||
map rep ~equal_key:Exp.equal ~equal_data:Exp.equal ~f_key:f ~f_data:f
|
||||
in
|
||||
(if rep' == rep then r else {r with rep= rep'})
|
||||
|>
|
||||
[%Trace.retn fun {pf} r -> pf "%a" pp r ; invariant r]
|
||||
|
||||
let rename r sub = map_exps r ~f:(fun e -> Exp.rename e sub)
|
||||
|
||||
let fold_exps r ~init ~f =
|
||||
Map.fold r.rep ~f:(fun ~key ~data z -> f (f z data) key) ~init
|
||||
|
||||
let fold_vars r ~init ~f =
|
||||
fold_exps r ~init ~f:(fun init -> Exp.fold_vars ~f ~init)
|
||||
|
||||
let fv e = fold_vars e ~f:Set.add ~init:Var.Set.empty
|
@ -0,0 +1,59 @@
|
||||
(*
|
||||
* Copyright (c) 2018-present, Facebook, Inc.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*)
|
||||
|
||||
(** Constraints representing equivalence relations over uninterpreted
|
||||
functions and linear rational arithmetic *)
|
||||
|
||||
type t [@@deriving compare, sexp]
|
||||
|
||||
val pp : t pp
|
||||
val pp_classes : t pp
|
||||
|
||||
include Invariant.S with type t := t
|
||||
|
||||
val true_ : t
|
||||
(** The diagonal relation, which only equates each exp with itself. *)
|
||||
|
||||
val and_eq : Exp.t -> Exp.t -> t -> t
|
||||
(** Conjoin an equation to a relation. *)
|
||||
|
||||
val and_ : t -> t -> t
|
||||
(** Conjunction. *)
|
||||
|
||||
val or_ : t -> t -> t
|
||||
(** Disjunction. *)
|
||||
|
||||
val rename : t -> Var.Subst.t -> t
|
||||
(** Apply a renaming substitution to the relation. *)
|
||||
|
||||
val fv : t -> Var.Set.t
|
||||
(** The variables occurring in the exps of the relation. *)
|
||||
|
||||
val is_true : t -> bool
|
||||
(** Test if the relation is diagonal. *)
|
||||
|
||||
val is_false : t -> bool
|
||||
(** Test if the relation is empty / inconsistent. *)
|
||||
|
||||
val entails_eq : t -> Exp.t -> Exp.t -> bool
|
||||
(** Test if an equation is entailed by a relation. *)
|
||||
|
||||
val entails : t -> t -> bool
|
||||
(** Test if one relation entails another. *)
|
||||
|
||||
val normalize : t -> Exp.t -> Exp.t
|
||||
(** Normalize an exp [e] to [e'] such that [e = e'] is implied by the
|
||||
relation, where [e'] and its sub-exps are expressed in terms of the
|
||||
relation's canonical representatives of each equivalence-modulo-offset
|
||||
class. *)
|
||||
|
||||
val difference : t -> Exp.t -> Exp.t -> Z.t option
|
||||
(** The difference as an offset. [difference r a b = Some k] if [r] implies
|
||||
[a = b+k], or [None] if [a] and [b] are not equal up to an integer
|
||||
offset. *)
|
||||
|
||||
val fold_exps : t -> init:'a -> f:('a -> Exp.t -> 'a) -> 'a
|
Loading…
Reference in new issue