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

    Interface FormalProperty

    interface FormalProperty {
        category: "safety" | "liveness" | "fairness" | "invariant";
        description: string;
        id: string;
        name: string;
        predicate: (state: SystemState) => boolean;
        proofStrategy: "case_split" | "exhaustive" | "inductive" | "compositional";
        temporal: "always" | "eventually" | "leads_to";
        tlaSpec: string;
    }
    Index
    category: "safety" | "liveness" | "fairness" | "invariant"
    description: string
    id: string
    name: string
    predicate: (state: SystemState) => boolean
    proofStrategy: "case_split" | "exhaustive" | "inductive" | "compositional"

    Formal proof strategy

    temporal: "always" | "eventually" | "leads_to"
    tlaSpec: string

    TLA+ specification text