Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members

minimum.cpp

00001 // Copyright (C) 2002, International Business Machines
00002 // Corporation and others.  All Rights Reserved.
00003 
00004 #include "ClpSimplex.hpp"
00005 int main (int argc, const char *argv[])
00006 {
00007   ClpSimplex  model;
00008   int status;
00009   if (argc<2)
00010     status=model.readMps("../../Mps/Sample/p0033.mps");
00011   else
00012     status=model.readMps(argv[1]);
00013   if (!status) {
00014     model.primal();
00015   }
00016   return 0;
00017 }    

Generated on Wed Dec 3 14:37:36 2003 for CLP by doxygen 1.3.5