Module AltErgoLib.Commands

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