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

    Interface ForestStatistics

    Statistics about forest exploration.

    interface ForestStatistics {
        totalTrees: number;
        activeTrees: number;
        totalNodes: number;
        totalActiveNodes: number;
        maxDepth: number;
        bestPathScore: number;
        avgTreeScore: number;
        totalTokensUsed: number;
        totalExplorationTimeMs: number;
        activationRatio: number;
    }
    Index

    Properties

    totalTrees: number

    Total number of trees

    activeTrees: number

    Number of active trees

    totalNodes: number

    Total nodes across all trees

    totalActiveNodes: number

    Total active nodes across all trees

    maxDepth: number

    Maximum depth across all trees

    bestPathScore: number

    Best path score found

    avgTreeScore: number

    Average tree score

    totalTokensUsed: number

    Total tokens used

    totalExplorationTimeMs: number

    Total exploration time in ms

    activationRatio: number

    Activation ratio (active nodes / total nodes)