include/geometry/number-traits.h
author Dmitriy Morozov <morozov@cs.duke.edu>
Mon, 25 Feb 2008 04:39:27 -0500
branchfitness
changeset 47 19249d6d9f2d
parent 19 efa14432761a
permissions -rw-r--r--
avida-landscape pairs maxima of fitness rather than minima

#ifndef __NUMBER_TRAITS_H__
#define __NUMBER_TRAITS_H__

template<class NumberType_>
class number_traits
{
	public:
		typedef							NumberType_									NumberType;

		static NumberType&				normalize(NumberType& n)					{ return n; }
};

#endif