nexus-agents - v2.80.0
    Preparing search index...

    Interface HigherOrderVotingResult

    Result of Bayesian aggregation with correlation awareness.

    interface HigherOrderVotingResult {
        decision: "approve" | "reject" | "no_consensus";
        posteriorApproval: number;
        posteriorRejection: number;
        effectiveVoteCount: number;
        usedCorrelationData: boolean;
        method: "simple" | "ow" | "isp";
        improvementOverBaseline: number;
        independentSubsets?: readonly IndependentSubset[];
        downweightedAgents: readonly string[];
        reasoning: string;
    }
    Index

    Properties

    decision: "approve" | "reject" | "no_consensus"

    Final decision

    posteriorApproval: number

    Posterior probability of approval

    posteriorRejection: number

    Posterior probability of rejection

    effectiveVoteCount: number

    Effective number of independent votes

    usedCorrelationData: boolean

    Whether correlation data was sufficient

    method: "simple" | "ow" | "isp"

    Method used: 'ow' (opinion-wise), 'isp', or 'simple' (fallback)

    improvementOverBaseline: number

    Improvement over baseline majority voting (percentage points)

    independentSubsets?: readonly IndependentSubset[]

    Independent subsets used (if ISP method)

    downweightedAgents: readonly string[]

    Agents whose votes were down-weighted due to correlation

    reasoning: string

    Reasoning for the decision