Skip to content

Commit

Permalink
fix converter_jade_bss example
Browse files Browse the repository at this point in the history
  • Loading branch information
gsomix committed Sep 23, 2013
1 parent 1e75c96 commit 27deaee
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions examples/undocumented/libshogun/converter_jade_bss.cpp
Expand Up @@ -11,20 +11,21 @@

#include <shogun/base/init.h>
#include <shogun/lib/common.h>
#include <shogun/features/DenseFeatures.h>

#include <iostream>

using namespace shogun;

#ifdef HAVE_EIGEN3

#include <shogun/features/DenseFeatures.h>
#include <shogun/mathematics/Math.h>
#include <shogun/mathematics/eigen3.h>

#include <shogun/converter/ica/Jade.h>
#include <shogun/evaluation/ica/PermutationMatrix.h>
#include <shogun/evaluation/ica/AmariIndex.h>

using namespace shogun;
using namespace Eigen;

void test()
Expand Down Expand Up @@ -99,15 +100,16 @@ void test()
return;
}

#endif // HAVE_EIGEN3

int main(int argc, char ** argv)
{
init_shogun_with_defaults();

#ifdef HAVE_EIGEN3
test();

#endif // HAVE_EIGEN3
exit_shogun();

return 0;
}

#endif //HAVE_EIGEN3
}

0 comments on commit 27deaee

Please sign in to comment.