| 1 |
< |
#define OOPSE_VERSION_MAJOR 3 |
| 1 |
> |
#define OOPSE_VERSION_MAJOR 4 |
| 2 |
|
#define OOPSE_VERSION_MINOR 0 |
| 3 |
< |
#define OOPSE_VERSION_TINY 1 |
| 3 |
> |
#define OOPSE_VERSION_TINY 0 |
| 4 |
|
/* The version of Open Babel */ |
| 5 |
< |
#define BABEL_VERSION "2.0.0rc1" |
| 5 |
> |
#define BABEL_VERSION "2.0.2" |
| 6 |
|
#define MK_STR(s) # s |
| 7 |
|
#define STR_DEFINE(t, s) t = MK_STR(s) |
| 8 |
|
/* The file extension used for shared modules */ |
| 33 |
|
|
| 34 |
|
/* Is defined if the CGAL library is available. */ |
| 35 |
|
#undef HAVE_CGAL |
| 36 |
+ |
|
| 37 |
+ |
/* Is defined if the qhull library is available. */ |
| 38 |
+ |
#undef HAVE_QHULL |
| 39 |
|
|
| 40 |
|
/* Define to 1 if the system has the type `clock_t'. */ |
| 41 |
|
#undef HAVE_CLOCK_T |
| 378 |
|
|
| 379 |
|
/* Define to `unsigned' if <sys/types.h> does not define. */ |
| 380 |
|
#undef size_t |
| 381 |
+ |
|
| 382 |
+ |
#ifdef SINGLE_PRECISION |
| 383 |
+ |
typedef float RealType; |
| 384 |
+ |
#ifdef IS_MPI |
| 385 |
+ |
#define MPI_REALTYPE MPI_FLOAT |
| 386 |
+ |
#endif |
| 387 |
+ |
#else |
| 388 |
+ |
typedef double RealType; |
| 389 |
+ |
#ifdef IS_MPI |
| 390 |
+ |
#define MPI_REALTYPE MPI_DOUBLE |
| 391 |
+ |
#endif |
| 392 |
+ |
#endif |