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) • 418 B
TypeScript
import type { PropFormula } from "../../models";
/**
* Converts a propositional formula into a string representation using Unicode logical symbols.
*
* @param {PropFormula} formula - The propositional formula to convert.
* @returns {string} The string representation of the formula using Unicode glyphs.
* @category Converters
*/
export declare function convertPropFormulaToString(formula: PropFormula): string;