Measurement #1 of the field-reasoner falsifiable experiment: does the CL(4,1) field, given an honest metric encoding, read forward-substitutable quantitative-relational problems from TEXT with wrong==0? It does — 14/15 correct, 0 wrong, 1 refused (precision ceiling), scored against an independent arithmetic oracle. - generate/relational_field_reader.py: reads problem text into conformal points on the e1 number line; additive/part-whole relations are conformal TRANSLATOR versors (versor_apply(T_delta, embed[x]) == embed[x+delta], exact); the answer reads back by projective dehomogenization. Refusal-first: fences multiplicative/ratio (the sign/orientation-blind cases), the precision ceiling, non-forward-substitutable references, negatives. A per-step exactness self-check turns any f64 translator drift into a refusal (precision_drift) — it NEVER commits a wrong integer. Its parser is an independent reimplementation importing no generate.derivation/math_*. - evals/relational_metric/: independent arithmetic oracle (computes gold from the STRUCTURE, shares no code with the reader), 15-case fixture, and a runner that enforces gold integrity + wrong==0. - INV-25: relational_metric registered in INDEPENDENT_GOLD_LANES (oracle proven code-disjoint from the field reader and the algebra engine). The independently golded panel is now three domains: deductive, dimensional, relational-metric. Green: smoke 87, 53 architectural invariants, 16 new tests; deductive + dimensional lanes unperturbed (wrong=0).
78 lines
3.3 KiB
Python
78 lines
3.3 KiB
Python
"""Independent arithmetic oracle — the gold for the relational-metric lane.
|
|
|
|
This is **deliberately a second, independent decision procedure**: it computes the
|
|
answer to a forward-substitutable quantitative-relational problem by plain integer
|
|
arithmetic over the *structured* relations. It never reads problem text, and it
|
|
shares **no code** with the geometric field reader under test
|
|
(``generate.relational_field_reader``) — it imports no ``algebra`` / ``field`` /
|
|
``generate`` module. Two independent procedures (the field reader off the TEXT, the
|
|
oracle off the STRUCTURE) agreeing is real evidence the field READ the text
|
|
correctly; a shared-code "gold" would only prove the reader agrees with itself
|
|
(INV-25).
|
|
|
|
Supported relation kinds (the v1 forward-substitutable grammar):
|
|
|
|
- ``fact`` : ``entity = value`` (a given quantity)
|
|
- ``more_than`` : ``entity = ref + delta``
|
|
- ``fewer_than`` : ``entity = ref - delta``
|
|
- ``sum_of`` : ``entity = sum(parts)`` (part-whole / total)
|
|
|
|
Every relation's references must already be resolved (forward-substitutable /
|
|
triangular). The oracle refuses anything else, never guesses.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
|
|
class OracleError(ValueError):
|
|
"""Malformed or out-of-grammar case — the oracle refuses, never guesses."""
|
|
|
|
|
|
_SUPPORTED = frozenset({"fact", "more_than", "fewer_than", "sum_of"})
|
|
|
|
|
|
def oracle_answer(relations: list[dict[str, Any]], query: dict[str, Any]) -> int:
|
|
"""Compute the integer answer by forward substitution over the relations.
|
|
|
|
Raises :class:`OracleError` on an unknown relation kind, a forward reference to
|
|
an unresolved entity, a duplicate definition, or a missing query entity.
|
|
"""
|
|
values: dict[str, int] = {}
|
|
|
|
for rel in relations:
|
|
kind = rel.get("kind")
|
|
entity = rel.get("entity")
|
|
if kind not in _SUPPORTED:
|
|
raise OracleError(f"unsupported relation kind: {kind!r}")
|
|
if not isinstance(entity, str) or not entity:
|
|
raise OracleError(f"relation missing entity: {rel!r}")
|
|
if entity in values:
|
|
raise OracleError(f"duplicate definition of {entity!r}")
|
|
|
|
if kind == "fact":
|
|
value = rel.get("value")
|
|
if not isinstance(value, int) or isinstance(value, bool):
|
|
raise OracleError(f"fact value must be int: {rel!r}")
|
|
values[entity] = value
|
|
elif kind in ("more_than", "fewer_than"):
|
|
ref = rel.get("ref")
|
|
delta = rel.get("delta")
|
|
if ref not in values:
|
|
raise OracleError(f"forward reference to unresolved {ref!r}")
|
|
if not isinstance(delta, int) or isinstance(delta, bool):
|
|
raise OracleError(f"delta must be int: {rel!r}")
|
|
values[entity] = values[ref] + (delta if kind == "more_than" else -delta)
|
|
else: # sum_of
|
|
parts = rel.get("parts")
|
|
if not isinstance(parts, list) or not parts:
|
|
raise OracleError(f"sum_of needs non-empty parts: {rel!r}")
|
|
if any(p not in values for p in parts):
|
|
raise OracleError(f"sum_of references unresolved part: {rel!r}")
|
|
values[entity] = sum(values[p] for p in parts)
|
|
|
|
target = query.get("entity")
|
|
if target not in values:
|
|
raise OracleError(f"query entity {target!r} not resolved")
|
|
return values[target]
|