Skip to content
Snippets Groups Projects
Commit c900b14e authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Cleaned-up unnecessary constants

parent cf0b83ef
No related branches found
No related tags found
2 merge requests!136Master,!79First version of the multiple time-stepping
...@@ -27,9 +27,6 @@ ...@@ -27,9 +27,6 @@
/* Forward declaration of space, needed for cell_unpack. */ /* Forward declaration of space, needed for cell_unpack. */
struct space; struct space;
/* Some constants. */
#define cell_sid_dt 13
/* Max tag size set to 2^29 to take into account some MPI implementations /* Max tag size set to 2^29 to take into account some MPI implementations
* that use 2^31 as the upper bound on MPI tags and the fact that * that use 2^31 as the upper bound on MPI tags and the fact that
* cell_next_tag is multiplied by 2 when passed to an MPI function. * cell_next_tag is multiplied by 2 when passed to an MPI function.
......
...@@ -29,13 +29,11 @@ struct engine; ...@@ -29,13 +29,11 @@ struct engine;
/* Some constants. */ /* Some constants. */
#define space_maxdepth 10 #define space_maxdepth 10
#define space_cellallocchunk 1000 #define space_cellallocchunk 1000
#define space_splitratio 0.875f
#define space_splitsize_default 400 #define space_splitsize_default 400
#define space_maxsize_default 8000000 #define space_maxsize_default 8000000
#define space_subsize_default 8000000 #define space_subsize_default 8000000
#define space_stretch 1.10f #define space_stretch 1.10f
#define space_maxreldx 0.25f #define space_maxreldx 0.25f
#define space_qstack 2048
/* Split size. */ /* Split size. */
extern int space_splitsize; extern int space_splitsize;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment