Home || Visual Search || Applications || Architecture || 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 Thu Jan 13 09:19:29 2011 for ImpalaSrc by  doxygen 1.5.1