include/geometry/number-traits.h
author Dmitriy Morozov <dmitriy@mrzv.org>
Wed, 03 Feb 2010 11:20:40 -0800
branchdev
changeset 194 6c2a98fb8990
parent 19 efa14432761a
permissions -rw-r--r--
Removed a buggy assertion in LSVineard::transpose_vertices() (j points at the end() when moving the last simplex of the filtration)

#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