Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/algorithm.c

    rb4cd03b7 r5721a6d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // algorithm.c --
     7// algorithm.c -- 
    88//
    99// Author           : Peter A. Buhr
    1010// Created On       : Thu Jan 28 17:10:29 2016
    11 // Last Modified By : Rob Schluntz
    12 // Last Modified On : Thu Feb 04 17:19:12 2016
    13 // Update Count     : 54
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Mon Feb  1 13:42:05 2016
     13// Update Count     : 52
    1414//
    1515
    1616#include "algorithm"
    1717
    18 forall( type T | { int ?<?( const T, const T ); } )
     18forall( type T | { int ?<?( T, T ); } )
    1919T min( const T t1, const T t2 ) {
    2020        return t1 < t2 ? t1 : t2;
    2121} // min
    2222
    23 forall( type T | { int ?>?( const T, const T ); } )
     23forall( type T | { int ?>?( T, T ); } )
    2424T max( const T t1, const T t2 ) {
    2525        return t1 > t2 ? t1 : t2;
Note: See TracChangeset for help on using the changeset viewer.