Skip to content

OpenReasoning/TruthTrees

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Truth Trees

This is a flask app (with a python module backing it) that can be used to solve generate a truth tree for any given number of formulas and one goal.

Flask App

It uses a functional format for inputting logical formulas. This is the base identity for inputs:

A
not(A)
and(A, B)
or(A, B)
if(A, B)
iff(A, B)

where A and B can either be atomic statements or a functional operator. All operators are either unary (not) or binary (and, or, if, iff) and there is no support for a generalized notation. This means that and(A, B, C) will thrown an error.

Releases

No releases published

Packages

No packages published