Skip to content

Commit

Permalink
fix compile error due to so -> structure rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Soeren Sonnenburg committed Jun 19, 2012
1 parent c16fde6 commit c000355
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
Expand Up @@ -8,8 +8,8 @@
* Copyright (C) 2012 Michal Uricar
*/

#include <shogun/so/DualLibQPBMSOSVM.h>
#include <shogun/so/libbmrm.h>
#include <shogun/structure/DualLibQPBMSOSVM.h>
#include <shogun/structure/libbmrm.h>

using namespace shogun;

Expand All @@ -22,7 +22,7 @@ CDualLibQPBMSOSVM::CDualLibQPBMSOSVM(
CStructuredModel* model,
CLossFunction* loss,
CStructuredLabels* labs,
CFeatures* features,
CDotFeatures* features,
float64_t lambda)
:CLinearStructuredOutputMachine(model, loss, labs, features)
{
Expand Down
Expand Up @@ -12,7 +12,7 @@
#define _DUALLIBQPBMSOSVM__H__

#include <shogun/machine/LinearStructuredOutputMachine.h>
#include <shogun/so/RiskFunction.h>
#include <shogun/structure/RiskFunction.h>

namespace shogun
{
Expand All @@ -26,7 +26,7 @@ class CDualLibQPBMSOSVM : public CLinearStructuredOutputMachine
/** standard constructor
*
*/
CDualLibQPBMSOSVM(CStructuredModel* model, CLossFunction* loss, CStructuredLabels* labs, CFeatures* features, float64_t lambda);
CDualLibQPBMSOSVM(CStructuredModel* model, CLossFunction* loss, CStructuredLabels* labs, CDotFeatures* features, float64_t lambda);

/** destructor */
~CDualLibQPBMSOSVM();
Expand Down
Expand Up @@ -8,7 +8,7 @@
* Copyright (C) 2012 Michal Uricar
*/

#include <shogun/so/RiskFunction.h>
#include <shogun/structure/RiskFunction.h>

using namespace shogun;

Expand Down
File renamed without changes.
Expand Up @@ -15,7 +15,7 @@
#include <string.h>
#include <math.h>

#include <shogun/so/libbmrm.h>
#include <shogun/structure/libbmrm.h>
#include <shogun/lib/external/libqp.h>

namespace shogun
Expand Down
2 changes: 1 addition & 1 deletion src/shogun/so/libbmrm.h → src/shogun/structure/libbmrm.h
Expand Up @@ -12,7 +12,7 @@
*--------------------------------------------------------------------- */

#include <shogun/lib/common.h>
#include <shogun/so/RiskFunction.h>
#include <shogun/structure/RiskFunction.h>

#ifndef libbmrm_h
#define libbmrm_h
Expand Down

0 comments on commit c000355

Please sign in to comment.