00001
00002
00003
00004
00005
00006
00007 #ifndef VOROPP_CONFIG_HH
00008 #define VOROPP_CONFIG_HH
00009
00010
00011 const int init_vertices=256;
00012 const int init_vertex_order=64;
00013 const int init_3_vertices=256;
00014 const int init_n_vertices=8;
00015 const int init_marginal=256;
00016 const int init_delete_size=256;
00017 const int init_delete2_size=256;
00018 const int init_facet_size=32;
00019 const int init_wall_size=32;
00020
00021
00022
00023 const int max_vertices=16777216;
00024 const int max_vertex_order=2048;
00025 const int max_n_vertices=16777216;
00026 const int max_marginal=16777216;
00027 const int max_delete_size=16777216;
00028 const int max_delete2_size=16777216;
00029 const int max_particle_memory=16777216;
00030 const int max_wall_size=2048;
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifndef VOROPP_VERBOSE
00040 #define VOROPP_VERBOSE 0
00041 #endif
00042
00043
00044
00045 #ifdef VOROPP_SINGLE_PRECISION
00046 typedef float fpoint;
00047 const fpoint tolerance=1e-5;
00048 const fpoint tolerance2=2e-5;
00049 #else
00050 typedef double fpoint;
00051 const fpoint tolerance=1e-10;
00052 const fpoint tolerance2=2e-10;
00053 #endif
00054 const fpoint large_number=1e30;
00055
00056 #endif