Fix particle advection error

This commit is contained in:
Abhishek Yenpure 2017-09-15 13:07:39 -04:00
parent 8db5c1988c
commit d30c795c08

@ -168,7 +168,7 @@ void RunTest(const std::string& fname,
else
{
vtkm::worklet::Streamline streamline;
streamline.Run(rk4, seedArray, fieldArray, numSteps, DeviceAdapter());
streamline.Run(rk4, seedArray, numSteps, DeviceAdapter());
}
auto t1 = std::chrono::high_resolution_clock::now() - t0;