From 5e0e2809b932fd858410345e18116d01b0f3f218 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Fri, 23 Feb 2024 19:06:34 -0600 Subject: [PATCH] update header: parallel_in_time --- parallel_in_time/doc/author | 2 +- parallel_in_time/src/BraidFuncs.cc | 10 ++++++++++ parallel_in_time/src/BraidFuncs.hh | 10 ++++++++++ parallel_in_time/src/HeatEquation.hh | 10 ++++++++++ parallel_in_time/src/HeatEquationImplem.hh | 10 ++++++++++ parallel_in_time/src/Utilities.cc | 10 ++++++++++ parallel_in_time/src/Utilities.hh | 10 ++++++++++ parallel_in_time/src/parallel_in_time.cc | 17 +++++------------ parallel_in_time/test/test_braid.cc | 10 ++++++++++ 9 files changed, 76 insertions(+), 13 deletions(-) diff --git a/parallel_in_time/doc/author b/parallel_in_time/doc/author index 278fde0..40b4115 100644 --- a/parallel_in_time/doc/author +++ b/parallel_in_time/doc/author @@ -1 +1 @@ -Joshua Christopher +Joshua Christopher diff --git a/parallel_in_time/src/BraidFuncs.cc b/parallel_in_time/src/BraidFuncs.cc index a1bc525..08ef307 100644 --- a/parallel_in_time/src/BraidFuncs.cc +++ b/parallel_in_time/src/BraidFuncs.cc @@ -1,3 +1,13 @@ +/* ----------------------------------------------------------------------------- + * + * SPDX-License-Identifier: LGPL-2.1-or-later + * Copyright (C) 2018 by Joshua Christopher + * + * This file is part of the deal.II code gallery. + * + * ----------------------------------------------------------------------------- + */ + #include "BraidFuncs.hh" // This advances the solution forward by one time step. diff --git a/parallel_in_time/src/BraidFuncs.hh b/parallel_in_time/src/BraidFuncs.hh index 3b516c9..16fbab0 100644 --- a/parallel_in_time/src/BraidFuncs.hh +++ b/parallel_in_time/src/BraidFuncs.hh @@ -1,3 +1,13 @@ +/* ----------------------------------------------------------------------------- + * + * SPDX-License-Identifier: LGPL-2.1-or-later + * Copyright (C) 2018 by Joshua Christopher + * + * This file is part of the deal.II code gallery. + * + * ----------------------------------------------------------------------------- + */ + #ifndef _BRAIDFUNCS_H_ #define _BRAIDFUNCS_H_ diff --git a/parallel_in_time/src/HeatEquation.hh b/parallel_in_time/src/HeatEquation.hh index b2a57bb..1989ae3 100644 --- a/parallel_in_time/src/HeatEquation.hh +++ b/parallel_in_time/src/HeatEquation.hh @@ -1,3 +1,13 @@ +/* ----------------------------------------------------------------------------- + * + * SPDX-License-Identifier: LGPL-2.1-or-later + * Copyright (C) 2018 by Joshua Christopher + * + * This file is part of the deal.II code gallery. + * + * ----------------------------------------------------------------------------- + */ + #ifndef _HEATEQUATION_H_ #define _HEATEQUATION_H_ diff --git a/parallel_in_time/src/HeatEquationImplem.hh b/parallel_in_time/src/HeatEquationImplem.hh index c3eafd0..b54329b 100644 --- a/parallel_in_time/src/HeatEquationImplem.hh +++ b/parallel_in_time/src/HeatEquationImplem.hh @@ -1,3 +1,13 @@ +/* ----------------------------------------------------------------------------- + * + * SPDX-License-Identifier: LGPL-2.1-or-later + * Copyright (C) 2018 by Joshua Christopher + * + * This file is part of the deal.II code gallery. + * + * ----------------------------------------------------------------------------- + */ + #include "Utilities.hh" #include diff --git a/parallel_in_time/src/Utilities.cc b/parallel_in_time/src/Utilities.cc index 1f490b4..785ecbb 100644 --- a/parallel_in_time/src/Utilities.cc +++ b/parallel_in_time/src/Utilities.cc @@ -1,3 +1,13 @@ +/* ----------------------------------------------------------------------------- + * + * SPDX-License-Identifier: LGPL-2.1-or-later + * Copyright (C) 2018 by Joshua Christopher + * + * This file is part of the deal.II code gallery. + * + * ----------------------------------------------------------------------------- + */ + #include "Utilities.hh" #include diff --git a/parallel_in_time/src/Utilities.hh b/parallel_in_time/src/Utilities.hh index 323849a..4a36108 100644 --- a/parallel_in_time/src/Utilities.hh +++ b/parallel_in_time/src/Utilities.hh @@ -1,3 +1,13 @@ +/* ----------------------------------------------------------------------------- + * + * SPDX-License-Identifier: LGPL-2.1-or-later + * Copyright (C) 2018 by Joshua Christopher + * + * This file is part of the deal.II code gallery. + * + * ----------------------------------------------------------------------------- + */ + #ifndef _UTILITIES_H_ #define _UTILITIES_H_ diff --git a/parallel_in_time/src/parallel_in_time.cc b/parallel_in_time/src/parallel_in_time.cc index 9117a37..4ba6e64 100644 --- a/parallel_in_time/src/parallel_in_time.cc +++ b/parallel_in_time/src/parallel_in_time.cc @@ -1,18 +1,11 @@ -/* --------------------------------------------------------------------- +/* ----------------------------------------------------------------------------- * - * Copyright (C) 2013 - 2018 by the deal.II authors + * SPDX-License-Identifier: LGPL-2.1-or-later + * Copyright (C) 2018 by Joshua Christopher * - * This file is part of the deal.II library. + * This file is part of the deal.II code gallery. * - * The deal.II library is free software; you can use it, 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 2.1 of the License, or (at your option) any later version. - * The full text of the license can be found in the file LICENSE at - * the top level of the deal.II distribution. - * - * --------------------------------------------------------------------- - + * ----------------------------------------------------------------------------- * * Author: Joshua Christopher, Colorado State University, 2018 */ diff --git a/parallel_in_time/test/test_braid.cc b/parallel_in_time/test/test_braid.cc index dffb6d7..e864b10 100644 --- a/parallel_in_time/test/test_braid.cc +++ b/parallel_in_time/test/test_braid.cc @@ -1,3 +1,13 @@ +/* ----------------------------------------------------------------------------- + * + * SPDX-License-Identifier: LGPL-2.1-or-later + * Copyright (C) 2018 by Joshua Christopher + * + * This file is part of the deal.II code gallery. + * + * ----------------------------------------------------------------------------- + */ + #include "BraidFuncs.hh" #include -- 2.39.5