Module AltErgoLib.Commands

type sat_decl_aux =
  1. | Assume of string * Expr.t * bool
  2. | PredDef of Expr.t * string
  3. | RwtDef of Expr.t Typed.rwt_rule list
  4. | Query of string * Expr.t * Ty.goal_sort
  5. | ThAssume of Expr.th_elt
  6. | Push of int
  7. | Pop of int
type sat_tdecl = {
  1. st_loc : Loc.t;
  2. st_decl : sat_decl_aux;
}
val print : Stdlib.Format.formatter -> sat_tdecl -> unit