SoPlex Doxygen Documentation
spxout.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 #include "spxout.h"
17 #include "exceptions.h"
18 
19 namespace soplex
20 {
21  /// constructor
23  : m_verbosity( ERROR )
24  , m_streams( new std::ostream*[ INFO3+1 ] )
25  {
26  m_streams[ ERROR ] = m_streams[ WARNING ] = &std::cerr;
27  for ( int i = DEBUG; i <= INFO3; ++i )
28  m_streams[ i ] = &std::cout;
29  }
30 
31  //---------------------------------------------------
32 
33  // destructor
35  {
36  delete [] m_streams;
37  }
38 
39  //---------------------------------------------------
40 
41  // define global instance
43 
44 } // namespace soplex
45 
46 //-----------------------------------------------------------------------------
47 //Emacs Local Variables:
48 //Emacs mode:c++
49 //Emacs c-basic-offset:3
50 //Emacs tab-width:8
51 //Emacs indent-tabs-mode:nil
52 //Emacs End:
53 //-----------------------------------------------------------------------------