Revert change the removes printing of seed.

This commit is contained in:
Nick Thompson 2020-11-18 11:03:19 -05:00
parent 3b2c103397
commit 275abf2f2d
2 changed files with 2 additions and 0 deletions

@ -253,6 +253,7 @@ struct TestDerivativeFunctor
void TestDerivative() void TestDerivative()
{ {
vtkm::UInt32 seed = static_cast<vtkm::UInt32>(std::time(nullptr)); vtkm::UInt32 seed = static_cast<vtkm::UInt32>(std::time(nullptr));
std::cout << "Seed: " << seed << std::endl;
g_RandomGenerator.seed(seed); g_RandomGenerator.seed(seed);
std::cout << "======== Float32 ==========================" << std::endl; std::cout << "======== Float32 ==========================" << std::endl;

@ -207,6 +207,7 @@ struct TestPCoordsFunctor
void TestAllPCoords() void TestAllPCoords()
{ {
vtkm::UInt32 seed = static_cast<vtkm::UInt32>(std::time(nullptr)); vtkm::UInt32 seed = static_cast<vtkm::UInt32>(std::time(nullptr));
std::cout << "Seed: " << seed << std::endl;
g_RandomGenerator.seed(seed); g_RandomGenerator.seed(seed);
std::cout << "======== Float32 ==========================" << std::endl; std::cout << "======== Float32 ==========================" << std::endl;