00001 // Copyright (C) 2000, International Business Machines 00002 // Corporation and others. All Rights Reserved. 00003 00004 #include "BCP_solution.hpp" 00005 #include "BCP_var.hpp" 00006 00007 void 00008 BCP_solution_generic::display() const 00009 { 00010 const int num = _vars.size(); 00011 for (int i = 0; i < num; ++i) { 00012 _vars[i]->display(_values[i]); 00013 } 00014 }