From 1046d561adafbb8b23f98a7d7f934ac79452e8f6 Mon Sep 17 00:00:00 2001
From: Lukas Werner <lks.werner@fau.de>
Date: Sun, 18 Mar 2018 11:42:34 +0100
Subject: [PATCH] Small function rename

---
 tests/pe/Raytracing.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/pe/Raytracing.cpp b/tests/pe/Raytracing.cpp
index dd2179d08..ada6fc675 100644
--- a/tests/pe/Raytracing.cpp
+++ b/tests/pe/Raytracing.cpp
@@ -336,7 +336,7 @@ ShadingParameters customSpheresBodyToShadingParams(const BodyID body) {
    }
 }
 
-void RaytracerSpheresTest(Raytracer::Algorithm raytracingAlgorithm = Raytracer::RAYTRACE_HASHGRIDS, const std::string& outputFolder = ".") {
+void RaytracerSpheresTestScene(Raytracer::Algorithm raytracingAlgorithm = Raytracer::RAYTRACE_HASHGRIDS, const std::string& outputFolder = ".") {
    WALBERLA_LOG_INFO("Raytracer Spheres Scene");
    shared_ptr<BodyStorage> globalBodyStorage = make_shared<BodyStorage>();
    shared_ptr<BlockForest> forest = createBlockForest(AABB(0,0,0,10,10,10), Vector3<uint_t>(1,1,1), Vector3<bool>(false, false, false));
@@ -858,7 +858,7 @@ int main( int argc, char** argv )
    const Raytracer::Algorithm algorithm = Raytracer::RAYTRACE_COMPARE_BOTH_STRICTLY;
 
    RaytracerTest(algorithm, outputFolder);
-   RaytracerSpheresTest(algorithm, outputFolder);
+   //RaytracerSpheresTestScene(algorithm, outputFolder);
    HashGridsTestScene(algorithm, outputFolder);
    HashGridsTest(algorithm, outputFolder, 50, 30, 130, 10);
    HashGridsTest(algorithm, outputFolder,
-- 
GitLab