diff --git a/AUTHORS b/AUTHORS index 33f82cca7..67c49fe38 100644 --- a/AUTHORS +++ b/AUTHORS @@ -17,3 +17,4 @@ Ian Williamson Andreas Hoenselaar Ben Bartlett Krishna Gadepalli +Mo Chen \ No newline at end of file diff --git a/COPYRIGHT b/COPYRIGHT index 090b9f843..eeb098d0f 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/NEWS.md b/NEWS.md index 734818997..d186a3acb 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,17 @@ # Meep Release Notes +## Meep 1.22.0 + +1/11/2022 + +* Support for anisotropic materials and subpixel smoothing in adjoint gradients ([#1780], [#1801]). + +* Support for damping property in `MaterialGrid` ([#1804]). + +* Support for cylindrical coordinates in `plot2D` ([#1873]). + +* Various bugfixes ([#1796], [#1830], [#1849], [#1860]), performance enhancements ([#1826], [#1839], [#1871], [#1872], [#1877]), and additional unit tests and documentation. + ## Meep 1.21.0 10/12/2021 diff --git a/python/meep.i b/python/meep.i index 71a917aed..eae4f50bb 100644 --- a/python/meep.i +++ b/python/meep.i @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology * * 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/python/mpb.i b/python/mpb.i index 0eea78855..6cff0f6cd 100644 --- a/python/mpb.i +++ b/python/mpb.i @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology * * 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/python/tests/test_physical.py b/python/tests/test_physical.py index 8a3c29120..6eb2831be 100644 --- a/python/tests/test_physical.py +++ b/python/tests/test_physical.py @@ -1,18 +1,3 @@ -# Copyright (C) 2005-2021 Massachusetts Institute of Technology -# -# 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 -# the Free Software Foundation either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program if not, write to the Free Software Foundation, -# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. from __future__ import division import unittest diff --git a/python/typemap_utils.cpp b/python/typemap_utils.cpp index 4470cbc89..3c1fa1b66 100644 --- a/python/typemap_utils.cpp +++ b/python/typemap_utils.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology * * 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/scheme/Makefile.am b/scheme/Makefile.am index b9afdd105..d1f5f9a58 100644 --- a/scheme/Makefile.am +++ b/scheme/Makefile.am @@ -56,7 +56,7 @@ meep-enums.scm: meep_enum_renames.i ############################################################################## # what is printed out when invoking your program with --version: -VERSION_STRING = "Meep @VERSION@, Copyright (C) 2005-2021 Massachusetts Institute of Technology." +VERSION_STRING = "Meep @VERSION@, Copyright (C) 2005-2022 Massachusetts Institute of Technology." MY_DEFS = -DHAVE_CTL_HOOKS=1 -DHAVE_CTL_EXPORT_HOOK=1 diff --git a/scheme/meep.scm.in b/scheme/meep.scm.in index bb10ea370..3fd1c9652 100644 --- a/scheme/meep.scm.in +++ b/scheme/meep.scm.in @@ -1,4 +1,4 @@ -; Copyright (C) 2005-2021 Massachusetts Institute of Technology +; Copyright (C) 2005-2022 Massachusetts Institute of Technology ; ; 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/GDSIIgeom.cpp b/src/GDSIIgeom.cpp index 3c7d2960b..172965c14 100644 --- a/src/GDSIIgeom.cpp +++ b/src/GDSIIgeom.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/adjust_verbosity.hpp b/src/adjust_verbosity.hpp index 0781b5fbc..3ca7df896 100644 --- a/src/adjust_verbosity.hpp +++ b/src/adjust_verbosity.hpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/array_slice.cpp b/src/array_slice.cpp index cb7d7aff3..b6ad98341 100644 --- a/src/array_slice.cpp +++ b/src/array_slice.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/bands.cpp b/src/bands.cpp index d1b141863..05a9b5689 100644 --- a/src/bands.cpp +++ b/src/bands.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/bicgstab.cpp b/src/bicgstab.cpp index 859a88b0f..477114c34 100644 --- a/src/bicgstab.cpp +++ b/src/bicgstab.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/bicgstab.hpp b/src/bicgstab.hpp index 0d5231150..ab34796ec 100644 --- a/src/bicgstab.hpp +++ b/src/bicgstab.hpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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.cpp b/src/boundaries.cpp index 20ad1c140..dc136c2f1 100644 --- a/src/boundaries.cpp +++ b/src/boundaries.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/casimir.cpp b/src/casimir.cpp index f0e234896..10756d595 100644 --- a/src/casimir.cpp +++ b/src/casimir.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/cw_fields.cpp b/src/cw_fields.cpp index affda30fb..c7acaa259 100644 --- a/src/cw_fields.cpp +++ b/src/cw_fields.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/dft.cpp b/src/dft.cpp index f97bbe730..1aecc2e55 100644 --- a/src/dft.cpp +++ b/src/dft.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/dft_ldos.cpp b/src/dft_ldos.cpp index b892efa36..ee828c58d 100644 --- a/src/dft_ldos.cpp +++ b/src/dft_ldos.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/energy_and_flux.cpp b/src/energy_and_flux.cpp index 889785d09..d61772b2c 100644 --- a/src/energy_and_flux.cpp +++ b/src/energy_and_flux.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/fields.cpp b/src/fields.cpp index d9dcda7df..608aeebb7 100644 --- a/src/fields.cpp +++ b/src/fields.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/fields_dump.cpp b/src/fields_dump.cpp index 9ccc84e01..fe704a393 100644 --- a/src/fields_dump.cpp +++ b/src/fields_dump.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/h5fields.cpp b/src/h5fields.cpp index d7840f89d..50f7af576 100644 --- a/src/h5fields.cpp +++ b/src/h5fields.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/h5file.cpp b/src/h5file.cpp index 366e5d63c..0271d064d 100644 --- a/src/h5file.cpp +++ b/src/h5file.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology * * 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/initialize.cpp b/src/initialize.cpp index 1050bb051..4bad747c5 100644 --- a/src/initialize.cpp +++ b/src/initialize.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/integrate.cpp b/src/integrate.cpp index c94a63e09..23fe3bb9e 100644 --- a/src/integrate.cpp +++ b/src/integrate.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/integrate2.cpp b/src/integrate2.cpp index f8671987c..74082547a 100644 --- a/src/integrate2.cpp +++ b/src/integrate2.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/loop_in_chunks.cpp b/src/loop_in_chunks.cpp index 3c9bba764..9a5ab062a 100644 --- a/src/loop_in_chunks.cpp +++ b/src/loop_in_chunks.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/material_data.cpp b/src/material_data.cpp index 6bf043a23..774f2a3d3 100644 --- a/src/material_data.cpp +++ b/src/material_data.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/material_data.hpp b/src/material_data.hpp index 94cea0d4f..f81496c29 100644 --- a/src/material_data.hpp +++ b/src/material_data.hpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/meep.hpp b/src/meep.hpp index 6c15378a2..28f784018 100644 --- a/src/meep.hpp +++ b/src/meep.hpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/meep/mympi.hpp b/src/meep/mympi.hpp index 1f29200ea..0c0e9770f 100644 --- a/src/meep/mympi.hpp +++ b/src/meep/mympi.hpp @@ -1,5 +1,5 @@ // -*- C++ -*- -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/meep/vec.hpp b/src/meep/vec.hpp index 34ca5cc98..029578b75 100644 --- a/src/meep/vec.hpp +++ b/src/meep/vec.hpp @@ -1,5 +1,5 @@ // -*- C++ -*- -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/meep_internals.hpp b/src/meep_internals.hpp index aeebb7bc3..45c265c50 100644 --- a/src/meep_internals.hpp +++ b/src/meep_internals.hpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/meepgeom.cpp b/src/meepgeom.cpp index 7b8e565b9..8d5b262f6 100644 --- a/src/meepgeom.cpp +++ b/src/meepgeom.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/meepgeom.hpp b/src/meepgeom.hpp index 3e7d0a681..1cebea9e0 100644 --- a/src/meepgeom.hpp +++ b/src/meepgeom.hpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/monitor.cpp b/src/monitor.cpp index 46082332f..8b355defe 100644 --- a/src/monitor.cpp +++ b/src/monitor.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/mpb.cpp b/src/mpb.cpp index 6bc865a18..eef75dc8b 100644 --- a/src/mpb.cpp +++ b/src/mpb.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/multilevel-atom.cpp b/src/multilevel-atom.cpp index ac5a6e6cd..df9c2213f 100644 --- a/src/multilevel-atom.cpp +++ b/src/multilevel-atom.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/mympi.cpp b/src/mympi.cpp index 1f018166a..501e987bf 100644 --- a/src/mympi.cpp +++ b/src/mympi.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/near2far.cpp b/src/near2far.cpp index 7be72038b..e9af33160 100644 --- a/src/near2far.cpp +++ b/src/near2far.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/output_directory.cpp b/src/output_directory.cpp index a1ded3c89..caec99187 100644 --- a/src/output_directory.cpp +++ b/src/output_directory.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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.cpp b/src/random.cpp index dea67d297..928ca6738 100644 --- a/src/random.cpp +++ b/src/random.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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.cpp b/src/sources.cpp index 5476dc1e6..4f58e99c3 100644 --- a/src/sources.cpp +++ b/src/sources.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/sphere-quad.cpp b/src/sphere-quad.cpp index 9e7ad07f1..84b36c264 100644 --- a/src/sphere-quad.cpp +++ b/src/sphere-quad.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/step.cpp b/src/step.cpp index efeb6b625..c8c69b5e9 100644 --- a/src/step.cpp +++ b/src/step.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/step_db.cpp b/src/step_db.cpp index a692140d8..1f08c7802 100644 --- a/src/step_db.cpp +++ b/src/step_db.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/stress.cpp b/src/stress.cpp index 8f1623d2d..8cc1a6e2d 100644 --- a/src/stress.cpp +++ b/src/stress.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/structure.cpp b/src/structure.cpp index ceb11f221..c36e121b5 100644 --- a/src/structure.cpp +++ b/src/structure.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/structure_dump.cpp b/src/structure_dump.cpp index e12cc88d0..e0db507d7 100644 --- a/src/structure_dump.cpp +++ b/src/structure_dump.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/susceptibility.cpp b/src/susceptibility.cpp index 7e9fa30fb..d160dcdb2 100644 --- a/src/susceptibility.cpp +++ b/src/susceptibility.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/time.cpp b/src/time.cpp index f0d561eb3..f6eabf181 100644 --- a/src/time.cpp +++ b/src/time.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/update_eh.cpp b/src/update_eh.cpp index efd7d3ffe..0a28c21af 100644 --- a/src/update_eh.cpp +++ b/src/update_eh.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/update_pols.cpp b/src/update_pols.cpp index 8afdb4ec4..c4a569921 100644 --- a/src/update_pols.cpp +++ b/src/update_pols.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/vec.cpp b/src/vec.cpp index e4bf55a92..1a9c56bd4 100644 --- a/src/vec.cpp +++ b/src/vec.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/tests/aniso_disp.cpp b/tests/aniso_disp.cpp index 0b4780f10..5b4980b7e 100644 --- a/tests/aniso_disp.cpp +++ b/tests/aniso_disp.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/tests/bench.cpp b/tests/bench.cpp index 2817fa8b9..860e4a398 100644 --- a/tests/bench.cpp +++ b/tests/bench.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/tests/bragg_transmission.cpp b/tests/bragg_transmission.cpp index eb1d2a3eb..7830b2031 100644 --- a/tests/bragg_transmission.cpp +++ b/tests/bragg_transmission.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/tests/cylindrical.cpp b/tests/cylindrical.cpp index d7e2ee9bb..831fcd74e 100644 --- a/tests/cylindrical.cpp +++ b/tests/cylindrical.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/tests/dump_load.cpp b/tests/dump_load.cpp index fef2006fd..befa65443 100644 --- a/tests/dump_load.cpp +++ b/tests/dump_load.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/tests/flux.cpp b/tests/flux.cpp index f3b52c38a..94d8a63e1 100644 --- a/tests/flux.cpp +++ b/tests/flux.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/tests/harmonics.cpp b/tests/harmonics.cpp index 2f318c035..9deb62035 100644 --- a/tests/harmonics.cpp +++ b/tests/harmonics.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/tests/integrate.cpp b/tests/integrate.cpp index 2bcf84549..78a7ff404 100644 --- a/tests/integrate.cpp +++ b/tests/integrate.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology. +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology. * * 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/tests/known_results.cpp b/tests/known_results.cpp index cab12ee87..773e0346a 100644 --- a/tests/known_results.cpp +++ b/tests/known_results.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/tests/near2far.cpp b/tests/near2far.cpp index be1e89bca..164a8e15e 100644 --- a/tests/near2far.cpp +++ b/tests/near2far.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/tests/one_dimensional.cpp b/tests/one_dimensional.cpp index 693b4f6e4..14558e63d 100644 --- a/tests/one_dimensional.cpp +++ b/tests/one_dimensional.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/tests/physical.cpp b/tests/physical.cpp index 3955a894d..938c088a3 100644 --- a/tests/physical.cpp +++ b/tests/physical.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/tests/symmetry.cpp b/tests/symmetry.cpp index 5a9d1d775..4997c38ba 100644 --- a/tests/symmetry.cpp +++ b/tests/symmetry.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/tests/three_d.cpp b/tests/three_d.cpp index 3977b0e7d..428635ab6 100644 --- a/tests/three_d.cpp +++ b/tests/three_d.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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/tests/two_dimensional.cpp b/tests/two_dimensional.cpp index a5e30a467..f6f62c0aa 100644 --- a/tests/two_dimensional.cpp +++ b/tests/two_dimensional.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2021 Massachusetts Institute of Technology +/* Copyright (C) 2005-2022 Massachusetts Institute of Technology % % 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