package lambdapi

  1. Overview
  2. Docs
Proof assistant for the λΠ-calculus modulo rewriting

Install

dune-project
 Dependency

Authors

Maintainers

Sources

lambdapi-2.3.1.tbz
sha256=ef0c364e355c6c44327e62e79c484b1808d6e144bd6b899d39f0c9c3a351d5f2
sha512=b8b01a1203ea75ae79c59f67e787097f3df7603fc814776fbdd867625165dd00c70918d6edbfdc05c3a63fe7686f95e0523ad106f9da63234a2db33c4d42837e

doc/lambdapi.common/Common/Console/index.html

Module Common.ConsoleSource

Verbose level and loggers management.

out_fmt main output formatter.

Sourceval verbose : int Timed.ref

Current verbosity level.

Sourceval default_verbose : int ref

Default verbosity level (may be set with command line arguments).

Sourceval set_default_verbose : int -> unit

set_default_verbose i sets the default verbosity level to i.

Sourceval out : int -> 'a Lplib.Base.outfmt -> 'a

out lvl fmt prints an output message using the format fmt, but only if lvl is strictly greater than the current verbosity level. Note that the output channel is automatically flushed if logging modes are enabled.

Sourceval boolean_flags : (bool * bool Timed.ref) Lplib.Extra.StrMap.t ref

List of registered boolean flags, with their default values.

Sourceval register_flag : string -> bool -> bool Timed.ref

register_flag id d registers a new boolean flag named id, with default value of d. Note the name should not have been used previously.

Sourceval set_flag : string -> bool -> unit

set_flag id b sets the value of the flag named id to be b, or raises Not_found if no flag with this name was registered.

Sourceval reset_default : unit -> unit

reset_default () resets the verbosity level and the state of the loggers to their default value (configurable by the user with command line flags). The boolean flags are also reset to their default values.

Sourcemodule State : sig ... end

Module to manipulate imperative state of the typechecker.