lemon/path.h
branch1.1
changeset 1081 f1398882a928
parent 868 76689f2fc02d
child 1145 98b306776b25
     1.1 --- a/lemon/path.h	Fri Aug 05 09:33:42 2011 +0200
     1.2 +++ b/lemon/path.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-2009
     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 @@ -966,20 +966,20 @@
    1.13        }
    1.14      };
    1.15  
    1.16 -    
    1.17 +
    1.18      template <typename From, typename To,
    1.19                bool revEnable = RevPathTagIndicator<From>::value>
    1.20      struct PathCopySelector {
    1.21        static void copy(const From& from, To& to) {
    1.22          PathCopySelectorForward<From, To>::copy(from, to);
    1.23 -      }      
    1.24 +      }
    1.25      };
    1.26  
    1.27      template <typename From, typename To>
    1.28      struct PathCopySelector<From, To, true> {
    1.29        static void copy(const From& from, To& to) {
    1.30          PathCopySelectorBackward<From, To>::copy(from, to);
    1.31 -      }      
    1.32 +      }
    1.33      };
    1.34  
    1.35    }