include/geometry/number-traits.h
author Dmitriy Morozov <dmitriy@mrzv.org>
Wed, 06 Jun 2012 23:15:57 -0700
branchdev
changeset 259 84c100980206
parent 19 efa14432761a
permissions -rw-r--r--
Fixed bugs in diagram.py and adaptor.py + added coloring of points in show_complex_2D(); Filtration can be initialized from iterator without comparison

#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