SoPlex Doxygen Documentation
spxfileio.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 //#define DEBUGGING 1
17 
18 #include <assert.h>
19 
20 #include "spxdefines.h"
21 #include "spxsolver.h"
22 #include "spxfileio.h"
23 
24 namespace soplex
25 {
27  const char* filename,
28  const NameSet* rowNames,
29  const NameSet* colNames)
30 {
31  METHOD( "SPxSolver::readBasisFile()" );
32 
33  spxifstream file(filename);
34 
35  if (!file)
36  return false;
37 
38  return readBasis(file, rowNames, colNames);
39 }
40 
42  ( const char* filename,
43  const NameSet* rowNames,
44  const NameSet* colNames ) const
45 {
46  METHOD( "SPxSolver::writeBasisFile()" );
47  std::ofstream file(filename);
48 
49  if (!file)
50  return false;
51 
52  writeBasis(file, rowNames, colNames);
53 
54  return true;
55 }
56 
57 } // namespace soplex
58 
59 //-----------------------------------------------------------------------------
60 //Emacs Local Variables:
61 //Emacs mode:c++
62 //Emacs c-basic-offset:3
63 //Emacs tab-width:8
64 //Emacs indent-tabs-mode:nil
65 //Emacs End:
66 //-----------------------------------------------------------------------------