SoPlex Doxygen Documentation
spxwritestate.cpp
Go to the documentation of this file.
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2 /* */
3 /* This file is part of the class library */
4 /* SoPlex --- the Sequential object-oriented simPlex. */
5 /* */
6 /* Copyright (C) 1996-2012 Konrad-Zuse-Zentrum */
7 /* fuer Informationstechnik Berlin */
8 /* */
9 /* SoPlex is distributed under the terms of the ZIB Academic Licence. */
10 /* */
11 /* You should have received a copy of the ZIB Academic License */
12 /* along with SoPlex; see the file COPYING. If not email to soplex@zib.de. */
13 /* */
14 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
15 
16 #include <iostream>
17 #include <fstream>
18 #include <string>
19 #include <sstream>
20 
21 #include "spxdefines.h"
22 #include "spxsolver.h"
23 #include "spxpricer.h"
24 #include "spxratiotester.h"
25 #include "spxstarter.h"
26 #include "slinsolver.h"
27 #include "slufactor.h"
28 
29 namespace soplex
30 {
32  const char* filename,
33  const NameSet* rowNames,
34  const NameSet* colNames ) const
35 {
36  METHOD( "SPxSolver::writeState()" );
37 
38  std::string ofname;
39  std::ofstream ofs;
40 
41  // write parameter settings
42  ofname = std::string(filename) + ".set";
43  ofs.open(ofname.c_str());
44  if (!ofs)
45  return false;
46 
47  std::stringstream table, commandline;
48  table
49  << "Delta = " << std::setw(8) << delta()
50  << std::endl
51  << "Epsilon Zero = " << std::setw(8) << Param::epsilon()
52  << std::endl
53  << "Epsilon Factor = " << std::setw(8) << Param::epsilonFactorization()
54  << std::endl
55  << "Epsilon Update = " << std::setw(8) << Param::epsilonUpdate()
56  << std::endl
57  << "Verbosity = " << std::setw(8) << Param::verbose()
58  << std::endl << std::endl
59  << "Algorithm = " << (type() == SPxSolver::ENTER ? "Entering" : "Leaving")
60  << std::endl
61  << "Representation = " << (rep() == SPxSolver::ROW ? "Row" : "Column")
62  << std::endl
63  << "Update = " << slinSolver()->getName()
64  << std::endl
65  << "Pricer = " << pricer()->getName()
66 #ifdef PARTIAL_PRICING
67  << " (partial, size = " << MAX_PRICING_CANDIDATES << ")"
68 #endif
69  << std::endl
70  << "Starter = " << ((starter() == 0) ? "no" : starter()->getName())
71  << std::endl
72  << "Ratiotest = " << ratiotester()->getName()
73  << std::endl << std::endl;
74 
75  commandline
76  << "bin/soplex -g0 -s0"
77  << " -f" << feastol()
78  << " -o" << opttol()
79  << (type() == SPxSolver::ENTER ? " -e" : "")
80  << (rep() == SPxSolver::ROW ? " -r" : "")
81  << (!strcmp(slinSolver()->getName(), "SLU-Eta") ? " -i" : "");
82  if (!strcmp(pricer()->getName(), "Dantzig"))
83  commandline << " -p0";
84  else if (!strcmp(pricer()->getName(), "ParMult"))
85  commandline << " -p1";
86  else if (!strcmp(pricer()->getName(), "Devex"))
87  commandline << " -p2";
88  else if (!strcmp(pricer()->getName(), "Hybrid"))
89  commandline << " -p3";
90  else if (!strcmp(pricer()->getName(), "Steep"))
91  commandline << " -p4";
92  else if (!strcmp(pricer()->getName(), "Weight"))
93  commandline << " -p5";
94  else if (!strcmp(pricer()->getName(), "SteepEx"))
95  commandline << " -p6";
96  if (starter() != 0)
97  {
98  if (!strcmp(starter()->getName(), "Weight"))
99  commandline << " -s1";
100  else if (!strcmp(starter()->getName(), "Sum"))
101  commandline << " -s2";
102  else if (!strcmp(starter()->getName(), "Vector"))
103  commandline << " -s3";
104  }
105  if (!strcmp(ratiotester()->getName(), "Default"))
106  commandline << " -t0";
107  else if (!strcmp(ratiotester()->getName(), "Harris"))
108  commandline << " -t1";
109  else if (!strcmp(ratiotester()->getName(), "Fast"))
110  commandline << " -t2";
111  else if (!strcmp(ratiotester()->getName(), "Bound Flipping"))
112  commandline << " -t3";
113  commandline << " -br " << filename << ".mps " << filename << ".bas";
114  ofs << "SoPlex Parameters:\n\n" << table.str() << "Command line > " << commandline.str();
115  ofs.close();
116 
117  // write LP
118  ofname = std::string(filename) + ".mps";
119  ofs.open(ofname.c_str());
120  if (!ofs)
121  return false;
122 
123  writeMPS(ofs, rowNames, colNames, NULL);
124  ofs.close();
125 
126  // write basis
127  ofname = std::string(filename) + ".bas";
128  return writeBasisFile(ofname.c_str(), rowNames, colNames);
129 }
130 
131 } // namespace soplex
132 
133 
134 //-----------------------------------------------------------------------------
135 //Emacs Local Variables:
136 //Emacs mode:c++
137 //Emacs c-basic-offset:3
138 //Emacs tab-width:8
139 //Emacs indent-tabs-mode:nil
140 //Emacs End:
141 //-----------------------------------------------------------------------------