/* * defs.hpp * * Constant definitons and enumerations. * * Created on: Mar 14, 2011 * Author: heber */ #ifndef LINEARALGEBRA_DEFS_HPP_ #define LINEARALGEBRA_DEFS_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #define LINALG_MYEPSILON numeric_limits::epsilon()*100. enum { NDIM = 3 }; //!< number of spatial dimensions #endif /* LINEARALGEBRA_DEFS_HPP_ */