Skip to content
Snippets Groups Projects
Commit a614a343 authored by Pedro Gonnet's avatar Pedro Gonnet
Browse files

Merge branch 'size_t' of gitlab.cosma.dur.ac.uk:swift/swiftsim into size_t

Conflicts:
	examples/main.c
parents 1783cab7 4070cda1
No related branches found
No related tags found
2 merge requests!136Master,!114size_t
...@@ -414,7 +414,7 @@ int main(int argc, char *argv[]) { ...@@ -414,7 +414,7 @@ int main(int argc, char *argv[]) {
message("space %s periodic.", s.periodic ? "is" : "isn't"); message("space %s periodic.", s.periodic ? "is" : "isn't");
message("highest-level cell dimensions are [ %i %i %i ].", s.cdim[0], message("highest-level cell dimensions are [ %i %i %i ].", s.cdim[0],
s.cdim[1], s.cdim[2]); s.cdim[1], s.cdim[2]);
message("%zd parts in %i cells.", s.nr_parts, s.tot_cells); message("%zi parts in %i cells.", s.nr_parts, s.tot_cells);
message("maximum depth is %d.", s.maxdepth); message("maximum depth is %d.", s.maxdepth);
// message( "cutoffs in [ %g %g ]." , s.h_min , s.h_max ); fflush(stdout); // message( "cutoffs in [ %g %g ]." , s.h_min , s.h_max ); fflush(stdout);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment