Module AltErgoLib.Sig_rel

type 'a literal =
  1. | LTerm of Expr.t
  2. | LSem of 'a Xliteral.view
type instances = (Expr.t list * Expr.gformula * Explanation.t) list
type 'a input = 'a Xliteral.view * Expr.t option * Explanation.t * Th_util.lit_origin
type 'a facts = {
  1. equas : 'a fact Stdlib.Queue.t;
  2. diseqs : 'a fact Stdlib.Queue.t;
  3. ineqs : 'a fact Stdlib.Queue.t;
  4. mutable touched : 'a AltErgoLib.Util.MI.t;
}
type 'a result = {
  1. assume : 'a fact list;
  2. remove : Expr.t list;
}
module type RELATION = sig ... end