SoPlex Doxygen Documentation
spxio.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 
17 //#define DEBUGGING 1
18 
19 #include <iostream>
20 #include <assert.h>
21 #include <string.h>
22 
23 #include "spxdefines.h"
24 #include "spxlp.h"
25 
26 #include "dvector.h"
27 #include "dataarray.h"
28 #include "lprow.h"
29 #include "lpcol.h"
30 #include "lprowset.h"
31 #include "lpcolset.h"
32 #include "nameset.h"
33 #include "spxout.h"
34 #include "spxfileio.h"
35 
36 namespace soplex
37 {
38 /**@param is input stream.
39  * @param rowNames contains after the call the names of the constraints
40  * (rows) in the same order as the rows in the LP.
41  * Constraints without a name (only possible with LPF
42  * files) are automatically assigned a name.
43  * Maybe 0 if the names are not needed.
44  * @param colNames contains after the call the names of the variables
45  * (columns) in the same order as the columns in the LP.
46  * Maybe 0 if the names are not needed.
47  * @param intVars contains after the call the indices of those variables
48  * that where marked as beeing integer in the file.
49  * Maybe 0 if the information is not needed.
50  * @todo Make sure the Id's in the NameSet%s are the same as in the LP.
51  */
52 bool SPxLP::read(std::istream& is,
53  NameSet* rowNames,
54  NameSet* colNames,
55  DIdxSet* intVars)
56 {
57  bool ok;
58  char c;
59 
60  is.get(c);
61  is.putback(c);
62 
63  /* MPS starts either with a comment mark '*' or with the keyword
64  * 'NAME' at the first column.
65  * LPF starts either with blanks, a comment mark '\' or with
66  * the keyword "MAX" or "MIN" in upper or lower case.
67  * There is no possible valid LPF file starting with a '*' or 'N'.
68  */
69  ok = ((c == '*') || (c == 'N'))
70  ? readMPS(is, rowNames, colNames, intVars)
71  : readLPF(is, rowNames, colNames, intVars);
72 
73  MSG_DEBUG( spxout << "DSPXIO01\n" << *this; );
74 
75  return ok;
76 }
77 
78 
80  const char* filename,
81  NameSet* rowNames,
82  NameSet* colNames,
83  DIdxSet* intVars)
84 {
85  METHOD( "SPxLP::readFile()" );
86 
87  spxifstream file(filename);
88 
89  if (!file)
90  return false;
91 
92  return read(file, rowNames, colNames, intVars);
93 }
94 
95 
96 /** write loaded LP to \p filename
97  */
98 void SPxLP::writeFile(const char* filename,
99  const NameSet* rowNames,
100  const NameSet* colNames,
101  const DIdxSet* p_intvars ) const
102 {
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] == '.')
106  {
107  writeMPS(tmp, rowNames, colNames, p_intvars);
108  }
109  else
110  {
111  writeLPF(tmp, rowNames, colNames, p_intvars);
112  }
113 }
114 
115 } // namespace soplex
116 
117 //-----------------------------------------------------------------------------
118 //Emacs Local Variables:
119 //Emacs mode:c++
120 //Emacs c-basic-offset:3
121 //Emacs tab-width:8
122 //Emacs indent-tabs-mode:nil
123 //Emacs End:
124 //-----------------------------------------------------------------------------