commit 36f65b547bc49db897e63499a21c6b079b021dcd
parent 7f1984d4ba8b6aac656fb33d2bb09147f46af297
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Thu, 21 Sep 2017 15:01:41 +0200
Merge branch 'release_0.5' into develop
Diffstat:
2 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
@@ -26,6 +26,13 @@ variable the install directories of its dependencies.
## Release notes
+### Version 0.5
+
+- Improve the performances up to 50% by optimising the allocation of the BSDF
+ during the radiative random walk. Performance gains are mainly observed in
+ situations where the radiative paths are deep, i.e. when they bounce on many
+ surfaces.
+
### Version 0.4.2
- Energy conservation property might not be ensured when the radiative paths
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -50,8 +50,8 @@ rcmake_append_runtime_dirs(_runtime_dirs RSys Star3D Star3DUT StarCPR StarSF Sta
# Configure and define targets
################################################################################
set(VERSION_MAJOR 0)
-set(VERSION_MINOR 4)
-set(VERSION_PATCH 2)
+set(VERSION_MINOR 5)
+set(VERSION_PATCH 0)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
set(SSOL_FILES_SRC
@@ -157,7 +157,7 @@ if(NOT NO_TEST)
build_test(${_name})
register_test(${_name} ${_name})
endfunction()
-
+
new_test(test_ssol_atmosphere)
new_test(test_ssol_by_receiver_integration)
new_test(test_ssol_camera)