Print changed
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1634 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
22f6a92661
commit
40a38a2230
1 changed files with 3 additions and 4 deletions
|
|
@ -165,10 +165,9 @@ class moeoRealObjectiveVector : public moeoObjectiveVector < ObjectiveVectorTrai
|
|||
template < class ObjectiveVectorTraits >
|
||||
std::ostream & operator<<(std::ostream & _os, const moeoRealObjectiveVector < ObjectiveVectorTraits > & _objectiveVector)
|
||||
{
|
||||
for (unsigned int i=0; i<_objectiveVector.size(); i++)
|
||||
{
|
||||
_os << _objectiveVector[i] << '\t';
|
||||
}
|
||||
for (unsigned int i=0; i<_objectiveVector.size()-1; i++)
|
||||
_os << _objectiveVector[i] << " ";
|
||||
_os << _objectiveVector[_objectiveVector.size()-1];
|
||||
return _os;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue