include/utilities/types.h
author Dmitriy Morozov <morozov@cs.duke.edu>
Wed, 15 Aug 2007 11:52:17 -0400
changeset 55 7e71f5984931
parent 20 7bf6aa6b0ab6
child 25 25ae830bdcc7
permissions -rw-r--r--
tests/geometry now match the include/ breakup and are switched to CMake

#ifndef __TYPES_H__
#define __TYPES_H__

#include <limits>

/* Types */
typedef 	bool					Sign;
typedef		short int				Dimension;
const 		Sign	 				POS = true;
const 		Sign					NEG = false;
typedef		double					RealType;
typedef		unsigned int			SizeType;

static RealType Infinity = std::numeric_limits<RealType>::infinity();

typedef 	const unsigned int&		version_type;

#endif // __TYPES_H__