Skip to content

Commit 402311a

Browse files
committed
grammar
1 parent 5dd93c8 commit 402311a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nd/NdConverter.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ namespace nd {
88

99
struct NdConverter {
1010
// Convert a propositional natural deduction proof without premises in FitchFX format (https://github.com/mrieppel/FitchFX ; e.g. exported from https://mrieppel.github.io/FitchFX/)
11-
// to a condensed detachment proof in a specified Hilbert system, i.e. read a natural deduction proof from a file, decontextualize, then and print its proof summary.
11+
// to a condensed detachment proof in a specified Hilbert system, i.e. read a natural deduction proof from a file, decontextualize, and then print its proof summary.
1212
// Translations can be based on proof data provided by the user in another proof summary of the target system. Only basic (i.e. non-derived) FitchFX rules are supported.
1313
// NOTE: When not using the default axioms, minimal input requirements are proofs for (A1) ψ→(φ→ψ) (i.e. CpCqp) and (A2) (ψ→(φ→χ))→((ψ→φ)→(ψ→χ)) (i.e. CCpCqrCCpqCpr).
1414
// These enable support for rules →I ("conditional introduction") and →E ("conditional elimination"), but cannot prove any derivation containing negation.
1515
// When a proof for (A3) (¬ψ→¬φ)→(φ→ψ) (i.e. CCNpNqCqp) is also provided, all rules are automatically supported, as long as 'purity mode' is enabled by the user:
16-
// In this case, rules containing any operators other than "→" (i.e. C) and "¬" (i.e. N) are expressed in term of pure C-N-formulas, using the following aliases.
16+
// In this case, rules containing any operators other than "→" (i.e. C) and "¬" (i.e. N) are expressed in terms of pure C-N-formulas, using the following aliases.
1717
// (∧) (ψ∧φ):=¬(ψ→¬φ) (i.e. Kpq:=NCpNq)
1818
// (∨) (ψ∨φ):=(¬ψ→φ) (i.e. Apq:=CNpq)
1919
// (↔) (ψ↔φ):=¬((ψ→φ)→¬(φ→ψ)) (i.e. Epq:=NCCpqNCqp)

0 commit comments

Comments
 (0)