diff --git a/README.md b/README.md index f19bb3e..66c890a 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # OpDiLib -[OpDiLib](https://www.scicomp.uni-kl.de/software/opdi) (Open Multiprocessing Differentiation Library) is a universal add-on for reverse mode operator overloading AD tools that enables the differentiation of OpenMP parallel code. +[OpDiLib](https://scicomp.rptu.de/software/opdi) (Open Multiprocessing Differentiation Library) is a universal add-on for reverse mode operator overloading AD tools that enables the differentiation of OpenMP parallel code. -It makes use of modern OpenMP features around OMPT to deduce a parallel reverse pass without any additional modifications of the parallel source code. Additionally, we provide a second mode of operation that works via replacement macros for OpenMP's directives and clauses as well as replacements for OpenMP's runtime functions. This mode of operation can also be used with compilers that do not support OMPT. There are no restrictions on data access patterns so that a first differentiated parallel code is obtained with little to no effort. As a next step, the parallel performance of the reverse pass can be optimized with various tools. One important aspect is disabling atomic updates on adjoint variables where appropriate. If the underlying AD tool is capable of differentiating MPI, for example via the add-on [MeDiPack](https://www.scicomp.uni-kl.de/software/medi/), OpDiLib can also be employed for a differentiation of OpenMP-MPI hybrid parallel codes. +It makes use of modern OpenMP features around OMPT to deduce a parallel reverse pass without any additional modifications of the parallel source code. Additionally, we provide a second mode of operation that works via replacement macros for OpenMP's directives and clauses as well as replacements for OpenMP's runtime functions. This mode of operation can also be used with compilers that do not support OMPT. There are no restrictions on data access patterns so that a first differentiated parallel code is obtained with little to no effort. As a next step, the parallel performance of the reverse pass can be optimized with various tools. One important aspect is disabling atomic updates on adjoint variables where appropriate. If the underlying AD tool is capable of differentiating MPI, for example via the add-on [MeDiPack](https://scicomp.rptu.de/software/medi/), OpDiLib can also be employed for a differentiation of OpenMP-MPI hybrid parallel codes. -The [Scientific Computing Group](https://www.scicomp.uni-kl.de) at the University of Kaiserslautern-Landau (RPTU) develops OpDiLib and will enhance and extend OpDiLib in the future. +The [Scientific Computing Group](https://scicomp.rptu.de) at the University of Kaiserslautern-Landau (RPTU) develops OpDiLib and will enhance and extend OpDiLib in the future. There is a newsletter available at [opdi-info@scicomp.uni-kl.de](https://lists.uni-kl.de/scicomp/subscribe/opdi-info). If you want to contact us, please write a mail to [opdi@scicomp.uni-kl.de](mailto:opdi@scicomp.uni-kl.de). @@ -19,7 +19,7 @@ OpDiLib supports all directives, clauses and runtime functions of the OpenMP 2.5 If you have a code that is differentiated with a serial AD tool and parallelize it using OpenMP, the procedure of obtaining an efficient parallel differentiated code with OpDiLib is as follows. -1. **Couple OpDiLib with your AD tool.** This step can be skipped if you use an AD tool that already has OpDiLib bindings, for example [CoDiPack](https://www.scicomp.uni-kl.de/software/codi/), which has OpDiLib support since [version 2.1](https://github.com/SciCompKL/CoDiPack/releases/tag/v2.1.0). +1. **Couple OpDiLib with your AD tool.** This step can be skipped if you use an AD tool that already has OpDiLib bindings, for example [CoDiPack](https://scicomp.rptu.de/software/codi/), which has OpDiLib support since [version 2.1](https://github.com/SciCompKL/CoDiPack/releases/tag/v2.1.0). 2. **Obtain a first parallel differentiated version of your code.** If your compiler supports OMPT, it suffices to add a few lines of code for the initialization and finalization of OpDiLib. Otherwise, you have to use OpDiLib's macro backend, which involves rewriting your OpenMP constructs according to OpDiLib's macro interface. Both approaches are demonstrated in the minimal example below. 3. **Optimize the performance of the parallel reverse pass.** Check your parallel forward code for parts that do not involve shared reading. Use OpDiLib's adjoint access control tools to disable atomic adjoints for these parts. You may also revise your data access patterns to eliminate additional instances of shared reading. @@ -50,7 +50,7 @@ If you use OpDiLib in one of your applications and write a paper, please cite us ## Minimal Example -The following minimal example assumes that [CoDiPack](https://www.scicomp.uni-kl.de/software/codi/) is used as the underlying AD tool. You need CoDiPack [version 2.1](https://github.com/SciCompKL/CoDiPack/releases/tag/v2.1.0) or newer. For additional examples, please refer to OpDiLib's test suite. +The following minimal example assumes that [CoDiPack](https://scicomp.rptu.de/software/codi/) is used as the underlying AD tool. You need CoDiPack [version 2.1](https://github.com/SciCompKL/CoDiPack/releases/tag/v2.1.0) or newer. For additional examples, please refer to OpDiLib's test suite. ### OMPT Backend diff --git a/include/opdi.cpp b/include/opdi.cpp index 7dabb58..90317b4 100644 --- a/include/opdi.cpp +++ b/include/opdi.cpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi.hpp b/include/opdi.hpp index 06ec435..4a8329f 100644 --- a/include/opdi.hpp +++ b/include/opdi.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/backendInterface.hpp b/include/opdi/backend/backendInterface.hpp index cf2475b..e24fd58 100644 --- a/include/opdi/backend/backendInterface.hpp +++ b/include/opdi/backend/backendInterface.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/macro/dataTools.hpp b/include/opdi/backend/macro/dataTools.hpp index 1187f2e..cc4eef1 100644 --- a/include/opdi/backend/macro/dataTools.hpp +++ b/include/opdi/backend/macro/dataTools.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/macro/implicitBarrierTools.hpp b/include/opdi/backend/macro/implicitBarrierTools.hpp index 4dd3616..2a4fe28 100644 --- a/include/opdi/backend/macro/implicitBarrierTools.hpp +++ b/include/opdi/backend/macro/implicitBarrierTools.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/macro/macroBackend.cpp b/include/opdi/backend/macro/macroBackend.cpp index 3eb0544..60d904b 100644 --- a/include/opdi/backend/macro/macroBackend.cpp +++ b/include/opdi/backend/macro/macroBackend.cpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/macro/macroBackend.hpp b/include/opdi/backend/macro/macroBackend.hpp index a65d97f..f4be8e1 100644 --- a/include/opdi/backend/macro/macroBackend.hpp +++ b/include/opdi/backend/macro/macroBackend.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/macro/macros.hpp b/include/opdi/backend/macro/macros.hpp index 2e38439..47f1934 100644 --- a/include/opdi/backend/macro/macros.hpp +++ b/include/opdi/backend/macro/macros.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/macro/mutexIdentifiers.hpp b/include/opdi/backend/macro/mutexIdentifiers.hpp index 43620a9..7900d0f 100644 --- a/include/opdi/backend/macro/mutexIdentifiers.hpp +++ b/include/opdi/backend/macro/mutexIdentifiers.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/macro/probeTools.hpp b/include/opdi/backend/macro/probeTools.hpp index 4854617..bd2c892 100644 --- a/include/opdi/backend/macro/probeTools.hpp +++ b/include/opdi/backend/macro/probeTools.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/macro/probes.hpp b/include/opdi/backend/macro/probes.hpp index d7e91ef..7bce84c 100644 --- a/include/opdi/backend/macro/probes.hpp +++ b/include/opdi/backend/macro/probes.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/macro/reductionTools.hpp b/include/opdi/backend/macro/reductionTools.hpp index 9def192..3998a8e 100644 --- a/include/opdi/backend/macro/reductionTools.hpp +++ b/include/opdi/backend/macro/reductionTools.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/ompt/callbacksBase.hpp b/include/opdi/backend/ompt/callbacksBase.hpp index cb63396..7a90c8b 100644 --- a/include/opdi/backend/ompt/callbacksBase.hpp +++ b/include/opdi/backend/ompt/callbacksBase.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/ompt/implicitTaskCallbacks.hpp b/include/opdi/backend/ompt/implicitTaskCallbacks.hpp index 7cf9810..d1d150f 100644 --- a/include/opdi/backend/ompt/implicitTaskCallbacks.hpp +++ b/include/opdi/backend/ompt/implicitTaskCallbacks.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/ompt/macros.hpp b/include/opdi/backend/ompt/macros.hpp index 6727596..8df2efa 100644 --- a/include/opdi/backend/ompt/macros.hpp +++ b/include/opdi/backend/ompt/macros.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/ompt/masterCallbacks.hpp b/include/opdi/backend/ompt/masterCallbacks.hpp index 65d3846..3f5b244 100644 --- a/include/opdi/backend/ompt/masterCallbacks.hpp +++ b/include/opdi/backend/ompt/masterCallbacks.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/ompt/mutexCallbacks.hpp b/include/opdi/backend/ompt/mutexCallbacks.hpp index a2d7692..020be07 100644 --- a/include/opdi/backend/ompt/mutexCallbacks.hpp +++ b/include/opdi/backend/ompt/mutexCallbacks.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/ompt/omptBackend.cpp b/include/opdi/backend/ompt/omptBackend.cpp index f44f2d9..cd50130 100644 --- a/include/opdi/backend/ompt/omptBackend.cpp +++ b/include/opdi/backend/ompt/omptBackend.cpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/ompt/omptBackend.hpp b/include/opdi/backend/ompt/omptBackend.hpp index 81c1b29..b9f3408 100644 --- a/include/opdi/backend/ompt/omptBackend.hpp +++ b/include/opdi/backend/ompt/omptBackend.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/ompt/parallelCallbacks.hpp b/include/opdi/backend/ompt/parallelCallbacks.hpp index 4e55eb4..8467cff 100644 --- a/include/opdi/backend/ompt/parallelCallbacks.hpp +++ b/include/opdi/backend/ompt/parallelCallbacks.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/ompt/reductionCallbacks.hpp b/include/opdi/backend/ompt/reductionCallbacks.hpp index aa29d29..1e6bed7 100644 --- a/include/opdi/backend/ompt/reductionCallbacks.hpp +++ b/include/opdi/backend/ompt/reductionCallbacks.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/ompt/syncRegionCallbacks.hpp b/include/opdi/backend/ompt/syncRegionCallbacks.hpp index 9605459..6ef5e5f 100644 --- a/include/opdi/backend/ompt/syncRegionCallbacks.hpp +++ b/include/opdi/backend/ompt/syncRegionCallbacks.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/ompt/waitIdExtractor.hpp b/include/opdi/backend/ompt/waitIdExtractor.hpp index 3a530b6..b175c7e 100644 --- a/include/opdi/backend/ompt/waitIdExtractor.hpp +++ b/include/opdi/backend/ompt/waitIdExtractor.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/ompt/workCallbacks.hpp b/include/opdi/backend/ompt/workCallbacks.hpp index 6f34560..3e39bae 100644 --- a/include/opdi/backend/ompt/workCallbacks.hpp +++ b/include/opdi/backend/ompt/workCallbacks.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/runtime.cpp b/include/opdi/backend/runtime.cpp index 3dde54b..b93ade9 100644 --- a/include/opdi/backend/runtime.cpp +++ b/include/opdi/backend/runtime.cpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/backend/runtime.hpp b/include/opdi/backend/runtime.hpp index 1cb4dae..e9bd6b3 100644 --- a/include/opdi/backend/runtime.hpp +++ b/include/opdi/backend/runtime.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/config.hpp b/include/opdi/config.hpp index f9a7399..74934f9 100644 --- a/include/opdi/config.hpp +++ b/include/opdi/config.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/helpers/emptyMacros.hpp b/include/opdi/helpers/emptyMacros.hpp index b4a47e4..990c1fe 100644 --- a/include/opdi/helpers/emptyMacros.hpp +++ b/include/opdi/helpers/emptyMacros.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/helpers/exceptions.hpp b/include/opdi/helpers/exceptions.hpp index 12cadeb..b58b67d 100644 --- a/include/opdi/helpers/exceptions.hpp +++ b/include/opdi/helpers/exceptions.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/helpers/macros.hpp b/include/opdi/helpers/macros.hpp index 2bc99ff..8303552 100644 --- a/include/opdi/helpers/macros.hpp +++ b/include/opdi/helpers/macros.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/helpers/undefineMacros.hpp b/include/opdi/helpers/undefineMacros.hpp index a3ee3af..0e7a576 100644 --- a/include/opdi/helpers/undefineMacros.hpp +++ b/include/opdi/helpers/undefineMacros.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/logicInterface.hpp b/include/opdi/logic/logicInterface.hpp index cfd9907..5fa23b3 100644 --- a/include/opdi/logic/logicInterface.hpp +++ b/include/opdi/logic/logicInterface.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/adjointAccessControl.hpp b/include/opdi/logic/omp/adjointAccessControl.hpp index 67222d4..3feacd9 100644 --- a/include/opdi/logic/omp/adjointAccessControl.hpp +++ b/include/opdi/logic/omp/adjointAccessControl.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/flushOmpLogic.hpp b/include/opdi/logic/omp/flushOmpLogic.hpp index 614eb43..3021baa 100644 --- a/include/opdi/logic/omp/flushOmpLogic.hpp +++ b/include/opdi/logic/omp/flushOmpLogic.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/implicitTaskOmpLogic.cpp b/include/opdi/logic/omp/implicitTaskOmpLogic.cpp index 5c424f8..8d6766b 100644 --- a/include/opdi/logic/omp/implicitTaskOmpLogic.cpp +++ b/include/opdi/logic/omp/implicitTaskOmpLogic.cpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/implicitTaskOmpLogic.hpp b/include/opdi/logic/omp/implicitTaskOmpLogic.hpp index 1c536bc..dbb08b4 100644 --- a/include/opdi/logic/omp/implicitTaskOmpLogic.hpp +++ b/include/opdi/logic/omp/implicitTaskOmpLogic.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/instrument/ompLogicInstrumentInterface.hpp b/include/opdi/logic/omp/instrument/ompLogicInstrumentInterface.hpp index 5446d61..0a51b06 100644 --- a/include/opdi/logic/omp/instrument/ompLogicInstrumentInterface.hpp +++ b/include/opdi/logic/omp/instrument/ompLogicInstrumentInterface.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/instrument/ompLogicOutputInstrument.hpp b/include/opdi/logic/omp/instrument/ompLogicOutputInstrument.hpp index cfb4563..f5f9749 100644 --- a/include/opdi/logic/omp/instrument/ompLogicOutputInstrument.hpp +++ b/include/opdi/logic/omp/instrument/ompLogicOutputInstrument.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/masterOmpLogic.cpp b/include/opdi/logic/omp/masterOmpLogic.cpp index a17f331..af4d93e 100644 --- a/include/opdi/logic/omp/masterOmpLogic.cpp +++ b/include/opdi/logic/omp/masterOmpLogic.cpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/masterOmpLogic.hpp b/include/opdi/logic/omp/masterOmpLogic.hpp index 72ed0b2..d535dbb 100644 --- a/include/opdi/logic/omp/masterOmpLogic.hpp +++ b/include/opdi/logic/omp/masterOmpLogic.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/mutexOmpLogic.cpp b/include/opdi/logic/omp/mutexOmpLogic.cpp index e508ca6..6ec573d 100644 --- a/include/opdi/logic/omp/mutexOmpLogic.cpp +++ b/include/opdi/logic/omp/mutexOmpLogic.cpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/mutexOmpLogic.hpp b/include/opdi/logic/omp/mutexOmpLogic.hpp index 14e9f5c..91a43f7 100644 --- a/include/opdi/logic/omp/mutexOmpLogic.hpp +++ b/include/opdi/logic/omp/mutexOmpLogic.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/ompLogic.cpp b/include/opdi/logic/omp/ompLogic.cpp index 18c9442..eaf8abe 100644 --- a/include/opdi/logic/omp/ompLogic.cpp +++ b/include/opdi/logic/omp/ompLogic.cpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/ompLogic.hpp b/include/opdi/logic/omp/ompLogic.hpp index ace522a..f40fdb8 100644 --- a/include/opdi/logic/omp/ompLogic.hpp +++ b/include/opdi/logic/omp/ompLogic.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/parallelOmpLogic.cpp b/include/opdi/logic/omp/parallelOmpLogic.cpp index ece216e..85cdf90 100644 --- a/include/opdi/logic/omp/parallelOmpLogic.cpp +++ b/include/opdi/logic/omp/parallelOmpLogic.cpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/parallelOmpLogic.hpp b/include/opdi/logic/omp/parallelOmpLogic.hpp index 9ee5cae..cbe9962 100644 --- a/include/opdi/logic/omp/parallelOmpLogic.hpp +++ b/include/opdi/logic/omp/parallelOmpLogic.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/syncRegionOmpLogic.cpp b/include/opdi/logic/omp/syncRegionOmpLogic.cpp index 4e1d488..5f550e5 100644 --- a/include/opdi/logic/omp/syncRegionOmpLogic.cpp +++ b/include/opdi/logic/omp/syncRegionOmpLogic.cpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/syncRegionOmpLogic.hpp b/include/opdi/logic/omp/syncRegionOmpLogic.hpp index fd21246..b7f088a 100644 --- a/include/opdi/logic/omp/syncRegionOmpLogic.hpp +++ b/include/opdi/logic/omp/syncRegionOmpLogic.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/workOmpLogic.cpp b/include/opdi/logic/omp/workOmpLogic.cpp index aac4f5a..ae1d440 100644 --- a/include/opdi/logic/omp/workOmpLogic.cpp +++ b/include/opdi/logic/omp/workOmpLogic.cpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/logic/omp/workOmpLogic.hpp b/include/opdi/logic/omp/workOmpLogic.hpp index 4f25641..6e943a8 100644 --- a/include/opdi/logic/omp/workOmpLogic.hpp +++ b/include/opdi/logic/omp/workOmpLogic.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/misc/output.hpp b/include/opdi/misc/output.hpp index 4cdb893..611b251 100644 --- a/include/opdi/misc/output.hpp +++ b/include/opdi/misc/output.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/misc/tapePool.hpp b/include/opdi/misc/tapePool.hpp index f44a7c6..dd6115b 100644 --- a/include/opdi/misc/tapePool.hpp +++ b/include/opdi/misc/tapePool.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/misc/tapedOutput.hpp b/include/opdi/misc/tapedOutput.hpp index 0933376..351a704 100644 --- a/include/opdi/misc/tapedOutput.hpp +++ b/include/opdi/misc/tapedOutput.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/tool/helpers/handle.hpp b/include/opdi/tool/helpers/handle.hpp index 88ac035..0c53601 100644 --- a/include/opdi/tool/helpers/handle.hpp +++ b/include/opdi/tool/helpers/handle.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/include/opdi/tool/toolInterface.hpp b/include/opdi/tool/toolInterface.hpp index 85b0c1e..a4e4f1d 100644 --- a/include/opdi/tool/toolInterface.hpp +++ b/include/opdi/tool/toolInterface.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/macroexample.cpp b/macroexample.cpp index dcd2b5d..a962aaa 100644 --- a/macroexample.cpp +++ b/macroexample.cpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/omptexample.cpp b/omptexample.cpp index d35ad70..c35c3fd 100644 --- a/omptexample.cpp +++ b/omptexample.cpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/syntax/check.py b/syntax/check.py index 7130268..93ad411 100644 --- a/syntax/check.py +++ b/syntax/check.py @@ -2,12 +2,12 @@ # # Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern # Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau -# Homepage: http://www.scicomp.uni-kl.de +# Homepage: https://scicomp.rptu.de # Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) # # Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) # -# This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). +# This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). # # OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/Makefile b/tests/Makefile index 6092548..7419e3f 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -2,12 +2,12 @@ # # Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern # Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau -# Homepage: http://www.scicomp.uni-kl.de +# Homepage: https://scicomp.rptu.de # Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) # # Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) # -# This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). +# This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). # # OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/case.hpp b/tests/case.hpp index d2c5b8a..08092c2 100644 --- a/tests/case.hpp +++ b/tests/case.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/drivers/DriverFirstOrderReverse.hpp b/tests/drivers/DriverFirstOrderReverse.hpp index 0a07581..2e2830b 100644 --- a/tests/drivers/DriverFirstOrderReverse.hpp +++ b/tests/drivers/DriverFirstOrderReverse.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/drivers/DriverFirstOrderReverseNestedParallel.hpp b/tests/drivers/DriverFirstOrderReverseNestedParallel.hpp index 994322a..8a8f484 100644 --- a/tests/drivers/DriverFirstOrderReverseNestedParallel.hpp +++ b/tests/drivers/DriverFirstOrderReverseNestedParallel.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/drivers/DriverFirstOrderReverseNoOpenMP.hpp b/tests/drivers/DriverFirstOrderReverseNoOpenMP.hpp index 2a7c862..bf257ab 100644 --- a/tests/drivers/DriverFirstOrderReverseNoOpenMP.hpp +++ b/tests/drivers/DriverFirstOrderReverseNoOpenMP.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/drivers/DriverFirstOrderReverseNoParallel.hpp b/tests/drivers/DriverFirstOrderReverseNoParallel.hpp index 05d864f..1e2dccd 100644 --- a/tests/drivers/DriverFirstOrderReverseNoParallel.hpp +++ b/tests/drivers/DriverFirstOrderReverseNoParallel.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/drivers/DriverFirstOrderReversePassive.hpp b/tests/drivers/DriverFirstOrderReversePassive.hpp index 3f5670f..4736146 100644 --- a/tests/drivers/DriverFirstOrderReversePassive.hpp +++ b/tests/drivers/DriverFirstOrderReversePassive.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/drivers/DriverFirstOrderReverseSingleThread.hpp b/tests/drivers/DriverFirstOrderReverseSingleThread.hpp index b3955b0..b9e4edb 100644 --- a/tests/drivers/DriverFirstOrderReverseSingleThread.hpp +++ b/tests/drivers/DriverFirstOrderReverseSingleThread.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/drivers/DriverSecondOrderReverseForward.hpp b/tests/drivers/DriverSecondOrderReverseForward.hpp index de82a44..bd4bb50 100644 --- a/tests/drivers/DriverSecondOrderReverseForward.hpp +++ b/tests/drivers/DriverSecondOrderReverseForward.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/drivers/driverBase.hpp b/tests/drivers/driverBase.hpp index 21de680..71c855f 100644 --- a/tests/drivers/driverBase.hpp +++ b/tests/drivers/driverBase.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/generate.sh b/tests/generate.sh index 75b25c8..8765581 100644 --- a/tests/generate.sh +++ b/tests/generate.sh @@ -4,12 +4,12 @@ # # Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern # Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau -# Homepage: http://www.scicomp.uni-kl.de +# Homepage: https://scicomp.rptu.de # Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) # # Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) # -# This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). +# This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). # # OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/run.sh b/tests/run.sh index 2f03efd..ce39eec 100644 --- a/tests/run.sh +++ b/tests/run.sh @@ -4,12 +4,12 @@ # # Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern # Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau -# Homepage: http://www.scicomp.uni-kl.de +# Homepage: https://scicomp.rptu.de # Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) # # Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) # -# This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). +# This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). # # OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestAdjointAccessControlGlobal.hpp b/tests/tests/TestAdjointAccessControlGlobal.hpp index df15318..2fe95df 100644 --- a/tests/tests/TestAdjointAccessControlGlobal.hpp +++ b/tests/tests/TestAdjointAccessControlGlobal.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestAdjointAccessControlLocal.hpp b/tests/tests/TestAdjointAccessControlLocal.hpp index f057e5f..7db3571 100644 --- a/tests/tests/TestAdjointAccessControlLocal.hpp +++ b/tests/tests/TestAdjointAccessControlLocal.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestAdjointAccessControlNested.hpp b/tests/tests/TestAdjointAccessControlNested.hpp index 83e72be..be4cb1c 100644 --- a/tests/tests/TestAdjointAccessControlNested.hpp +++ b/tests/tests/TestAdjointAccessControlNested.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestBarrier.hpp b/tests/tests/TestBarrier.hpp index ef172a9..523bd09 100644 --- a/tests/tests/TestBarrier.hpp +++ b/tests/tests/TestBarrier.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestCritical.hpp b/tests/tests/TestCritical.hpp index 779b87a..4bb84d2 100644 --- a/tests/tests/TestCritical.hpp +++ b/tests/tests/TestCritical.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestCriticalLock.hpp b/tests/tests/TestCriticalLock.hpp index 83c9ea1..ac71c28 100644 --- a/tests/tests/TestCriticalLock.hpp +++ b/tests/tests/TestCriticalLock.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestCriticalName.hpp b/tests/tests/TestCriticalName.hpp index 80fcb91..85683d1 100644 --- a/tests/tests/TestCriticalName.hpp +++ b/tests/tests/TestCriticalName.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestExternalFunctionGlobal.hpp b/tests/tests/TestExternalFunctionGlobal.hpp index 433449d..eeb0c20 100644 --- a/tests/tests/TestExternalFunctionGlobal.hpp +++ b/tests/tests/TestExternalFunctionGlobal.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestExternalFunctionLocal.hpp b/tests/tests/TestExternalFunctionLocal.hpp index 9429767..d7af4cc 100644 --- a/tests/tests/TestExternalFunctionLocal.hpp +++ b/tests/tests/TestExternalFunctionLocal.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestFor.hpp b/tests/tests/TestFor.hpp index 8d629b1..f64e723 100644 --- a/tests/tests/TestFor.hpp +++ b/tests/tests/TestFor.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestForFirstprivate.hpp b/tests/tests/TestForFirstprivate.hpp index e6b9784..2d3c71c 100644 --- a/tests/tests/TestForFirstprivate.hpp +++ b/tests/tests/TestForFirstprivate.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestForLastprivate.hpp b/tests/tests/TestForLastprivate.hpp index ff06871..5a9705e 100644 --- a/tests/tests/TestForLastprivate.hpp +++ b/tests/tests/TestForLastprivate.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestForMultiple.hpp b/tests/tests/TestForMultiple.hpp index d26d4c5..1bcda7b 100644 --- a/tests/tests/TestForMultiple.hpp +++ b/tests/tests/TestForMultiple.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestForNowait.hpp b/tests/tests/TestForNowait.hpp index 2415810..7efa2ba 100644 --- a/tests/tests/TestForNowait.hpp +++ b/tests/tests/TestForNowait.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestForPrivate.hpp b/tests/tests/TestForPrivate.hpp index b5b12d2..b6353cf 100644 --- a/tests/tests/TestForPrivate.hpp +++ b/tests/tests/TestForPrivate.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestForReduction.hpp b/tests/tests/TestForReduction.hpp index 68c3959..fe8b386 100644 --- a/tests/tests/TestForReduction.hpp +++ b/tests/tests/TestForReduction.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestForReductionMultiple.hpp b/tests/tests/TestForReductionMultiple.hpp index 693ba86..d74bf2e 100644 --- a/tests/tests/TestForReductionMultiple.hpp +++ b/tests/tests/TestForReductionMultiple.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestForReductionNowait.hpp b/tests/tests/TestForReductionNowait.hpp index d86f61f..1fd66b7 100644 --- a/tests/tests/TestForReductionNowait.hpp +++ b/tests/tests/TestForReductionNowait.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestForScheduleDynamic.hpp b/tests/tests/TestForScheduleDynamic.hpp index 382438f..456c77c 100644 --- a/tests/tests/TestForScheduleDynamic.hpp +++ b/tests/tests/TestForScheduleDynamic.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestForScheduleGuided.hpp b/tests/tests/TestForScheduleGuided.hpp index edd1d86..ee12da5 100644 --- a/tests/tests/TestForScheduleGuided.hpp +++ b/tests/tests/TestForScheduleGuided.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestForScheduleStatic.hpp b/tests/tests/TestForScheduleStatic.hpp index d3c4a75..48f53d2 100644 --- a/tests/tests/TestForScheduleStatic.hpp +++ b/tests/tests/TestForScheduleStatic.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestLock.hpp b/tests/tests/TestLock.hpp index b52523b..9324a4d 100644 --- a/tests/tests/TestLock.hpp +++ b/tests/tests/TestLock.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestMaster.hpp b/tests/tests/TestMaster.hpp index 3dece99..9bf83ce 100644 --- a/tests/tests/TestMaster.hpp +++ b/tests/tests/TestMaster.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestNestedLock.hpp b/tests/tests/TestNestedLock.hpp index a76561c..0b25435 100644 --- a/tests/tests/TestNestedLock.hpp +++ b/tests/tests/TestNestedLock.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestOrdered.hpp b/tests/tests/TestOrdered.hpp index eba33a8..9b3e982 100644 --- a/tests/tests/TestOrdered.hpp +++ b/tests/tests/TestOrdered.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestParallel.hpp b/tests/tests/TestParallel.hpp index 8c0f388..c045d03 100644 --- a/tests/tests/TestParallel.hpp +++ b/tests/tests/TestParallel.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestParallelFirstprivate.hpp b/tests/tests/TestParallelFirstprivate.hpp index 034304b..6dad546 100644 --- a/tests/tests/TestParallelFirstprivate.hpp +++ b/tests/tests/TestParallelFirstprivate.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestParallelFor.hpp b/tests/tests/TestParallelFor.hpp index 6cb476c..08aee56 100644 --- a/tests/tests/TestParallelFor.hpp +++ b/tests/tests/TestParallelFor.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestParallelMultiple.hpp b/tests/tests/TestParallelMultiple.hpp index 54d1650..0355d68 100644 --- a/tests/tests/TestParallelMultiple.hpp +++ b/tests/tests/TestParallelMultiple.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestParallelNested.hpp b/tests/tests/TestParallelNested.hpp index 32f3dc6..ddec454 100644 --- a/tests/tests/TestParallelNested.hpp +++ b/tests/tests/TestParallelNested.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestParallelPrivate.hpp b/tests/tests/TestParallelPrivate.hpp index 3b0f6bc..bb77e49 100644 --- a/tests/tests/TestParallelPrivate.hpp +++ b/tests/tests/TestParallelPrivate.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestParallelReduction.hpp b/tests/tests/TestParallelReduction.hpp index 6161834..8b5f1c3 100644 --- a/tests/tests/TestParallelReduction.hpp +++ b/tests/tests/TestParallelReduction.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestParallelReductionMultiple.hpp b/tests/tests/TestParallelReductionMultiple.hpp index cf6759d..2d03da8 100644 --- a/tests/tests/TestParallelReductionMultiple.hpp +++ b/tests/tests/TestParallelReductionMultiple.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestParallelSections.hpp b/tests/tests/TestParallelSections.hpp index 111cfaf..072934c 100644 --- a/tests/tests/TestParallelSections.hpp +++ b/tests/tests/TestParallelSections.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestPreaccumulationGlobal.hpp b/tests/tests/TestPreaccumulationGlobal.hpp index 1518b7c..d54523d 100644 --- a/tests/tests/TestPreaccumulationGlobal.hpp +++ b/tests/tests/TestPreaccumulationGlobal.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestPreaccumulationLocal.hpp b/tests/tests/TestPreaccumulationLocal.hpp index 48869fe..069d21b 100644 --- a/tests/tests/TestPreaccumulationLocal.hpp +++ b/tests/tests/TestPreaccumulationLocal.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestReductionNested.hpp b/tests/tests/TestReductionNested.hpp index 8d9a21e..2e5a4d7 100644 --- a/tests/tests/TestReductionNested.hpp +++ b/tests/tests/TestReductionNested.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestSections.hpp b/tests/tests/TestSections.hpp index 9353aea..249b105 100644 --- a/tests/tests/TestSections.hpp +++ b/tests/tests/TestSections.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestSectionsFirstprivate.hpp b/tests/tests/TestSectionsFirstprivate.hpp index fb70007..2ea6414 100644 --- a/tests/tests/TestSectionsFirstprivate.hpp +++ b/tests/tests/TestSectionsFirstprivate.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestSectionsLastprivate.hpp b/tests/tests/TestSectionsLastprivate.hpp index d032104..6d7e3fe 100644 --- a/tests/tests/TestSectionsLastprivate.hpp +++ b/tests/tests/TestSectionsLastprivate.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestSectionsNowait.hpp b/tests/tests/TestSectionsNowait.hpp index 287ca01..5aab445 100644 --- a/tests/tests/TestSectionsNowait.hpp +++ b/tests/tests/TestSectionsNowait.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestSectionsPrivate.hpp b/tests/tests/TestSectionsPrivate.hpp index 04fb5e8..1b1c25b 100644 --- a/tests/tests/TestSectionsPrivate.hpp +++ b/tests/tests/TestSectionsPrivate.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestSectionsReduction.hpp b/tests/tests/TestSectionsReduction.hpp index d1ad763..3f51ec0 100644 --- a/tests/tests/TestSectionsReduction.hpp +++ b/tests/tests/TestSectionsReduction.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestSectionsReductionMultiple.hpp b/tests/tests/TestSectionsReductionMultiple.hpp index 94f1f80..6932acd 100644 --- a/tests/tests/TestSectionsReductionMultiple.hpp +++ b/tests/tests/TestSectionsReductionMultiple.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestSingle.hpp b/tests/tests/TestSingle.hpp index 4c2be65..f94d467 100644 --- a/tests/tests/TestSingle.hpp +++ b/tests/tests/TestSingle.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestSingleCopyprivate.hpp b/tests/tests/TestSingleCopyprivate.hpp index 8e568cf..7650645 100644 --- a/tests/tests/TestSingleCopyprivate.hpp +++ b/tests/tests/TestSingleCopyprivate.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestSingleFirstprivate.hpp b/tests/tests/TestSingleFirstprivate.hpp index a557753..93e1a7d 100644 --- a/tests/tests/TestSingleFirstprivate.hpp +++ b/tests/tests/TestSingleFirstprivate.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestSingleNowait.hpp b/tests/tests/TestSingleNowait.hpp index ffdbfbf..4ec0bfb 100644 --- a/tests/tests/TestSingleNowait.hpp +++ b/tests/tests/TestSingleNowait.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestSinglePrivate.hpp b/tests/tests/TestSinglePrivate.hpp index 2d5c26b..f150308 100644 --- a/tests/tests/TestSinglePrivate.hpp +++ b/tests/tests/TestSinglePrivate.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestStateExport.hpp b/tests/tests/TestStateExport.hpp index 95b8cee..12c2ce1 100644 --- a/tests/tests/TestStateExport.hpp +++ b/tests/tests/TestStateExport.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/TestTestLock.hpp b/tests/tests/TestTestLock.hpp index 5d21b96..b4840a0 100644 --- a/tests/tests/TestTestLock.hpp +++ b/tests/tests/TestTestLock.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/tests/tests/testBase.hpp b/tests/tests/testBase.hpp index 2b579df..986e1b4 100644 --- a/tests/tests/testBase.hpp +++ b/tests/tests/testBase.hpp @@ -3,12 +3,12 @@ * * Copyright (C) 2020-2022 Chair for Scientific Computing (SciComp), TU Kaiserslautern * Copyright (C) 2023-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau - * Homepage: http://www.scicomp.uni-kl.de + * Homepage: https://scicomp.rptu.de * Contact: Prof. Nicolas R. Gauger (opdi@scicomp.uni-kl.de) * * Lead developer: Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau) * - * This file is part of OpDiLib (http://www.scicomp.uni-kl.de/software/opdi). + * This file is part of OpDiLib (https://scicomp.rptu.de/software/opdi). * * OpDiLib is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later