chop-logic-core
Version:
Core classes, methods and functions for calculating logical formulas and constructing proofs within the Chop Logic project.
13 lines (12 loc) • 588 B
TypeScript
import type { PropFormula } from "../../models";
/**
* Checks if negation elimination is applicable to all given formulas.
*
* Negation elimination states that if we have a double negation, we can remove it.
* This function verifies whether each formula in the array has exactly two negations at the top level.
*
* @param formulas - An array of propositional formulas to check.
* @returns `true` if all formulas contain exactly two negations, otherwise `false`.
* @category Validators
*/
export declare function isNegationEliminationApplicable(formulas: PropFormula[]): boolean;