oops, error in line 47
This commit is contained in:
parent
995cb2bd4a
commit
3937dd0fd6
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ void compare(F & _eo1, F & _eo2)
|
||||||
{
|
{
|
||||||
if (_eo1.dominates(_eo2))
|
if (_eo1.dominates(_eo2))
|
||||||
cout << _eo1 << " dominates " << _eo2 << endl;
|
cout << _eo1 << " dominates " << _eo2 << endl;
|
||||||
else if (_eo2.dominates(_eo2))
|
else if (_eo2.dominates(_eo1))
|
||||||
cout << _eo2 << " dominates " << _eo1 << endl;
|
cout << _eo2 << " dominates " << _eo1 << endl;
|
||||||
else
|
else
|
||||||
cout << "None of " << _eo1 << " and " << _eo2 << "dominates the other" << endl;
|
cout << "None of " << _eo1 << " and " << _eo2 << "dominates the other" << endl;
|
||||||
|
|
|
||||||
Reference in a new issue