Skip to content

Latest commit

 

History

30 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LkProver

An automated LK deduction. The resulting proof is emitted as a Latex snippet that uses bussproofs.

Example

dune exec bin/main.exe '|- ((p -> q) -> p) -> p'
\begin{prooftree}
\AxiomC{}
\RightLabel{(axiom)}
\UnaryInfC{$p \vdash p, q$}
\RightLabel{($\rightarrow R$)}
\UnaryInfC{$\vdash p, p \rightarrow q$}
\AxiomC{}
\RightLabel{(axiom)}
\UnaryInfC{$p \vdash p$}
\RightLabel{($\rightarrow L$)}
\BinaryInfC{$(p \rightarrow q) \rightarrow p \vdash p$}
\RightLabel{($\rightarrow R$)}
\UnaryInfC{$\vdash ((p \rightarrow q) \rightarrow p) \rightarrow p$}
\end{prooftree}

Available Symbols

  • variables : [A-Za-z][A-Za-z0-9_]*
  • bottom: , _|_
  • not : ¬, ~, !
  • and : , /\, ^, &
  • or : , \/, |
  • implication : , ->
  • proves : , =>, , |-
  • parentheses : (, )

About

No description or website provided.

Topics

Resources

Stars

2 stars

Watchers

1 watching

Forks

Contributors

Languages