package lambdapi

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

lambdapi-2.2.1.tbz
sha256=ba73f288e435130293408bd44732f1dfc5ec8a8db91c7453c9baf9c740095829
sha512=f88bb92fdb8aee8add60588673040fac012b2eab17c2a1d529c4b7c795cf0e1a9168122dc19889f04a31bda2bb2cf820237cbbe7e319121618aba3d134381756

doc/lambdapi.parsing/Parsing/Syntax/P/index.html

Module Syntax.PSource

Module to create p_term's with no positions.

Sourceval qiden : Common.Path.t -> string -> p_term

qiden p s builds a P_Iden "@p.s".

Sourceval iden : string -> p_term

iden s builds a P_Iden "@s".

var v builds a P_Iden from Bindlib.name_of v.

Sourceval patt : string -> p_term array option -> p_term

patt s ts builds a P_Patt "$sts".

Sourceval patt0 : string -> p_term

patt0 s builds a P_Patt "$s".

Sourceval appl : p_term -> p_term -> p_term

appl t u builds P_Appl(t, u).

Sourceval appl_list : p_term -> p_term list -> p_term

appl_list t ts iterates appl.

wild builds a P_Wild.

Sourceval appl_wild : p_term -> int -> p_term

appl_wild t n applies t to n underscores.

Sourceval abst : p_ident option -> p_term -> p_term

abst idopt t builds a P_Abst over t.

Sourceval abst_list : p_ident option list -> p_term -> p_term

abst_list iterates abst.

Sourceval rule : p_term -> p_term -> p_rule