include/geometry/number-traits.h
author Christos Mantoulidis <cmad@stanford.edu>
Tue, 28 Jul 2009 15:04:06 -0700
branchdev
changeset 155 1dde8a05fcd7
parent 19 efa14432761a
permissions -rw-r--r--
Added rips-weighted-cohomology, and channeled WeightedRips logging to the same channel as Rips

#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