lemon/path.h
changeset 956 141f9c0db4a3
parent 868 76689f2fc02d
child 1024 745312f9b441
child 1146 a5810903ed28
     1.1 --- a/lemon/path.h	Wed Mar 17 12:35:52 2010 +0100
     1.2 +++ b/lemon/path.h	Sat Mar 06 14:35:12 2010 +0000
     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-2010
     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    }