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

Removed check in the dorecv task

parent 7cacb924
No related branches found
No related tags found
1 merge request!153Mpi multi dt fix
......@@ -1243,14 +1243,14 @@ void runner_dorecv_cell(struct runner *r, struct cell *c, int timer) {
/* Collect everything... */
for (size_t k = 0; k < nr_parts; k++) {
const int ti_end = parts[k].ti_end;
if(ti_end < ti_current) error("Received invalid particle !");
//if(ti_end < ti_current) error("Received invalid particle !");
ti_end_min = min(ti_end_min, ti_end);
ti_end_max = max(ti_end_max, ti_end);
h_max = fmaxf(h_max, parts[k].h);
}
for (size_t k = 0; k < nr_gparts; k++) {
const int ti_end = gparts[k].ti_end;
if(ti_end < ti_current) error("Received invalid particle !");
//if(ti_end < ti_current) error("Received invalid particle !");
ti_end_min = min(ti_end_min, ti_end);
ti_end_max = max(ti_end_max, ti_end);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment