UNPKG

chop-logic-core

Version:

Core classes, methods and functions for calculating logical formulas and constructing proofs within the Chop Logic project.

10 lines (9 loc) 388 B
import type { PropFormula } from "../../../models"; /** * Constructs a formula based on the Implication Reversal axiom schema: * ((~A => ~B) => (B => A)) * * @param formulas - An array of propositional formulas. * @returns A new propositional formula representing the implication reversal. */ export declare function implicationReversalSchema(formulas: PropFormula[]): PropFormula;