BonPseudoCosts.cpp
Go to the documentation of this file.
1 // (C) Copyright International Business Machines Corporation 2007
2 // All Rights Reserved.
3 // This code is published under the Eclipse Public License.
4 //
5 // Authors :
6 // Pierre Bonami, International Business Machines Corporation
7 //
8 // Date : 04/12/2007
9 
10 #include "BonPseudoCosts.hpp"
11 
12 
13 namespace Bonmin
14 {
15 
17  OsiPseudoCosts()
18  {
19  }
20 
23  OsiPseudoCosts(rhs)
24  {
25  }
26 
27 
29  PseudoCosts &
31  {
32  if (this != &rhs) {
33  OsiPseudoCosts::operator=(rhs);
34  }
35  return *this;
36  }
37 
38 }/* End Bonmin namespace.*/
39 
PseudoCosts & operator=(const PseudoCosts &rhs)
Assignment operator const version.
PseudoCosts()
Default constructor.