package logtk

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Simple and Lightweight Congruence and order

The congruence stores a finite representation of a set of (ground) equations an inequalities. It is backtrackable, ie one can go back to a previous point as long as it is compatible with a LIFO usage.

module type S = sig ... end

Functor

module type TERM = sig ... end
module Make (T : TERM) : S with type term = T.t

Common implementations

module FO : S with type term = LogtkFOTerm.t
module HO : S with type term = LogtkHOTerm.t