Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

void Write ( RandomTree tree,
RandomTreeTable table 
) [friend]

Writes the tree to the end of the table.

Definition at line 158 of file RandomTree.h.

00159 {
00160     table->Add(tree->mCodeWord, tree->mSplitDimension, tree->mSplitValue);
00161     if(tree->mCodeWord == -1)
00162     {
00163         Write(tree->mLeft, table);
00164         Write(tree->mRight, table);
00165     }
00166 }


Generated on Fri Mar 19 11:10:37 2010 for ImpalaSrc by  doxygen 1.5.1