name: NGramNode

synopsis:


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

#include <NGramNode.h>

boolean setIndex(const long index);
boolean setLmScore(const float lm_score);
boolean setBackoff(const float backoff);
boolean setNextGram(HashTable<Long, NGramNode>* hash);
boolean set(const float lm_score, const float backoff);
long getIndex() const;
float getLmScore() const;
float getBackoff() const;
HashTable<Long, NGramNode>* getNextGram() const;
quick start:


NGramNode nnode_00;
HashTable ht1;

nnode_00.setNextGram(ht1);

description:

This class stores the N-gram probability.

dependencies:

public constants:

error codes:

protected data:

required public methods:

class-specific public methods:

private methods:

examples:

notes: