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) 427 B
import type { PropExpression, PropFormula } from "../../models"; /** * Converts a propositional formula into its corresponding expression representation. * * @param {PropFormula} formula - The propositional formula to convert. * @returns {PropExpression} The expression representation of the formula. * @category Converters */ export declare function convertPropFormulaToExpression(formula: PropFormula): PropExpression;