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

    Interface Forest

    A forest of reasoning trees with sparse activation. Coordinates multiple parallel reasoning approaches.

    interface Forest {
        id: string;
        problem: string;
        trees: ReadonlyMap<string, ReasoningTree>;
        state: ForestState;
        bestPaths: readonly PathScore[];
        crossTreeInfo: CrossTreeInfo;
        statistics: ForestStatistics;
        activationBudget: number;
        activeTreeIds: readonly string[];
        createdAt: number;
        updatedAt: number;
    }
    Index

    Properties

    id: string

    Unique forest identifier

    problem: string

    Problem being solved

    trees: ReadonlyMap<string, ReasoningTree>

    All trees in the forest (id -> tree)

    Current state of the forest

    bestPaths: readonly PathScore[]

    Best paths across all trees

    crossTreeInfo: CrossTreeInfo

    Cross-tree shared information

    statistics: ForestStatistics

    Forest-wide statistics

    activationBudget: number

    Maximum number of active nodes (sparse activation budget)

    activeTreeIds: readonly string[]

    Currently active tree IDs

    createdAt: number

    Creation timestamp

    updatedAt: number

    Last update timestamp