package logtk

  1. Overview
  2. Docs
On This Page
  1. Low Level Prover
Legend:
Library
Module
Module type
Parameter
Class
Class type

Low Level Prover

A small theorem prover that checks entailment of ground formulas, with higher order terms and some theories

type form = LLTerm.Form.t
type res =
  1. | R_ok
  2. | R_fail
type final_state
val can_check : LLProof.tag list -> bool

Is this set of tags accepted by the tableau prover?

val prove : form list -> form -> res * final_state

prove a b returns R_ok if a => b is a tautology.