0.4.1 • Published 10 months ago

tutch v0.4.1

Weekly downloads
4
License
GPL-3.0
Repository
github
Last release
10 months ago

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://tutch.glitch.me/.

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/

0.4.1

10 months ago

0.4.0

10 months ago

0.2.1

2 years ago

0.3.2

2 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago