|
SoPlex Doxygen Documentation
|
Go to the documentation of this file.
69 ok = ((c == '*') || (c == 'N'))
70 ? readMPS(is, rowNames, colNames, intVars)
71 : readLPF(is, rowNames, colNames, intVars);
85 METHOD( "SPxLP::readFile()" );
92 return read(file, rowNames, colNames, intVars);
101 const DIdxSet* p_intvars ) const
103 std::ofstream tmp(filename);
104 size_t len_f = strlen(filename);
105 if (len_f > 4 && filename[len_f-1] == 's' && filename[len_f-2] == 'p' && filename[len_f-3] == 'm' && filename[len_f-4] == '.')
107 writeMPS(tmp, rowNames, colNames, p_intvars);
111 writeLPF(tmp, rowNames, colNames, p_intvars);
|