star-mc

Parallel estimation of Monte Carlo integrators
git clone git://git.meso-star.fr/star-mc.git
Log | Files | Refs | README | LICENSE

commit 03f1eeb3277adb50fb4453d0821c23824e07a231
parent 99952c9c26b6a199e7dab1836bb0e9edb96408bc
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu,  7 Oct 2021 11:21:31 +0200

Merge branch 'release_0.4.1' into develop

Diffstat:
MREADME.md | 15++++++++++-----
Mcmake/CMakeLists.txt | 4++--
Msrc/smc.h | 2+-
Msrc/smc_device.c | 2+-
Msrc/smc_device_c.h | 2+-
Msrc/smc_doubleN.c | 2+-
Msrc/smc_estimator.c | 2+-
Msrc/smc_type.c | 2+-
Msrc/smc_type_c.h | 2+-
Msrc/smc_type_real.h | 2+-
Msrc/test_smc_device.c | 2+-
Msrc/test_smc_doubleN.c | 2+-
Msrc/test_smc_errors.c | 2+-
Msrc/test_smc_light_path.c | 2+-
Msrc/test_smc_solve.c | 2+-
Msrc/test_smc_utils.h | 2+-
16 files changed, 26 insertions(+), 21 deletions(-)

diff --git a/README.md b/README.md @@ -22,6 +22,12 @@ project. ## Release notes +### Version 0.4.1 + +- Add a progress log during computations. +- Sets the CMake minimum version to 3.1: since CMake 3.20, version 2.8 has + become obsolete. + ### Version 0.4 - Remove the raw integration functionality. @@ -34,8 +40,7 @@ project. ## License -Star-MC is Copyright (C) |Meso|Star> 2015-2018 (<contact@meso-star.com>). It is -a free software released under the [OSI](http://opensource.org)-approved CeCILL -license. You are welcome to redistribute it under certain conditions; refer to -the COPYING files for details. - +Copyright (C) 2015-2018, 2021 |Meso|Star> (<contact@meso-star.com>). +Star-MC is free software released under the CeCILLv2.1 license. You are welcome +to redistribute it under certain conditions; refer to the COPYING files for +details. diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) |Meso|Star> 2015-2018 (contact@meso-star.com) +# Copyright (C) 2015-2018, 2021 |Meso|Star> (contact@meso-star.com) # # This software is a computer program whose purpose is to generate files # used to build the Star-MC library. @@ -60,7 +60,7 @@ include(rcmake_runtime) ################################################################################ set(VERSION_MAJOR 0) set(VERSION_MINOR 4) -set(VERSION_PATCH 0) +set(VERSION_PATCH 1) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) set(SMC_FILES_SRC diff --git a/src/smc.h b/src/smc.h @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2015-2018 (contact@meso-star.com) +/* Copyright (C) 2015-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This software is a computer program whose purpose is to manage the * statistical estimation of a function. diff --git a/src/smc_device.c b/src/smc_device.c @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2015-2018 (contact@meso-star.com) +/* Copyright (C) 2015-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This software is a computer program whose purpose is to manage the * statistical estimation of a function. diff --git a/src/smc_device_c.h b/src/smc_device_c.h @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2015-2018 (contact@meso-star.com) +/* Copyright (C) 2015-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This software is a computer program whose purpose is to manage the * statistical estimation of a function. diff --git a/src/smc_doubleN.c b/src/smc_doubleN.c @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2015-2018 (contact@meso-star.com) +/* Copyright (C) 2015-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This software is a computer program whose purpose is to manage the * statistical estimation of a function. diff --git a/src/smc_estimator.c b/src/smc_estimator.c @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2015-2018 (contact@meso-star.com) +/* Copyright (C) 2015-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This software is a computer program whose purpose is to manage the * statistical estimation of a function. diff --git a/src/smc_type.c b/src/smc_type.c @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2015-2018 (contact@meso-star.com) +/* Copyright (C) 2015-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This software is a computer program whose purpose is to manage the * statistical estimation of a function. diff --git a/src/smc_type_c.h b/src/smc_type_c.h @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2015-2018 (contact@meso-star.com) +/* Copyright (C) 2015-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This software is a computer program whose purpose is to manage the * statistical estimation of a function. diff --git a/src/smc_type_real.h b/src/smc_type_real.h @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2015-2018 (contact@meso-star.com) +/* Copyright (C) 2015-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This software is a computer program whose purpose is to manage the * statistical estimation of a function. diff --git a/src/test_smc_device.c b/src/test_smc_device.c @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2015-2018 (contact@meso-star.com) +/* Copyright (C) 2015-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This software is governed by the CeCILL license under French law and * abiding by the rules of distribution of free software. You can use, diff --git a/src/test_smc_doubleN.c b/src/test_smc_doubleN.c @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2015-2018 (contact@meso-star.com) +/* Copyright (C) 2015-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This software is a computer program whose purpose is to manage the * statistical estimation of a function. diff --git a/src/test_smc_errors.c b/src/test_smc_errors.c @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2015-2018 (contact@meso-star.com) +/* Copyright (C) 2015-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This software is a computer program whose purpose is to manage the * statistical estimation of a function. diff --git a/src/test_smc_light_path.c b/src/test_smc_light_path.c @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2015-2018 (contact@meso-star.com) +/* Copyright (C) 2015-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This software is governed by the CeCILL license under French law and * abiding by the rules of distribution of free software. You can use, diff --git a/src/test_smc_solve.c b/src/test_smc_solve.c @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2015-2018 (contact@meso-star.com) +/* Copyright (C) 2015-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This software is governed by the CeCILL license under French law and * abiding by the rules of distribution of free software. You can use, diff --git a/src/test_smc_utils.h b/src/test_smc_utils.h @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2015-2018 (contact@meso-star.com) +/* Copyright (C) 2015-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This software is governed by the CeCILL license under French law and * abiding by the rules of distribution of free software. You can use,