You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A logical solver based on resolution by refutation. It determines whether a set of clauses, expressed in simplified conjunctive normal form (CNF), is satisfiable or not. In addition to be able to simplify a formula expressed in propositional language into CNF.
resolution refutation is method of finding whether the given antecedent implies the consequent or not, it could also be used to check validity of the expressions.
Performs normal form conversions of propositional formulas through the use of syntax trees, and provides 3 sat-solver algorithms with verifiable step-by-step output.