-
Notifications
You must be signed in to change notification settings - Fork 2
Calculate a formula in tableaux method
George Plotnikov edited this page May 3, 2021
·
4 revisions
let frm = Formula.Impl(Conj(Var "P", Var "Q"), Bic(Var "R", Neg(Var "S")))
let formulaCalcList = BuildFormulaCalcList frm |> List.sortBy(fun f -> CalcFormulaDepth f)
formulaCalcList |> List.map VerboseFormula |> List.iter(fun f -> printf "%s\t" f)
let formulaInterpritations = BuildAllFormulasInterpritations formulaCalcList
...
Functions