SoPlex Doxygen Documentation
mpsinput.h
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 /**@file mpsinput.h
17  * @brief Read MPS format files.
18  */
19 #ifndef _MPSINPUT_H_
20 #define _MPSINPUT_H_
21 
22 #include <iostream>
23 
24 #include "spxlp.h"
25 
26 
27 namespace soplex
28 {
29 
30 /**@class MPSInput
31 
32  Reads MPS input files. A right-hand side for the objective function is
33  allowed but ignored.
34  */
35 class MPSInput
36 {
37 public:
38 
39  //-----------------------------------
40  /**@name Types */
41  //@{
42  ///
43  enum Section
44  {
46  };
47  ///
48  enum { MAX_LINE_LEN = 256 };
49  //@}
50 
51 private:
52 
53  //-----------------------------------
54  /**@name Private data */
55  //@{
56  ///
58  /// the input stream from which the file is read
59  std::istream& m_input;
60  /// line number
61  int m_lineno;
62  /// objctive sense (maximization or minimization)
64  /// is set to \c true upon a syntax error
66  /// the line buffer
68  /// first field in a line
69  const char* m_f0;
70  /// second field in a line
71  const char* m_f1;
72  /// third field in a line
73  const char* m_f2;
74  /// fourth field in a line
75  const char* m_f3;
76  /// fifth field in a line
77  const char* m_f4;
78  /// sixth field in a line
79  const char* m_f5;
80  /// problem name
82  /// objective name
84  ///
86  /// new MPS format?
88  /// Number of already ignored entries.
89  int m_ignored;
90  /// Maximal number of ignored entries for which a warning will be issued.
91  static const int m_max_ignore = 1000;
92  //@}
93 
94 public:
95 
96  //-----------------------------------
97  /**@name Construction / destruction */
98  //@{
99  ///
100  explicit
101  MPSInput( std::istream& p_input )
102  : m_section ( NAME )
103  , m_input ( p_input )
104  , m_lineno ( 0 )
105  , m_objsense ( SPxLP::MINIMIZE )
106  , m_has_error ( false )
107  , m_is_integer ( false )
108  , m_is_new_format ( false )
109  , m_ignored ( 0 )
110  {
111  m_f0 = m_f1 = m_f2 = m_f3 = m_f4 = m_f5 = 0;
112 
113  m_buf [0] = '\0';
114  m_probname[0] = '\0';
115  m_objname [0] = '\0';
116  }
117  ///
118  virtual
120  {
121  // only to signal to flexelint that the pointers do
122  // not point to anything that has to be freed.
123  m_f0 = m_f1 = m_f2 = m_f3 = m_f4 = m_f5 = 0;
124  }
125  //@}
126 
127  //-----------------------------------
128  /**@name Access */
129  //@{
130  ///
131  Section section() const { return m_section; }
132  ///
133  int lineno() const { return m_lineno; }
134  ///
135  const char* field0() const { return m_f0; }
136  ///
137  const char* field1() const { return m_f1; }
138  ///
139  const char* field2() const { return m_f2; }
140  ///
141  const char* field3() const { return m_f3; }
142  ///
143  const char* field4() const { return m_f4; }
144  ///
145  const char* field5() const { return m_f5; }
146  ///
147  const char* probName() const { return m_probname; }
148  ///
149  const char* objName() const { return m_objname; }
150  ///
151  SPxLP::SPxSense objSense() const { return m_objsense; }
152  ///
153  bool hasError() const { return m_has_error; }
154  ///
155  bool isInteger() const { return m_is_integer; }
156  //@}
157 
158  //-----------------------------------
159  /**@name Modification */
160  //@{
161  ///
162  void setSection(Section p_section)
163  {
164  m_section = p_section;
165  }
166  ///
167  void setProbName(const char* p_probname)
168  {
169  assert(strlen(p_probname) < MAX_LINE_LEN);
170  strcpy(m_probname, p_probname);
171  }
172  ///
173  void setObjName(const char* p_objname)
174  {
175  assert(strlen(p_objname) < MAX_LINE_LEN);
176  strcpy(m_objname, p_objname);
177  }
178  ///
180  {
181  m_objsense = sense;
182  }
183  //@}
184 
185  //-----------------------------------
186  /**@name Warnings and Errors */
187  //@{
188  ///
189  void syntaxError()
190  {
191  MSG_ERROR( spxout << "Syntax error in line " << m_lineno << std::endl; )
192  m_section = ENDATA;
193  m_has_error = true;
194  }
195  ///
197  const char* what, const char* what_name,
198  const char* entity, const char* entity_name)
199  {
200  if ( m_ignored < m_max_ignore )
201  {
202  MSG_WARNING( spxout << "Warning: line " << m_lineno << ": "
203  << what << " \"" << what_name << "\""
204  << " for " << entity << " \""
205  << entity_name << "\" ignored" << std::endl; )
206  ++m_ignored;
207 
208  if ( m_ignored == m_max_ignore )
209  MSG_WARNING( spxout << "Warning: This was the " << m_max_ignore << " ignored entry. No further warnings on "
210  << "ignored entries will be given." << std::endl; )
211  }
212  }
213  //@}
214 
215  //-----------------------------------
216  /**@name Helpers */
217  //@{
218  /// reads an MPS format data line and parse the fields.
219  bool readLine();
220  /// Inserts \p name as field 1 and shifts all other fields up.
221  void insertName( const char* name,
222  bool second = false );
223  //@}
224 };
225 } // namespace soplex
226 #endif // _MPSINPUT_H_
227 
228 //-----------------------------------------------------------------------------
229 //Emacs Local Variables:
230 //Emacs mode:c++
231 //Emacs c-basic-offset:3
232 //Emacs tab-width:8
233 //Emacs indent-tabs-mode:nil
234 //Emacs End:
235 //-----------------------------------------------------------------------------
236