|
SoPlex Doxygen Documentation
|
Go to the documentation of this file.
36 METHOD( "SPxSolver::writeState()" );
42 ofname = std::string(filename) + ".set";
43 ofs.open(ofname.c_str());
47 std::stringstream table, commandline;
49 << "Delta = " << std::setw(8) << delta()
58 << std::endl << std::endl
66 #ifdef PARTIAL_PRICING
73 << std::endl << std::endl;
76 << "bin/soplex -g0 -s0"
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";
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";
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();
118 ofname = std::string(filename) + ".mps";
119 ofs.open(ofname.c_str());
123 writeMPS(ofs, rowNames, colNames, NULL);
127 ofname = std::string(filename) + ".bas";
|