The system tracks claim provenance through three independent boolean flags—parametric recall, grounded research, and human verification—to maintain an auditable ledger during the reconciliation of memory gaps.

flowchart LR
    subgraph Sources [Evidence Sources]
        P[Parametric Probe] -->|parametric| C[Claim Entry]
        G[Grounded Engine] -->|grounded| C
        H[Human Review] -->|human| C
    end

    subgraph States [Claim Verdict]
        C --> V{Assign Verdict}
        V -->|Parametric Only| U[Unverified]
        V -->|Parametric + Grounded Match| CR[Correct]
        V -->|Parametric + Grounded Conflict| IC[Incorrect]
        V -->|Grounded Only| GP[Gap]
    end