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

bool Impala::Core::Training::Svm::Equals ( const Svm other  )  const [inline]

Definition at line 294 of file Svm.h.

References Impala::Core::Training::Equals(), and mModel.

Referenced by Impala::Core::Training::Equals().

00295     {
00296         if(mModel==0 && other->mModel==0)
00297             return true;
00298         if(mModel==0 || other->mModel==0)
00299             return false;
00300 
00301         return Training::Equals(mModel, other->mModel);
00302     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:24:02 2010 for ImpalaSrc by  doxygen 1.5.1