Added ability to parse necessitation

This commit is contained in:
Brandon Rozek 2024-10-04 15:51:05 -04:00
parent b4b5a7d4e6
commit 46e570103f
4 changed files with 154 additions and 9 deletions

View file

@ -66,6 +66,7 @@ Negation = Operation("¬", 1)
Conjunction = Operation("", 2)
Disjunction = Operation("", 2)
Implication = Operation("", 2)
Necessitation = Operation("!", 1)
class Inequation:
def __init__(self, antecedant : Term, consequent: Term):