UNPKG

chop-logic-core

Version:

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

12 lines (11 loc) 433 B
import type { PropFormula } from "../../../models"; /** * Generates a formula based on the Implication Introduction axiom schema. * * Given two formulas A and B, this function returns the formula: * (A => (B => A)). * * @param formulas - An array of propositional formulas. * @returns A new formula representing (A => (B => A)). */ export declare function implicationIntroductionSchema(formulas: PropFormula[]): PropFormula;