Skip to content

Commit

Permalink
Many major changes
Browse files Browse the repository at this point in the history
- created new helper function prove
- renamed Prover to Environment
- Environment now only stores assumptions
  • Loading branch information
Vipul-Cariappa committed Oct 24, 2023
1 parent c1d53a1 commit e74eefa
Show file tree
Hide file tree
Showing 3 changed files with 304 additions and 304 deletions.
14 changes: 12 additions & 2 deletions logic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
"""Logic is a predicate logic simulator and a automated prover"""

from .proof import Proof, Prover
from .proof import Environment, Proof, prove
from .proposition import AND, IFF, IMPLY, NOT, OR, Proposition

__all__ = ["Proposition", "Proof", "Prover", "IMPLY", "IFF", "AND", "OR", "NOT"]
__all__ = [
"Proposition",
"Proof",
"Environment",
"prove",
"IMPLY",
"IFF",
"AND",
"OR",
"NOT",
]
Loading

0 comments on commit e74eefa

Please sign in to comment.