include/utilities/types.h
author Dmitriy Morozov <morozov@cs.duke.edu>
Sun, 02 Mar 2008 16:11:05 -0500
branchar
changeset 83 cf653a5a2d4f
parent 25 25ae830bdcc7
child 97 0a9bd3f34419
permissions -rw-r--r--
Small logging additions + maintain_lazy = false + eventqueue - Filtration::transpose( ..., maintain_lazy = false ) - EventQueue inserts a new event after all the ones equal to it, not before

#ifndef __TYPES_H__
#define __TYPES_H__

#include <limits>

/* Types */
typedef 	bool					Sign;
typedef		unsigned 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__