Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxSagebaum committed Aug 7, 2024
2 parents af90dd3 + b88ebd5 commit 30cef12
Show file tree
Hide file tree
Showing 252 changed files with 505 additions and 540 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ project(
${CODIPACK_NAME}
VERSION ${CODIPACK_VERSION}
DESCRIPTION "CoDiPack - Code Differentiation Package"
HOMEPAGE_URL "http://www.scicomp.uni-kl.de/software/codi")
HOMEPAGE_URL "http://scicomp.rptu.de/software/codi")

add_library(${PROJECT_NAME} INTERFACE)

Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
# CoDiPack, a Code Differentiation Package
#
# Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
# Homepage: http://www.scicomp.uni-kl.de
# Homepage: http://scicomp.rptu.de
# Contact: Prof. Nicolas R. Gauger ([email protected])
#
# Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
#
# This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
# This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
#
# CoDiPack is free software: you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down Expand Up @@ -92,7 +92,7 @@ ifeq ($(MPI), yes)
ifdef MEDI_DIR
FLAGS += -I$(MEDI_DIR)/include -I$(MEDI_DIR)/src
else
$(error Error: 'MEDI_DIR' is not defined for the MPI build. You can get it at 'https://www.scicomp.uni-kl.de/software/medi/' or with 'git clone https://github.com/SciCompKL/MeDiPack.git')
$(error Error: 'MEDI_DIR' is not defined for the MPI build. You can get it at 'https://scicomp.rptu.de/software/medi/' or with 'git clone https://github.com/SciCompKL/MeDiPack.git')
endif
endif
ifeq ($(OPENMP), yes)
Expand All @@ -102,7 +102,7 @@ ifeq ($(OPENMP), yes)
ifdef OPDI_DIR
FLAGS += -I$(OPDI_DIR)/include
else
$(error Error: 'OPDI_DIR' is not defined for the OpDiLib build. You can get it at 'https://www.scicomp.uni-kl.de/software/opdi/' or with 'git clone https://github.com/SciCompKL/OpDiLib.git')
$(error Error: 'OPDI_DIR' is not defined for the OpDiLib build. You can get it at 'https://scicomp.rptu.de/software/opdi/' or with 'git clone https://github.com/SciCompKL/OpDiLib.git')
endif
endif
else
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CoDiPack

[CoDiPack](http://www.scicomp.uni-kl.de/software/codi/) (Code Differentiation Package) is a tool for gradient evaluation in computer programs. It supports the features:
[CoDiPack](http://scicomp.rptu.de/software/codi/) (Code Differentiation Package) is a tool for gradient evaluation in computer programs. It supports the features:
- Forward mode of Algorithmic Differentiation (AD)
- Reverse mode of Algorithmic Differentiation (AD)
- Different tape implementations
Expand All @@ -11,7 +11,7 @@
The design principle for CoDiPack is that it is easy to use.
However, it also gives experienced AD developers full access to all the data structures.

The [Scientific Computing Group](http://www.scicomp.uni-kl.de) at the TU Kaiserslautern develops CoDiPack and will enhance and extend CoDiPack in the future.
The [Scientific Computing Group](http://scicomp.rptu.de) at the TU Kaiserslautern develops CoDiPack and will enhance and extend CoDiPack in the future.
There is a newsletter available at [[email protected]](https://lists.uni-kl.de/uni-kl/subscribe/codi-info) and if you want to contact us please write a mail to [[email protected]](mailto:[email protected]).

[![Build Status](https://travis-ci.org/SciCompKL/CoDiPack.svg?branch=develop)](https://travis-ci.org/SciCompKL/CoDiPack)
Expand All @@ -37,7 +37,7 @@ The file `codi.hpp` defines several datatypes. The most important ones are:
We recommend to use the codi::RealReverse type when AD is first introduced to an application.
After that there should be no difficulties in replacing the codi::RealReverse type with other types.

For further details please visit our [CoDiPack](http://www.scicomp.uni-kl.de/software/codi/) web page.
For further details please visit our [CoDiPack](http://scicomp.rptu.de/software/codi/) web page.

### CMake

Expand Down Expand Up @@ -110,7 +110,7 @@ for the gcc compiler or with
~~~~
for the Intel compiler.

Please visit the [tutorial page](http://www.scicomp.uni-kl.de/codi/db/d3c/tutorialPage.html) for further information.
Please visit the [tutorial page](https://scicomp.rptu.de/codi/db/d84/TutorialsAndExamples.html) for further information.

## Citation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
2 changes: 1 addition & 1 deletion documentation/examples/Example_13_MPI_communication.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Example 13 - MPI communication {#Example_13_MPI_communication}
**Full code:**
\snippet examples/Example_13_MPI_communication.cpp Example 13 - MPI communication

The differentiation of MPI communication is done via the MeDiPack library (https://www.scicomp.uni-kl.de/software/medi).
The differentiation of MPI communication is done via the MeDiPack library (https://scicomp.rptu.de/software/medi).
As the example shows all 'MPI_*" routines and functions need to be replaced with the MeDiPack wrapper functions 'AMPI_*'.
Otherwise the MPI functions can be used as usual. The only difference is, that the CoDiPack MPI Datatype needs to be
used in all communications where CoDiPack types are involved.
Expand Down
2 changes: 1 addition & 1 deletion documentation/examples/Example_23_OpenMP_Parallel_Codes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Example 23 - OpenMP Parallel Codes {#Example_23_OpenMP_Parallel_Codes}
**Full code:**
\snippet examples/Example_23_OpenMP_Parallel_Codes.cpp Example 23 - OpenMP Parallel Codes

OpenMP parallel codes are differentiated with the help of the OpDiLib AD tool add-on (https://www.scicomp.uni-kl.de/software/opdi).
OpenMP parallel codes are differentiated with the help of the OpDiLib AD tool add-on (https://scicomp.rptu.de/software/opdi).
Please refer to the OpDiLib documentation for further examples and modes of operation.

The usual AD workflow is the same as for a serial code, except for the initialization and finalization of OpDiLib. In the example
Expand Down
4 changes: 2 additions & 2 deletions documentation/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ul>
$navpath
<li class="footer">
<a class="alignleft" href="http://www.scicomp.uni-kl.de/impressum/">Impressum</a>
<a class="alignleft" href="http://scicomp.rptu.de/impressum/">Impressum</a>
<a class="alignright" href="http://www.doxygen.org/index.html">$generatedby <img class="footer" src="$relpath^doxygen.png" alt="doxygen"/> $doxygenversion</a>
</li>
</ul>
Expand All @@ -14,7 +14,7 @@
<!--BEGIN !GENERATE_TREEVIEW-->
<hr class="footer"/>
<address class="footer"><small>
<a class="alignleft" href="http://www.scicomp.uni-kl.de/impressum/">Impressum</a>
<a class="alignleft" href="http://scicomp.rptu.de/impressum/">Impressum</a>
<a class="alignright" href="http://www.doxygen.org/index.html">$generatedby <img class="footer" src="$relpath^doxygen.png" alt="doxygen"/> $doxygenversion</a>
</small></address>
<!--END !GENERATE_TREEVIEW-->
Expand Down
2 changes: 1 addition & 1 deletion documentation/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<!--BEGIN PROJECT_BRIEF--><div id="projectbrief">$projectbrief</div><!--END PROJECT_BRIEF-->
</td>
<td>
<a class="alignright" href="http://www.scicomp.uni-kl.de"><img height="66px" src="http://www.scicomp.uni-kl.de/wordpress/wp-content/uploads/2014/10/scicomp_logo_tu1.png" alt="SciComp TU Kaiserslautern"/></a>
<a class="alignright" href="http://scicomp.rptu.de"><img height="66px" src="http://scicomp.rptu.de/wordpress/wp-content/uploads/2014/10/scicomp_logo_tu1.png" alt="SciComp TU Kaiserslautern"/></a>
</td>
<!--END PROJECT_NAME-->
<!--BEGIN !PROJECT_NAME-->
Expand Down
2 changes: 1 addition & 1 deletion documentation/mainpage.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ for the gcc compiler or with
~~~~
for the Intel compiler.

You can get CoDiPack from https://www.scicomp.uni-kl.de/software/codi.
You can get CoDiPack from https://scicomp.rptu.de/software/codi.

## Citation

Expand Down
4 changes: 2 additions & 2 deletions include/codi.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
8 changes: 4 additions & 4 deletions include/codi/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down Expand Up @@ -55,9 +55,9 @@ namespace codi {
/**
* @brief CoDiPack - Code Differentiation Package
*
* Web: https://www.scicomp.uni-kl.de/software/codi
* Web: https://scicomp.rptu.de/software/codi
* Git: https://github.com/scicompkl/codipack
* Doc: https://www.scicomp.uni-kl.de/codi
* Doc: https://scicomp.rptu.de/codi
*/
struct Namespace {};

Expand Down
4 changes: 2 additions & 2 deletions include/codi/expressions/activeType.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
4 changes: 2 additions & 2 deletions include/codi/expressions/activeTypeBase.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
4 changes: 2 additions & 2 deletions include/codi/expressions/activeTypeStatelessTape.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
4 changes: 2 additions & 2 deletions include/codi/expressions/activeTypeWrapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
4 changes: 2 additions & 2 deletions include/codi/expressions/assignmentOperators.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
4 changes: 2 additions & 2 deletions include/codi/expressions/binaryExpression.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
4 changes: 2 additions & 2 deletions include/codi/expressions/constantExpression.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
4 changes: 2 additions & 2 deletions include/codi/expressions/expressionInterface.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
4 changes: 2 additions & 2 deletions include/codi/expressions/immutableActiveType.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
4 changes: 2 additions & 2 deletions include/codi/expressions/incrementOperators.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
4 changes: 2 additions & 2 deletions include/codi/expressions/lhsExpressionInterface.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
4 changes: 2 additions & 2 deletions include/codi/expressions/logic/compileTimeTraversalLogic.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
4 changes: 2 additions & 2 deletions include/codi/expressions/logic/constructStaticContext.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
4 changes: 2 additions & 2 deletions include/codi/expressions/logic/helpers/forEachLeafLogic.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* CoDiPack, a Code Differentiation Package
*
* Copyright (C) 2015-2024 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
* Homepage: http://www.scicomp.uni-kl.de
* Homepage: http://scicomp.rptu.de
* Contact: Prof. Nicolas R. Gauger ([email protected])
*
* Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
*
* This file is part of CoDiPack (http://www.scicomp.uni-kl.de/software/codi).
* This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
*
* CoDiPack is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
Loading

0 comments on commit 30cef12

Please sign in to comment.