An open API service indexing awesome lists of open source software.

https://github.com/matheus-hrm/logic-proofs

Propositional logic deduction tool
https://github.com/matheus-hrm/logic-proofs

Last synced: 2 months ago
JSON representation

Propositional logic deduction tool

Awesome Lists containing this project

README

        

# Logic Proof Checker

A Haskell program for checking logical proofs using natural deduction rules.

## Prerequisites

- GHC (Glasgow Haskell Compiler)
- Cabal

## Installation

1. Clone the repository
2. Run `cabal build`

## Usage

Run the program:
```bash
cabal run
```

# Project structure
```
src/
├── Rules/
│ ├── Conditionals.hs
│ ├── Conjunctions.hs
│ ├── Disjunctions.hs
│ └── Biconditionals.hs
├── Types.hs
├── ProofEngine.hs
├── UI.hs
└── Main.hs
```