added a method to get the value of a dual fitness

This commit is contained in:
nojhan 2010-11-19 21:02:35 +01:00
commit 6912ea41b6

View file

@ -108,6 +108,11 @@ public:
return _is_feasible;
}
inline BaseType value() const
{
return _value;
}
//! Copy operator from a std::pair
eoDualFitness& operator=(const std::pair<BaseType,bool>& v)
{