package datalog

  1. Overview
  2. Docs
type term =
  1. | Var of string
  2. | Apply of string * term list
  3. | Int of int
type literal =
  1. | LitPos of term
  2. | LitNeg of term
type clause = term * literal list
type file = clause list
exception ParseError of string
val loc_to_str : Lexing.position -> string
val print_error : ?out:Pervasives.out_channel -> string -> Lexing.lexbuf -> unit
OCaml

Innovation. Community. Security.