diff --git a/moeo/src/continue/moeoHypContinue.h b/moeo/src/continue/moeoHypContinue.h index f6fbac34a..228006d3a 100644 --- a/moeo/src/continue/moeoHypContinue.h +++ b/moeo/src/continue/moeoHypContinue.h @@ -73,7 +73,7 @@ public: /** Returns false when a ParetoSet is reached. */ - virtual bool operator() ( const eoPop& _pop ) + virtual bool operator() ( const eoPop& /*_pop*/ ) { std::vector bestCurrentParetoSet = pareto( arch ); @@ -143,6 +143,9 @@ protected: using moeoHypContinue::arch; using moeoHypContinue::OptimSet; + using moeoHypContinue::pareto; + using moeoHypContinue::is_null_hypervolume; + public: typedef typename MOEOT::ObjectiveVector ObjectiveVector; typedef typename ObjectiveVector::Type AtomType; @@ -174,7 +177,7 @@ public: } /** Returns false when a ParetoSet is reached. */ - virtual bool operator() ( const eoPop& _pop ) + virtual bool operator() ( const eoPop& /*_pop*/ ) { std::vector bestCurrentParetoSet = pareto( arch ); @@ -196,9 +199,6 @@ public: protected: - using moeoHypContinue::pareto; - using moeoHypContinue::is_null_hypervolume; - /** Translate a vector given as param to the ParetoSet that should be reached. */ virtual void vectorToParetoSet(const std::vector & _OptimVec) {