From 84a3f1e687ceb6520f59fe46ba9db3dffa6c1395 Mon Sep 17 00:00:00 2001 From: Grzegorz Kowal Date: Fri, 18 Nov 2016 11:09:19 -0200 Subject: [PATCH] COPYRIGHTS: Update year. Signed-off-by: Grzegorz Kowal --- README.md | 2 +- src/algebra.F90 | 2 +- src/blocks.F90 | 2 +- src/boundaries.F90 | 2 +- src/constants.F90 | 2 +- src/coordinates.F90 | 2 +- src/domains.F90 | 2 +- src/driver.F90 | 4 ++-- src/equations.F90 | 2 +- src/error.F90 | 2 +- src/evolution.F90 | 2 +- src/integrals.F90 | 2 +- src/interpolations.F90 | 2 +- src/io.F90 | 2 +- src/mesh.F90 | 2 +- src/mpitools.F90 | 2 +- src/operators.F90 | 2 +- src/parameters.F90 | 2 +- src/problems.F90 | 2 +- src/random.F90 | 2 +- src/refinement.F90 | 2 +- src/schemes.F90 | 2 +- src/shapes.F90 | 2 +- src/sources.F90 | 2 +- src/timers.F90 | 2 +- src/utils.F90 | 2 +- 26 files changed, 27 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 433821b..b2f5f78 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------- # **The AMUN Code** -## Copyright (C) 2008-2015 Grzegorz Kowal ## +## Copyright (C) 2008-2016 Grzegorz Kowal ## -------------------------------------------------------------------------------- AMUN is a parallel code to perform numerical simulations in fluid approximation diff --git a/src/algebra.F90 b/src/algebra.F90 index 124b15f..7512604 100644 --- a/src/algebra.F90 +++ b/src/algebra.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/blocks.F90 b/src/blocks.F90 index f565953..7b74f98 100644 --- a/src/blocks.F90 +++ b/src/blocks.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/boundaries.F90 b/src/boundaries.F90 index daec1ba..036375c 100644 --- a/src/boundaries.F90 +++ b/src/boundaries.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/constants.F90 b/src/constants.F90 index 46a3d00..7a02bc0 100644 --- a/src/constants.F90 +++ b/src/constants.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/coordinates.F90 b/src/coordinates.F90 index 2246ec8..a43526f 100644 --- a/src/coordinates.F90 +++ b/src/coordinates.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/domains.F90 b/src/domains.F90 index 03cfa34..4d869ca 100644 --- a/src/domains.F90 +++ b/src/domains.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/driver.F90 b/src/driver.F90 index ac2439e..8978391 100644 --- a/src/driver.F90 +++ b/src/driver.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by @@ -201,7 +201,7 @@ program amun write (*,"(1x,78('-'))") write (*,"(1x,18('='),17x,a,17x,19('='))") 'A M U N' write (*,"(1x,16('='),4x,a,4x,16('='))") & - 'Copyright (C) 2008-2015 Grzegorz Kowal' + 'Copyright (C) 2008-2016 Grzegorz Kowal' write (*,"(1x,18('='),9x,a,9x,19('='))") & 'under GNU GPLv3 license' write (*,"(1x,78('-'))") diff --git a/src/equations.F90 b/src/equations.F90 index 0938c4c..c799bcd 100644 --- a/src/equations.F90 +++ b/src/equations.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/error.F90 b/src/error.F90 index 27e4d9e..54d27e2 100644 --- a/src/error.F90 +++ b/src/error.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/evolution.F90 b/src/evolution.F90 index 3bd5ecd..0f19ce3 100644 --- a/src/evolution.F90 +++ b/src/evolution.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/integrals.F90 b/src/integrals.F90 index cf54e61..111bc7c 100644 --- a/src/integrals.F90 +++ b/src/integrals.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/interpolations.F90 b/src/interpolations.F90 index 2150319..1b0a4fc 100644 --- a/src/interpolations.F90 +++ b/src/interpolations.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/io.F90 b/src/io.F90 index 1d0dae9..de269d1 100644 --- a/src/io.F90 +++ b/src/io.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/mesh.F90 b/src/mesh.F90 index 91a50d9..31407bb 100644 --- a/src/mesh.F90 +++ b/src/mesh.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/mpitools.F90 b/src/mpitools.F90 index 0167204..6df7292 100644 --- a/src/mpitools.F90 +++ b/src/mpitools.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/operators.F90 b/src/operators.F90 index 7a86aa8..7a90f40 100644 --- a/src/operators.F90 +++ b/src/operators.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/parameters.F90 b/src/parameters.F90 index 87b54ed..2aba3a8 100644 --- a/src/parameters.F90 +++ b/src/parameters.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/problems.F90 b/src/problems.F90 index bf78ccb..8f963a4 100644 --- a/src/problems.F90 +++ b/src/problems.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/random.F90 b/src/random.F90 index dbfd93e..a0ae718 100644 --- a/src/random.F90 +++ b/src/random.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/refinement.F90 b/src/refinement.F90 index 116a8a1..a35d544 100644 --- a/src/refinement.F90 +++ b/src/refinement.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/schemes.F90 b/src/schemes.F90 index 57f98ef..a9d25ba 100644 --- a/src/schemes.F90 +++ b/src/schemes.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/shapes.F90 b/src/shapes.F90 index d4e282e..c26525c 100644 --- a/src/shapes.F90 +++ b/src/shapes.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/sources.F90 b/src/sources.F90 index 7aa3fb5..0057d87 100644 --- a/src/sources.F90 +++ b/src/sources.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/timers.F90 b/src/timers.F90 index 401fc3c..7090920 100644 --- a/src/timers.F90 +++ b/src/timers.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2015 Grzegorz Kowal +!! Copyright (C) 2008-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by diff --git a/src/utils.F90 b/src/utils.F90 index 3e02b4c..d85a973 100644 --- a/src/utils.F90 +++ b/src/utils.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2015 Grzegorz Kowal +!! Copyright (C) 2015-2016 Grzegorz Kowal !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License as published by