atrstm

Load and structure a combustion gas mixture
git clone git://git.meso-star.fr/atrstm.git
Log | Files | Refs | README | LICENSE

commit 146a39219b989e0f0bb775207aab83a19415f1a1
parent a8f4133718dd4af21f015eaf46589f08c088482a
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Tue, 18 Oct 2022 17:18:25 +0200

Update the copyright notice

Diffstat:
MREADME.md | 6+++++-
Mcmake/CMakeLists.txt | 1+
Msrc/atrstm.c | 3++-
Msrc/atrstm.h | 3++-
Msrc/atrstm_c.h | 3++-
Msrc/atrstm_cache.c | 3++-
Msrc/atrstm_cache.h | 3++-
Msrc/atrstm_dump_svx_octree.c | 3++-
Msrc/atrstm_log.c | 3++-
Msrc/atrstm_log.h | 3++-
Msrc/atrstm_partition.c | 3++-
Msrc/atrstm_partition.h | 3++-
Msrc/atrstm_radcoefs.c | 3++-
Msrc/atrstm_radcoefs.h | 3++-
Msrc/atrstm_radcoefs_simd4.c | 3++-
Msrc/atrstm_radcoefs_simd4.h | 3++-
Msrc/atrstm_rdgfa.c | 3++-
Msrc/atrstm_rdgfa.h | 3++-
Msrc/atrstm_rdgfa_simd4.h | 3++-
Msrc/atrstm_setup_octrees.c | 3++-
Msrc/atrstm_setup_octrees.h | 3++-
Msrc/atrstm_setup_uvm.c | 3++-
Msrc/atrstm_svx.c | 3++-
Msrc/atrstm_svx.h | 3++-
Msrc/test_atrstm.c | 4++--
Msrc/test_atrstm_radcoefs.c | 3++-
Msrc/test_atrstm_radcoefs_simd.c | 3++-
27 files changed, 56 insertions(+), 27 deletions(-)

diff --git a/README.md b/README.md @@ -23,9 +23,13 @@ resulting project can be edited, built, tested and installed as any CMake project. Refer to the [CMake documentation](https://cmake.org/documentation) for further informations on CMake. +## Copyright + +Copyright (C) 2022 [|Meso|Star](http://www.meso-star.com) (<contact@meso-star.com>) +Copyright (C) 2020, 2021 Centre National de la Recherche Scientifique (CNRS) + ## License -Copyright (C) 2020, 2021 Centre National de la Recherche Scientifique (CNRS). AtrSTM is free software released under the GPL v3+ license: GNU GPL version 3 or later. You are welcome to redistribute it under certain conditions; refer to the COPYING file for details. diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -1,3 +1,4 @@ +# Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) # Copyright (C) 2020, 2021 CNRS # # This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm.c b/src/atrstm.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm.h b/src/atrstm.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_c.h b/src/atrstm_c.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_cache.c b/src/atrstm_cache.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_cache.h b/src/atrstm_cache.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_dump_svx_octree.c b/src/atrstm_dump_svx_octree.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_log.c b/src/atrstm_log.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_log.h b/src/atrstm_log.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_partition.c b/src/atrstm_partition.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_partition.h b/src/atrstm_partition.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_radcoefs.c b/src/atrstm_radcoefs.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_radcoefs.h b/src/atrstm_radcoefs.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_radcoefs_simd4.c b/src/atrstm_radcoefs_simd4.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_radcoefs_simd4.h b/src/atrstm_radcoefs_simd4.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_rdgfa.c b/src/atrstm_rdgfa.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_rdgfa.h b/src/atrstm_rdgfa.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_rdgfa_simd4.h b/src/atrstm_rdgfa_simd4.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_setup_octrees.c b/src/atrstm_setup_octrees.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_setup_octrees.h b/src/atrstm_setup_octrees.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_setup_uvm.c b/src/atrstm_setup_uvm.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_svx.c b/src/atrstm_svx.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/atrstm_svx.h b/src/atrstm_svx.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_atrstm.c b/src/test_atrstm.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -89,7 +90,6 @@ print_help(const char* cmd) ATRSTM_ARGS_DEFAULT.wlen_range[0]); printf("\n"); printf( -"Copyright (C) 2020, 2021 CNRS.\n" "This is free software released under the GNU GPL license, version 3 or\n" "later. You are free to change or redistribute it under certain\n" "conditions <http://gnu.org.licenses/gpl.html>\n"); diff --git a/src/test_atrstm_radcoefs.c b/src/test_atrstm_radcoefs.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_atrstm_radcoefs_simd.c b/src/test_atrstm_radcoefs_simd.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2020, 2021 CNRS +/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) + * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by