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

Done implementing vectorization test.

parent d7e1dbef
Branches
Tags
1 merge request!64Agreed upon version of the density vectorization test
......@@ -43,6 +43,10 @@ struct cell *make_cell(size_t n, double *offset, double h,
cell->split = 0;
cell->h_max = h;
cell->count = count;
cell->dx_max = 1.;
cell->h[0] = n;
cell->h[1] = n;
cell->h[2] = n;
cell->sort = malloc(13 * count * sizeof *cell->sort);
runner_dosort(NULL, cell, 0x1FFF, 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment