Skip to content

Commit

Permalink
Moved rejectionstrategy
Browse files Browse the repository at this point in the history
  • Loading branch information
lisitsyn committed Apr 29, 2012
1 parent 686b412 commit 549fddc
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
3 changes: 3 additions & 0 deletions src/interfaces/modular/Classifier.i
Expand Up @@ -54,6 +54,8 @@
%rename(SVMLight) CSVMLight;
#endif //USE_SVMLIGHT

%rename(ThresholdRejectionStrategy) CThresholdRejectionStrategy;
%rename(DixonQTestRejectionStrategy) CDixonQTestRejectionStrategy;
%rename(MulticlassStrategy) CMulticlassStrategy;
%rename(MulticlassOneVsRestStrategy) CMulticlassOneVsRestStrategy;
%rename(MulticlassOneVsOneStrategy) CMulticlassOneVsOneStrategy;
Expand Down Expand Up @@ -105,6 +107,7 @@
%include <shogun/classifier/vw/VowpalWabbit.h>
%include <shogun/classifier/svm/NewtonSVM.h>

%include <shogun/multiclass/RejectionStrategy.h>
%include <shogun/multiclass/MulticlassStrategy.h>
%include <shogun/multiclass/MulticlassOneVsRestStrategy.h>
%include <shogun/multiclass/MulticlassOneVsOneStrategy.h>
Expand Down
1 change: 1 addition & 0 deletions src/interfaces/modular/Classifier_includes.i
Expand Up @@ -34,6 +34,7 @@
#include <shogun/classifier/vw/VowpalWabbit.h>
#include <shogun/classifier/svm/NewtonSVM.h>

#include <shogun/multiclass/RejectionStrategy.h>
#include <shogun/multiclass/MulticlassStrategy.h>
#include <shogun/multiclass/MulticlassOneVsRestStrategy.h>
#include <shogun/multiclass/MulticlassOneVsOneStrategy.h>
Expand Down
3 changes: 0 additions & 3 deletions src/interfaces/modular/Features.i
Expand Up @@ -33,8 +33,6 @@
%rename(CombinedFeatures) CCombinedFeatures;
%rename(CombinedDotFeatures) CCombinedDotFeatures;
%rename(Labels) CLabels;
%rename(RejectionStrategy) CRejectionStrategy;
%rename(ThresholdReject) CThresholdReject;
%rename(RealFileFeatures) CRealFileFeatures;
%rename(FKFeatures) CFKFeatures;
%rename(TOPFeatures) CTOPFeatures;
Expand Down Expand Up @@ -360,7 +358,6 @@ namespace shogun
%include <shogun/features/CombinedDotFeatures.h>

%include <shogun/features/Labels.h>
%include <shogun/features/RejectionStrategy.h>
%include <shogun/features/RealFileFeatures.h>
%include <shogun/features/FKFeatures.h>
%include <shogun/features/TOPFeatures.h>
Expand Down
1 change: 0 additions & 1 deletion src/interfaces/modular/Features_includes.i
Expand Up @@ -19,7 +19,6 @@
#include <shogun/features/CombinedFeatures.h>
#include <shogun/features/CombinedDotFeatures.h>
#include <shogun/features/Labels.h>
#include <shogun/features/RejectionStrategy.h>
#include <shogun/features/RealFileFeatures.h>
#include <shogun/features/FKFeatures.h>
#include <shogun/features/TOPFeatures.h>
Expand Down
2 changes: 1 addition & 1 deletion src/shogun/multiclass/MulticlassStrategy.h
Expand Up @@ -13,7 +13,7 @@

#include <shogun/base/SGObject.h>
#include <shogun/features/Labels.h>
#include <shogun/features/RejectionStrategy.h>
#include <shogun/multiclass/RejectionStrategy.h>

namespace shogun
{
Expand Down
File renamed without changes.

0 comments on commit 549fddc

Please sign in to comment.