package logtk

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = term
type view = private
  1. | True
  2. | False
  3. | Or of t list
  4. | And of t list
  5. | Not of t
  6. | Equiv of t * t
  7. | Xor of t * t
  8. | Imply of t * t
  9. | Atom of t
  10. | Eq of t * t
  11. | Neq of t * t
  12. | Int_pred of Logtk_arith.Z.t linexp * Int_op.t
  13. | Rat_pred of Logtk_arith.Q.t linexp * Rat_op.t
  14. | Forall of {
    1. ty_var : ty;
    2. body : t;
    }
  15. | Exists of {
    1. ty_var : ty;
    2. body : t;
    }
val view : t -> view
val true_ : t
val false_ : t
val eq : t -> t -> t
val neq : t -> t -> t
val not_ : t -> t
val and_ : t list -> t
val or_ : t list -> t
val imply : t -> t -> t
val equiv : t -> t -> t
val xor : t -> t -> t
val int_pred : Linexp_int.t -> Int_op.t -> t
val rat_pred : Linexp_rat.t -> Rat_op.t -> t
val forall : ty_var:ty -> t -> t
val exists : ty_var:ty -> t -> t