Report Title: Quicksilver
Main Report   >   Cancellation   >   /home/ignacio/projects/fpchecker/apps/cpu_testing/quicksilver/Quicksilver-master/src/GridAssignmentObject.cc

Cancellation Report

GridAssignmentObject.cc

51 ...
52 // 1.
53 double lx = max(1., (maxCoord.x - minCoord.x));
54 double ly = max(1., (maxCoord.y - minCoord.y));
55 double lz = max(1., (maxCoord.z - minCoord.z));
56
57 ...
81 ...
82 addTupleToQueue(whichCellTuple(r));
83
84 while (_floodQueue.size() > 0)
85 ...
121 ...
122{
123 int ix = (r.x-_corner.x)/_dx;
124 int iy = (r.y-_corner.y)/_dy;
125 int iz = (r.z-_corner.z)/_dz;
126 ix = max(0, ix);
127 ...