Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface ProofNode

    A proof tree node. Each node is an inference rule application. Leaves are axioms or assumptions. Internal nodes are rule applications.

    interface ProofNode {
        conclusion: Proposition;
        hash: string;
        id: string;
        premises: ProofNode[];
        rule: InferenceRule;
        verified: boolean;
    }
    Index
    conclusion: Proposition

    The proposition being proved at this step

    hash: string

    Hash of the proof subtree (for tamper detection)

    id: string

    Unique id for this proof step

    premises: ProofNode[]

    Premises (sub-proofs) that this step depends on

    The inference rule applied

    verified: boolean

    Whether this step is verified