00001 // (C) Copyright International Business Machines Corporation 2007 00002 // All Rights Reserved. 00003 // This code is published under the Common Public License. 00004 // 00005 // Authors : 00006 // Pierre Bonami, International Business Machines Corporation 00007 // 00008 // Date : 04/12/2007 00009 00010 #include "BonPseudoCosts.hpp" 00011 00012 00013 namespace Bonmin 00014 { 00015 00016 PseudoCosts::PseudoCosts(): 00017 OsiPseudoCosts() 00018 { 00019 } 00020 00022 PseudoCosts::PseudoCosts(const PseudoCosts & rhs): 00023 OsiPseudoCosts(rhs) 00024 { 00025 } 00026 00027 00029 PseudoCosts & 00030 PseudoCosts::operator=(const PseudoCosts&rhs) 00031 { 00032 if (this != &rhs) { 00033 OsiPseudoCosts::operator=(rhs); 00034 } 00035 return *this; 00036 } 00037 00038 }/* End Bonmin namespace.*/ 00039