package logtk

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type expr = Logtk.ID.t
type t =
  1. | EQ of expr * expr
  2. | LE of expr * expr
  3. | LT of expr * expr
  4. | And of t list
  5. | Or of t list
  6. | Not of t
  7. | True
  8. | False
val eq : expr -> expr -> t
val neq : expr -> expr -> t
val le : expr -> expr -> t
val lt : expr -> expr -> t
val gt : expr -> expr -> t
val ge : expr -> expr -> t
val and_ : t list -> t
val or_ : t list -> t
val not_ : t -> t
val imply : t -> t -> t
val true_ : t
val false_ : t
module Seq : sig ... end
include Logtk.Interfaces.PRINT with type t := t
val to_string : t -> string
val simplify : t -> t

Basic simplifications