|
SoPlex Doxygen Documentation
|
Go to the documentation of this file.
19 #define NUM_ENTRIES_PER_LINE 5
36 const NameSet* p_rnames,
38 int p_num_written_rows)
42 assert(p_idx < p_lp.nRows());
46 DataKey key = p_lp.rId(p_idx);
48 if (p_rnames->has(key))
49 return (*p_rnames)[key];
51 sprintf(p_buf, "C%d", p_num_written_rows);
60 const NameSet* p_cnames,
65 assert(p_idx < p_lp.nCols());
69 DataKey key = p_lp.cId(p_idx);
71 if (p_cnames->has(key))
72 return (*p_cnames)[key];
74 sprintf(p_buf, "x%d", p_idx);
80 void writeSVector( const SPxLP& p_lp,
81 std::ostream& p_output,
82 const NameSet* p_cnames,
83 const SVector& p_svec )
90 for ( int j = 0; j < p_lp.nCols(); ++j)
92 const Real coeff = p_svec[j];
97 p_output << coeff << " "
106 p_output << " - " << -coeff;
108 p_output << " + " << coeff;
110 p_output << " " << getColName(p_lp, j, p_cnames, name);
117 void writeObjective( const SPxLP& p_lp,
118 std::ostream& p_output,
119 const NameSet* p_cnames )
123 const int sense = p_lp.spxSense();
125 p_output << ((sense == SPxLP::MINIMIZE) ? "Minimize\n" : "Maximize\n");
126 p_output << " obj: ";
128 const Vector& obj = p_lp.maxObj();
129 DSVector svec(obj.dim());
132 writeSVector(p_lp, p_output, p_cnames, svec);
137 void writeRow( const SPxLP& p_lp,
138 std::ostream& p_output,
139 const NameSet* p_cnames,
140 const SVector& p_svec,
146 writeSVector(p_lp, p_output, p_cnames, p_svec);
148 if ( p_lhs == p_rhs )
149 p_output << " = " << p_rhs;
151 p_output << " <= " << p_rhs;
154 p_output << " >= " << p_lhs;
161 void writeRows( const SPxLP& p_lp,
162 std::ostream& p_output,
163 const NameSet* p_rnames,
164 const NameSet* p_cnames )
169 p_output << "Subject To\n";
171 int num_written_rows = 0;
172 for ( int i = 0; i < p_lp.nRows(); ++i)
174 const Real lhs = p_lp.lhs(i);
175 const Real rhs = p_lp.rhs(i);
179 p_output << " " << getRowName(p_lp, i, p_rnames,
180 name, ++num_written_rows) << "_1 : ";
181 writeRow (p_lp, p_output, p_cnames, p_lp.rowVector(i), lhs, infinity);
183 p_output << " " << getRowName(p_lp, i, p_rnames,
184 name, ++num_written_rows) << "_2 : ";
185 writeRow (p_lp, p_output, p_cnames, p_lp.rowVector(i), - infinity, rhs);
188 p_output << " " << getRowName(p_lp, i, p_rnames,
189 name, ++num_written_rows) << " : ";
190 writeRow (p_lp, p_output, p_cnames, p_lp.rowVector(i), lhs, rhs);
197 void writeBounds( const SPxLP& p_lp,
198 std::ostream& p_output,
199 const NameSet* p_cnames )
204 p_output << "Bounds\n";
205 for ( int j = 0; j < p_lp.nCols(); ++j)
207 const Real lower = p_lp.lower(j);
208 const Real upper = p_lp.upper(j);
210 if (lower == upper) {
211 p_output << " " << getColName(p_lp, j, p_cnames, name)
212 << " = " << upper << '\n';
218 p_output << " " << lower << " <= "
220 << " <= " << upper << '\n';
222 p_output << " " << getColName(p_lp, j, p_cnames, name)
223 << " <= " << upper << '\n';
226 p_output << " " << lower << " <= "
231 p_output << " -Inf <= "
233 << " <= " << upper << '\n';
235 p_output << " " << getColName(p_lp, j, p_cnames, name)
241 void writeGenerals( const SPxLP& p_lp,
242 std::ostream& p_output,
243 const NameSet* p_cnames,
244 const DIdxSet* p_intvars )
249 if (p_intvars == NULL || p_intvars->size() <= 0)
252 p_output << "Generals\n";
253 for ( int j = 0; j < p_lp.nCols(); ++j)
254 if (p_intvars->number(j) >= 0)
255 p_output << " " << getColName(p_lp, j, p_cnames, name) << "\n";
268 writeObjective (* this, p_output, p_cnames);
269 writeRows (* this, p_output, p_rnames, p_cnames);
270 writeBounds (* this, p_output, p_cnames);
271 writeGenerals (* this, p_output, p_cnames, p_intvars);
272 p_output << "End" << std::endl;
|