Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1.22 KB

README.md

File metadata and controls

31 lines (21 loc) · 1.22 KB

Tutch

Coverage Status NPM Module

A TypeScript implementation of the TUTorial proof CHecker (Tutch), a language that allows natural deduction proofs in constructive logic to be expressed and checked.

This package just consists of the parser and proof checking logic for Tutch, which can be run like this in Node or in a tool like RunKit.

const tutch = require('tutch');

const proofOfK = tutch.parse(`

proof k : A => B => A =
begin
[ A;
  [ B;
    A ];
 B => A ];
A => B => A
end;

`);

tutch.isJustified(proofOfK);

If you want to use Tutch, you can go to https://retutch.github.io/.

Version 0.3.x of Tutch was used in the Fall 2019 Computational Applied Logic course at North Carolina State University. The Tutch proof checker was origianlly written in Standard ML by Andreas Abel, Bor-Yuh Evan Chang, and Frank Pfenning. Original documentation can be found at http://www2.tcs.ifi.lmu.de/~abel/tutch/