An automated reasoner for the Non-Monotonic Multi-Succedent (NMMS) sequent calculus from Hlobil & Brandom 2025, Ch. 3.
Project description
pyNMMS
An automated reasoner for the Non-Monotonic Multi-Succedent (NMMS) sequent calculus from Hlobil & Brandom 2025, Ch. 3.
Documentation | PyPI | GitHub
Installation
pip install pyNMMS
For development:
git clone https://github.com/bradleypallen/pyNMMS.git
cd pyNMMS
pip install -e ".[dev]"
Quick Start
from pynmms import MaterialBase, NMMSReasoner
# Create a material base with defeasible inferences
base = MaterialBase(
language={"A", "B", "C"},
consequences={
(frozenset({"A"}), frozenset({"B"})), # A |~ B
(frozenset({"B"}), frozenset({"C"})), # B |~ C
},
)
reasoner = NMMSReasoner(base)
# A derives B (base consequence)
result = reasoner.derives(frozenset({"A"}), frozenset({"B"}))
assert result.derivable # True
# A does NOT derive C (nontransitivity — no [Mixed-Cut])
result = reasoner.derives(frozenset({"A"}), frozenset({"C"}))
assert not result.derivable # False
# A, C does NOT derive B (nonmonotonicity — no [Weakening])
result = reasoner.derives(frozenset({"A", "C"}), frozenset({"B"}))
assert not result.derivable # False
# Classical tautologies still hold (supraclassicality)
result = reasoner.derives(frozenset(), frozenset({"A | ~A"}))
assert result.derivable # True
CLI
# Create a base and add consequences
pynmms tell -b base.json --create "A |~ B"
pynmms tell -b base.json "B |~ C"
# Query derivability
pynmms ask -b base.json "A => B" # DERIVABLE
pynmms ask -b base.json "A => C" # NOT DERIVABLE
pynmms ask -b base.json "A, C => B" # NOT DERIVABLE
# Interactive REPL
pynmms repl -b base.json
Restricted Quantifiers (Experimental)
The pynmms.rq subpackage is an experimental extension of propositional NMMS with ALC-style restricted quantifiers, avoiding issues Hlobil identifies with unrestricted quantification in nonmonotonic settings.
from pynmms.rq import RQMaterialBase, NMMSRQReasoner
base = RQMaterialBase(
language={
"hasChild(alice,bob)", "hasChild(alice,carol)",
"Happy(bob)", "Doctor(carol)",
},
consequences={
(frozenset({"hasChild(alice,bob)", "Doctor(bob)"}),
frozenset({"ParentOfDoctor(alice)"})),
(frozenset({"hasChild(alice,carol)", "Doctor(carol)"}),
frozenset({"ParentOfDoctor(alice)"})),
},
)
r = NMMSRQReasoner(base, max_depth=20)
# ALL hasChild.Doctor(alice) with trigger bob
r.query(
frozenset({"ALL hasChild.Doctor(alice)", "hasChild(alice,bob)"}),
frozenset({"ParentOfDoctor(alice)"}),
) # True
# SOME hasChild.Doctor(alice) with known witness carol
r.query(
frozenset({"hasChild(alice,carol)", "Doctor(carol)"}),
frozenset({"SOME hasChild.Doctor(alice)"}),
) # True
# CLI with --rq flag
pynmms tell -b rq_base.json --create --rq "atom hasChild(alice,bob)"
pynmms ask -b rq_base.json --rq "ALL hasChild.Doctor(alice), hasChild(alice,bob) => ParentOfDoctor(alice)"
pynmms repl --rq
Key Properties
- Nonmonotonicity: Adding premises can defeat inferences (no Weakening)
- Nontransitivity: Chaining good inferences can yield bad ones (no Mixed-Cut)
- Supraclassicality: All classically valid sequents are derivable
- Conservative Extension: Logical vocabulary doesn't change base-level relations
- Explicitation Conditions: DD, II, AA, SS biconditionals hold
Implementation
Proof search strategy
The reasoner uses root-first backward proof search with memoization and backtracking. This is related to but distinct from the deterministic proof-search procedure in Definition 20 of the Ch. 3 appendix. Definition 20 specifies a deterministic decomposition: find the first complex sentence (alphabetically, left side first), apply the corresponding rule, repeat until all leaves are atomic, then check axioms. Our implementation instead tries each complex sentence in sorted order with backtracking — if decomposing one sentence fails to produce a proof, it backtracks and tries the next. Both approaches are correct because all NMMS rules are invertible (Proposition 27): if a sequent is derivable, any order of rule application will find the proof. Our approach adds memoization and depth-limiting as practical safeguards.
- 8 Ketonen-style propositional rules with third top sequent (compensates for working with sets rather than multisets, per Proposition 21)
- Memoization keyed on
(frozenset, frozenset)pairs; cycle detection via pre-marking entries asFalsebefore recursion - Depth-limited (default 25) to guarantee termination
- Deterministic rule application order (sorted iteration) for reproducible results
Design decisions
- Propositional core with experimental restricted quantifiers (
ALL R.C,SOME R.C) inpynmms.rqsubpackage - Sets (frozensets), not multisets — Contraction is built in (per Proposition 21)
- Sentences represented as strings, parsed on demand by a recursive descent parser producing frozen
Sentencedataclass AST nodes - Base consequences use exact syntactic match — no subset/superset matching, which is what enforces the no-Weakening property
- Containment (Γ ∩ Δ ≠ ∅) checked automatically as an axiom schema
- No runtime dependencies beyond the Python standard library
Known limitations
- Depth limit can cause false negatives for deeply nested valid sequents
- No incremental/persistent cache between queries
- Multi-premise rules ([L→], [L∨], [R∧]) each generate 3 subgoals, giving worst-case exponential branching
- Flat proof trace only — no structured proof tree or proof certificates
- Formula strings re-parsed at each proof step (no pre-compilation)
- Does not implement NMMS\ctr (contraction-free variant, Section 3.2.3), Monotonicity Box (□, Section 3.3.1), or classicality operator (⌈cl⌉, Section 3.3.2)
Test suite
554 tests across 20 test files:
- Propositional core (273 tests): Syntax parsing, MaterialBase construction/serialization, individual rule correctness, axiom derivability, structural properties (nonmonotonicity, nontransitivity, supraclassicality, DD/II/AA/SS), soundness audit, CLI integration, logging/tracing, Ch. 3 worked examples, Hypothesis property-based tests, cross-validation against ROLE.jl ground truth
- Restricted quantifiers (experimental, 281 tests): RQ sentence parsing, RQMaterialBase construction/validation/schemas, individual rule correctness for all 4 quantifier rules, structural properties with quantifiers, soundness probes, concept/inference schemas with lazy evaluation, CLI
--rqintegration, RQ demo scenario equivalence (all 10 original demo scenarios), RQ logging/tracing
Theoretical Background
This implements the NMMS sequent calculus from:
- Hlobil, U., & Brandom, R. B. (2025). Reasons for logic, logic for reasons: Pragmatics, semantics, and conceptual roles. Routledge.
NMMS codifies open reason relations — consequence relations where Monotonicity and Transitivity can fail. The material base encodes defeasible material inferences among atomic sentences, and the Ketonen-style logical rules extend this to compound sentences while preserving nonmonotonicity.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pynmms-0.3.0.tar.gz.
File metadata
- Download URL: pynmms-0.3.0.tar.gz
- Upload date:
- Size: 76.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c46ccd4ddfb93a9c0748037559088ccf210bfd0ae1960e8c77574ed13a30843
|
|
| MD5 |
bc557eab3349cba0e8b46c48d4d732cf
|
|
| BLAKE2b-256 |
7be4daf168426f528354414e06c71180ee9e05b306eac70cc4c17de47824c29d
|
File details
Details for the file pynmms-0.3.0-py3-none-any.whl.
File metadata
- Download URL: pynmms-0.3.0-py3-none-any.whl
- Upload date:
- Size: 32.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a9d5d9f08ba636adfa25b2e81a1a0f8f760f9aa2e7e85ddd1c7a377a2527251
|
|
| MD5 |
eb7c1d589538784890b4cd321ea49a67
|
|
| BLAKE2b-256 |
55b5bf1dd8ae576da01258f86ae04bf16123611af97d0d81981c911f255ceedd
|