name: NBestNode

synopsis:


g++ [flags ...] file ... -l /isip/tools/lib/$ISIP_BINARY/lib_search.a

#include <NBestNode.h>

boolean setSymbolNode(SymbolGraphNode* arg);
SymbolGraphNode* getSymbolNode() const;
boolean setPrevNode(NBestNode* arg);
NBestNode* getPrevNode() const;
boolean setPathScore(float arg);
float getPathScore() const;
quick start:


NBestNode nnode;
float path_score = 50.0;

nnode.setPathScore(path_score);
SymbolGraphNode* symbol_node = nnode.getSymbolNode();

description:

This class represents the constituent element used to construct the N-Best path, which is generated by the recognizer.

dependencies:

public constants:

error codes:

protected data:

required public methods:

class-specific public methods:

private methods:

examples:

notes: