verify
Check a logical expression and receive a verdict: VALID, INVALID, or UNDECIDED with a reason code. The expression is normalized and logged in an append-only ledger without LLM involvement.
Instructions
Verify one expression. Returns a three-valued verdict (VALID / INVALID / UNDECIDED) with a reason_code when UNDECIDED. No LLM anywhere on the judgment path (spec §1.1). The expression is normalized and recorded in the append-only refutation ledger (spec §4).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | Optional context (axioms, imports, prior definitions). Backend-defined semantics. | |
| expression | Yes | The expression to judge. | |
| timeout_ms | No | Hard timeout in milliseconds. Overrun → UNDECIDED/TIMEOUT. Default: 5000. |