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

    Interface ReasoningTree

    A reasoning tree containing nodes organized hierarchically. Each tree explores one approach to solving the problem.

    interface ReasoningTree {
        id: string;
        forestId: string;
        rootId: string;
        nodes: ReadonlyMap<string, ReasoningNode>;
        state: TreeState;
        overallScore: number;
        explorationPriority: number;
        hypothesis: string;
        bestPaths: readonly PathScore[];
        statistics: TreeStatistics;
        createdAt: number;
        updatedAt: number;
    }
    Index

    Properties

    id: string

    Unique tree identifier

    forestId: string

    ID of the forest this tree belongs to

    rootId: string

    Root node ID

    nodes: ReadonlyMap<string, ReasoningNode>

    All nodes in this tree (id -> node)

    state: TreeState

    Current state of the tree

    overallScore: number

    Overall tree score for ranking (0-1)

    explorationPriority: number

    Priority for exploration (higher = explore first)

    hypothesis: string

    Tree hypothesis or approach description

    bestPaths: readonly PathScore[]

    Best path(s) found in this tree

    statistics: TreeStatistics

    Tree statistics

    createdAt: number

    Creation timestamp

    updatedAt: number

    Last update timestamp