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

int Impala::Core::Training::Svm::Diff ( const Svm other  )  const [inline]

Definition at line 309 of file Svm.h.

References Impala::Core::Vector::Diff(), and mModel.

Referenced by Impala::Core::Training::Diff(), ReferenceDiff(), Impala::Core::Training::TestSvm::testDiffLength(), Impala::Core::Training::TestSvm::testDiffParams(), Impala::Core::Training::TestSvm::testDiffProb(), and Impala::Core::Training::TestSvm::testDiffRest().

00310     {
00311         if (mModel==0 && other->mModel==0)
00312             return 0;
00313         if (mModel==0 || other->mModel==0)
00314             return 1;
00315         return Impala::Diff(mModel, other->mModel);
00316     }

Here is the call graph for this function:


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