|
SoPlex Doxygen Documentation
|
Go to the documentation of this file.
34 const char* indicator,
36 const char* name1 = 0,
37 const Real value1 = 0.0,
38 const char* name2 = 0,
39 const Real value2 = 0.0)
43 sprintf(buf, " %-2.2s %-8.8s",
44 (indicator == 0) ? "" : indicator,
45 (name == 0) ? "" : name);
51 sprintf(buf, " %-8.8s %12.9g", name1, value1);
56 sprintf(buf, " %-8.8s %12.9g", name2, value2);
85 assert(idx < lp. nRows());
92 return (*rnames)[key];
94 sprintf(buf, "C%d", idx);
107 assert(idx < lp. nCols());
113 if (cnames-> has(key))
114 return (*cnames)[key];
116 sprintf(buf, "x%d", idx);
125 std::ostream& p_output,
133 const char* indicator;
137 bool has_ranges = false;
142 p_output << "NAME MPSDATA" << std::endl;
145 p_output << "ROWS" << std::endl;
147 for(i = 0; i < nRows(); i++)
168 p_output << "COLUMNS" << std::endl;
170 bool has_intvars = (p_intvars != 0) && (p_intvars-> size() > 0);
172 for( int j = 0; j < (has_intvars ? 2 : 1); j++)
174 bool is_intrun = has_intvars && (j == 1);
177 p_output << " MARK0001 'MARKER' 'INTORG'"
180 for(i = 0; i < nCols(); i++)
182 bool is_intvar = has_intvars && (p_intvars-> number(i) >= 0);
184 if ( ( is_intrun && !is_intvar)
185 || (!is_intrun && is_intvar))
189 int colsize2 = (col. size() / 2) * 2;
191 assert(colsize2 % 2 == 0);
193 for(k = 0; k < colsize2; k += 2)
201 if (colsize2 != col. size())
212 p_output << " MARK0001 'MARKER' 'INTEND'"
216 p_output << "RHS" << std::endl;
224 for(; i < nRows(); i++)
230 for(k = i + 1; k < nRows(); k++)
252 p_output << "RANGES" << std::endl;
254 for(i = 0; i < nRows(); i++)
261 p_output << "BOUNDS" << std::endl;
263 for(i = 0; i < nCols(); i++)
294 if (has_intvars && (p_intvars-> number(i) >= 0))
312 p_output << "ENDATA" << std::endl;
317 MSG_WARNING( spxout << "XMPSWR03 Warning: objective function inverted when writing maximization problem in MPS file format" << std::endl; )
|