lemon/glpk.h
branch1.1
changeset 1081 f1398882a928
parent 900 5100072d83ca
     1.1 --- a/lemon/glpk.h	Fri Aug 05 09:33:42 2011 +0200
     1.2 +++ b/lemon/glpk.h	Mon Aug 08 12:36:16 2011 +0200
     1.3 @@ -2,7 +2,7 @@
     1.4   *
     1.5   * This file is a part of LEMON, a generic C++ optimization library.
     1.6   *
     1.7 - * Copyright (C) 2003-2008
     1.8 + * Copyright (C) 2003-2011
     1.9   * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    1.10   * (Egervary Research Group on Combinatorial Optimization, EGRES).
    1.11   *
    1.12 @@ -30,7 +30,7 @@
    1.13    namespace _solver_bits {
    1.14      class VoidPtr {
    1.15      private:
    1.16 -      void *_ptr;      
    1.17 +      void *_ptr;
    1.18      public:
    1.19        VoidPtr() : _ptr(0) {}
    1.20  
    1.21 @@ -38,8 +38,8 @@
    1.22        VoidPtr(T* ptr) : _ptr(reinterpret_cast<void*>(ptr)) {}
    1.23  
    1.24        template <typename T>
    1.25 -      VoidPtr& operator=(T* ptr) { 
    1.26 -        _ptr = reinterpret_cast<void*>(ptr); 
    1.27 +      VoidPtr& operator=(T* ptr) {
    1.28 +        _ptr = reinterpret_cast<void*>(ptr);
    1.29          return *this;
    1.30        }
    1.31  
    1.32 @@ -123,13 +123,13 @@
    1.33          freeEnv();
    1.34        }
    1.35      };
    1.36 -    
    1.37 +
    1.38      static FreeEnvHelper freeEnvHelper;
    1.39  
    1.40    protected:
    1.41 -    
    1.42 +
    1.43      int _message_level;
    1.44 -    
    1.45 +
    1.46    public:
    1.47  
    1.48      ///Pointer to the underlying GLPK data structure.