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

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

Definition at line 289 of file Svm.h.

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

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

00290     {
00291         if (mModel==0 && other->mModel==0)
00292             return true;
00293         if (mModel==0 || other->mModel==0)
00294             return false;
00295 
00296         return Training::Equals(mModel, other->mModel);
00297     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:21:20 2011 for ImpalaSrc by  doxygen 1.5.1