COIN-OR::LEMON - Graph Library

Changeset 467:ba49101c9b07 in lemon


Ignore:
Timestamp:
01/08/09 18:10:42 (15 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Phase:
public
Message:

Update to 2009 plus whitespace unification

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/radix_sort.h

    r466 r467  
    33 * This file is a part of LEMON, a generic C++ optimization library.
    44 *
    5  * Copyright (C) 2003-2008
     5 * Copyright (C) 2003-2009
    66 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    77 * (Egervary Research Group on Combinatorial Optimization, EGRES).
     
    349349          std::copy(buffer + length, buffer + 2 * length, first);
    350350        }        else {
    351           signedStableRadixIntroSort(buffer + length, buffer + 2 * length, 
     351          signedStableRadixIntroSort(buffer + length, buffer + 2 * length,
    352352                                     buffer, sizeof(Value) - 1, functor);
    353353          std::copy(buffer, buffer + length, first);
     
    361361
    362362    template <typename Value, typename Iterator, typename Functor>
    363     void stableRadixUnsignedSort(Iterator first, Iterator last, 
     363    void stableRadixUnsignedSort(Iterator first, Iterator last,
    364364                                 Functor functor) {
    365365      if (first == last) return;
  • test/radix_sort_test.cc

    r466 r467  
    33 * This file is a part of LEMON, a generic C++ optimization library.
    44 *
    5  * Copyright (C) 2003-2008
     5 * Copyright (C) 2003-2009
    66 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    77 * (Egervary Research Group on Combinatorial Optimization, EGRES).
Note: See TracChangeset for help on using the changeset viewer.