From 2974285f3fe6c4c7b8e3a950f02ce1b6b311ca72 Mon Sep 17 00:00:00 2001 From: muxator Date: Sat, 24 Feb 2024 11:24:19 +0100 Subject: [PATCH] chore: update copyright notice 2023 -> 2024 The following scripts (purposedly verbose) was used: scripts/check_copyright.py | grep -E -v "^The following files are not well formatted:|^OK" | xargs -I {} sed --in-place --regexp-extended "s/# Copyright \(C\) 2021-2023 Banca d'Italia/# Copyright (C) 2021-2024 Banca d'Italia/g" {} --- black_it/__init__.py | 2 +- black_it/calibrator.py | 2 +- black_it/loss_functions/__init__.py | 2 +- black_it/loss_functions/base.py | 2 +- black_it/loss_functions/fourier.py | 2 +- black_it/loss_functions/gsl_div.py | 2 +- black_it/loss_functions/likelihood.py | 2 +- black_it/loss_functions/minkowski.py | 2 +- black_it/loss_functions/msm.py | 2 +- black_it/plot/__init__.py | 2 +- black_it/plot/plot_descriptive_statistics.py | 2 +- black_it/plot/plot_results.py | 2 +- black_it/samplers/__init__.py | 2 +- black_it/samplers/base.py | 2 +- black_it/samplers/best_batch.py | 2 +- black_it/samplers/cors.py | 2 +- black_it/samplers/gaussian_process.py | 2 +- black_it/samplers/halton.py | 2 +- black_it/samplers/particle_swarm.py | 2 +- black_it/samplers/r_sequence.py | 2 +- black_it/samplers/random_forest.py | 2 +- black_it/samplers/random_uniform.py | 2 +- black_it/samplers/surrogate.py | 2 +- black_it/samplers/xgboost.py | 2 +- black_it/schedulers/__init__.py | 2 +- black_it/schedulers/base.py | 2 +- black_it/schedulers/rl/__init__.py | 2 +- black_it/schedulers/rl/agents/__init__.py | 2 +- black_it/schedulers/rl/agents/base.py | 2 +- black_it/schedulers/rl/agents/epsilon_greedy.py | 2 +- black_it/schedulers/rl/envs/__init__.py | 2 +- black_it/schedulers/rl/envs/base.py | 2 +- black_it/schedulers/rl/envs/mab.py | 2 +- black_it/schedulers/rl/rl_scheduler.py | 2 +- black_it/schedulers/round_robin.py | 2 +- black_it/search_space.py | 2 +- black_it/utils/__init__.py | 2 +- black_it/utils/base.py | 2 +- black_it/utils/json_pandas_checkpointing.py | 2 +- black_it/utils/seedable.py | 2 +- black_it/utils/sqlite3_checkpointing.py | 2 +- black_it/utils/time_series.py | 2 +- examples/models/__init__.py | 2 +- examples/models/economics/__init__.py | 2 +- examples/models/economics/boltzmann_wealth.py | 2 +- examples/models/economics/brock_hommes.py | 2 +- examples/models/forest_fire/__init__.py | 2 +- examples/models/forest_fire/forest_fire.py | 2 +- examples/models/simple_models.py | 2 +- examples/models/sir/__init__.py | 2 +- examples/models/sir/simlib.py | 2 +- examples/models/sir/sir_docker.py | 2 +- examples/models/sir/sir_python.py | 2 +- scripts/check_copyright.py | 4 ++-- tests/__init__.py | 2 +- tests/conftest.py | 2 +- tests/fixtures/__init__.py | 2 +- tests/test_calibrator.py | 2 +- tests/test_docs/__init__.py | 2 +- tests/test_docs/base.py | 2 +- tests/test_docs/test_index.py | 2 +- tests/test_docs/test_readme.py | 2 +- tests/test_examples/__init__.py | 2 +- tests/test_examples/base.py | 2 +- tests/test_examples/test_brock_hommes.py | 2 +- tests/test_examples/test_docker_sir.py | 2 +- tests/test_examples/test_main.py | 2 +- tests/test_examples/test_sir_python.py | 2 +- tests/test_losses/__init__.py | 2 +- tests/test_losses/test_base.py | 2 +- tests/test_losses/test_fourier.py | 2 +- tests/test_losses/test_gsl.py | 2 +- tests/test_losses/test_likelihood.py | 2 +- tests/test_losses/test_minkowski.py | 2 +- tests/test_losses/test_msm.py | 2 +- tests/test_plot/__init__.py | 2 +- tests/test_plot/base.py | 2 +- tests/test_plot/test_plot_descriptive_statistics.py | 2 +- tests/test_plot/test_plot_results.py | 2 +- tests/test_samplers/__init__.py | 2 +- tests/test_samplers/test_base.py | 2 +- tests/test_samplers/test_best_batch.py | 2 +- tests/test_samplers/test_cors.py | 2 +- tests/test_samplers/test_gaussian_process.py | 2 +- tests/test_samplers/test_halton.py | 2 +- tests/test_samplers/test_particle_swarm.py | 2 +- tests/test_samplers/test_random_forest.py | 2 +- tests/test_samplers/test_random_uniform.py | 2 +- tests/test_samplers/test_rseq.py | 2 +- tests/test_samplers/test_xgboost.py | 2 +- tests/test_search_space.py | 2 +- tests/test_utils/__init__.py | 2 +- tests/test_utils/test_base.py | 2 +- tests/test_utils/test_pandas_json_checkpointing.py | 2 +- tests/test_utils/test_seedable.py | 2 +- tests/test_utils/test_sqlite3_checkpointing.py | 2 +- tests/test_utils/test_time_series.py | 2 +- tests/utils/__init__.py | 2 +- tests/utils/base.py | 2 +- tests/utils/docs.py | 2 +- tests/utils/strategies.py | 2 +- 101 files changed, 102 insertions(+), 102 deletions(-) diff --git a/black_it/__init__.py b/black_it/__init__.py index 4ebfa841..ffc3aa3d 100644 --- a/black_it/__init__.py +++ b/black_it/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/calibrator.py b/black_it/calibrator.py index 6809f76e..40e8ffff 100644 --- a/black_it/calibrator.py +++ b/black_it/calibrator.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/loss_functions/__init__.py b/black_it/loss_functions/__init__.py index 5d26ec4f..8108f58e 100644 --- a/black_it/loss_functions/__init__.py +++ b/black_it/loss_functions/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/loss_functions/base.py b/black_it/loss_functions/base.py index 1272131e..09152b69 100644 --- a/black_it/loss_functions/base.py +++ b/black_it/loss_functions/base.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/loss_functions/fourier.py b/black_it/loss_functions/fourier.py index b37ab7f8..65750033 100644 --- a/black_it/loss_functions/fourier.py +++ b/black_it/loss_functions/fourier.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/loss_functions/gsl_div.py b/black_it/loss_functions/gsl_div.py index 052efcf4..f70696bc 100644 --- a/black_it/loss_functions/gsl_div.py +++ b/black_it/loss_functions/gsl_div.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/loss_functions/likelihood.py b/black_it/loss_functions/likelihood.py index bb90602c..39243941 100644 --- a/black_it/loss_functions/likelihood.py +++ b/black_it/loss_functions/likelihood.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/loss_functions/minkowski.py b/black_it/loss_functions/minkowski.py index cab21da7..c3147d76 100644 --- a/black_it/loss_functions/minkowski.py +++ b/black_it/loss_functions/minkowski.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/loss_functions/msm.py b/black_it/loss_functions/msm.py index c4bc3794..31841df9 100644 --- a/black_it/loss_functions/msm.py +++ b/black_it/loss_functions/msm.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/plot/__init__.py b/black_it/plot/__init__.py index 5e5768c1..f96423ef 100644 --- a/black_it/plot/__init__.py +++ b/black_it/plot/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/plot/plot_descriptive_statistics.py b/black_it/plot/plot_descriptive_statistics.py index 8824af4e..f424ae18 100644 --- a/black_it/plot/plot_descriptive_statistics.py +++ b/black_it/plot/plot_descriptive_statistics.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/plot/plot_results.py b/black_it/plot/plot_results.py index 123ef857..68bceec2 100644 --- a/black_it/plot/plot_results.py +++ b/black_it/plot/plot_results.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/samplers/__init__.py b/black_it/samplers/__init__.py index bd82d98d..b25c80a2 100644 --- a/black_it/samplers/__init__.py +++ b/black_it/samplers/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/samplers/base.py b/black_it/samplers/base.py index de1fd453..a8c0b0dd 100644 --- a/black_it/samplers/base.py +++ b/black_it/samplers/base.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/samplers/best_batch.py b/black_it/samplers/best_batch.py index 164c9df3..a6066779 100644 --- a/black_it/samplers/best_batch.py +++ b/black_it/samplers/best_batch.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/samplers/cors.py b/black_it/samplers/cors.py index d151e97c..de96b51e 100644 --- a/black_it/samplers/cors.py +++ b/black_it/samplers/cors.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/samplers/gaussian_process.py b/black_it/samplers/gaussian_process.py index c40a731e..d0318866 100644 --- a/black_it/samplers/gaussian_process.py +++ b/black_it/samplers/gaussian_process.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/samplers/halton.py b/black_it/samplers/halton.py index e79c84c4..e4550f0c 100644 --- a/black_it/samplers/halton.py +++ b/black_it/samplers/halton.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/samplers/particle_swarm.py b/black_it/samplers/particle_swarm.py index 4e22dfb5..adf69811 100644 --- a/black_it/samplers/particle_swarm.py +++ b/black_it/samplers/particle_swarm.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/samplers/r_sequence.py b/black_it/samplers/r_sequence.py index 070f7301..0762ceb6 100644 --- a/black_it/samplers/r_sequence.py +++ b/black_it/samplers/r_sequence.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/samplers/random_forest.py b/black_it/samplers/random_forest.py index d639abe2..321869f4 100644 --- a/black_it/samplers/random_forest.py +++ b/black_it/samplers/random_forest.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/samplers/random_uniform.py b/black_it/samplers/random_uniform.py index 8a817151..c5819f48 100644 --- a/black_it/samplers/random_uniform.py +++ b/black_it/samplers/random_uniform.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/samplers/surrogate.py b/black_it/samplers/surrogate.py index ce453625..38bc9c48 100644 --- a/black_it/samplers/surrogate.py +++ b/black_it/samplers/surrogate.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/samplers/xgboost.py b/black_it/samplers/xgboost.py index ffb70aa2..275cea5b 100644 --- a/black_it/samplers/xgboost.py +++ b/black_it/samplers/xgboost.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/schedulers/__init__.py b/black_it/schedulers/__init__.py index e1a74c29..2658ba8f 100644 --- a/black_it/schedulers/__init__.py +++ b/black_it/schedulers/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/schedulers/base.py b/black_it/schedulers/base.py index 88edf2a5..1af5aa6a 100644 --- a/black_it/schedulers/base.py +++ b/black_it/schedulers/base.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/schedulers/rl/__init__.py b/black_it/schedulers/rl/__init__.py index 5d82cdbc..b1901ff1 100644 --- a/black_it/schedulers/rl/__init__.py +++ b/black_it/schedulers/rl/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/schedulers/rl/agents/__init__.py b/black_it/schedulers/rl/agents/__init__.py index 4d8d0ac1..2246deb0 100644 --- a/black_it/schedulers/rl/agents/__init__.py +++ b/black_it/schedulers/rl/agents/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/schedulers/rl/agents/base.py b/black_it/schedulers/rl/agents/base.py index 41e377f4..c43bda52 100644 --- a/black_it/schedulers/rl/agents/base.py +++ b/black_it/schedulers/rl/agents/base.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/schedulers/rl/agents/epsilon_greedy.py b/black_it/schedulers/rl/agents/epsilon_greedy.py index 73d93219..e097d4db 100644 --- a/black_it/schedulers/rl/agents/epsilon_greedy.py +++ b/black_it/schedulers/rl/agents/epsilon_greedy.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/schedulers/rl/envs/__init__.py b/black_it/schedulers/rl/envs/__init__.py index 7f925f07..d4b014d1 100644 --- a/black_it/schedulers/rl/envs/__init__.py +++ b/black_it/schedulers/rl/envs/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/schedulers/rl/envs/base.py b/black_it/schedulers/rl/envs/base.py index 13957268..81c94de8 100644 --- a/black_it/schedulers/rl/envs/base.py +++ b/black_it/schedulers/rl/envs/base.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/schedulers/rl/envs/mab.py b/black_it/schedulers/rl/envs/mab.py index 7304dfbf..7e3560e2 100644 --- a/black_it/schedulers/rl/envs/mab.py +++ b/black_it/schedulers/rl/envs/mab.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/schedulers/rl/rl_scheduler.py b/black_it/schedulers/rl/rl_scheduler.py index 7074ea87..3c88b814 100644 --- a/black_it/schedulers/rl/rl_scheduler.py +++ b/black_it/schedulers/rl/rl_scheduler.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/schedulers/round_robin.py b/black_it/schedulers/round_robin.py index dc6a9a5f..3556f448 100644 --- a/black_it/schedulers/round_robin.py +++ b/black_it/schedulers/round_robin.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/search_space.py b/black_it/search_space.py index b6f67589..41a55e1c 100644 --- a/black_it/search_space.py +++ b/black_it/search_space.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/utils/__init__.py b/black_it/utils/__init__.py index 5d1364e8..e57f242a 100644 --- a/black_it/utils/__init__.py +++ b/black_it/utils/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/utils/base.py b/black_it/utils/base.py index d1fb4586..21a795b2 100644 --- a/black_it/utils/base.py +++ b/black_it/utils/base.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/utils/json_pandas_checkpointing.py b/black_it/utils/json_pandas_checkpointing.py index fe36b76a..b740e6ad 100644 --- a/black_it/utils/json_pandas_checkpointing.py +++ b/black_it/utils/json_pandas_checkpointing.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/utils/seedable.py b/black_it/utils/seedable.py index 81242af5..99525a17 100644 --- a/black_it/utils/seedable.py +++ b/black_it/utils/seedable.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/utils/sqlite3_checkpointing.py b/black_it/utils/sqlite3_checkpointing.py index 9e82bce8..bde439c5 100644 --- a/black_it/utils/sqlite3_checkpointing.py +++ b/black_it/utils/sqlite3_checkpointing.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/black_it/utils/time_series.py b/black_it/utils/time_series.py index 3c3d3464..aad234e5 100644 --- a/black_it/utils/time_series.py +++ b/black_it/utils/time_series.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/examples/models/__init__.py b/examples/models/__init__.py index 67faa561..d3534fd6 100644 --- a/examples/models/__init__.py +++ b/examples/models/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/examples/models/economics/__init__.py b/examples/models/economics/__init__.py index 74070f49..b4358366 100644 --- a/examples/models/economics/__init__.py +++ b/examples/models/economics/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/examples/models/economics/boltzmann_wealth.py b/examples/models/economics/boltzmann_wealth.py index ef87936f..0f23b74d 100644 --- a/examples/models/economics/boltzmann_wealth.py +++ b/examples/models/economics/boltzmann_wealth.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/examples/models/economics/brock_hommes.py b/examples/models/economics/brock_hommes.py index 7fc49155..5bab458f 100644 --- a/examples/models/economics/brock_hommes.py +++ b/examples/models/economics/brock_hommes.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/examples/models/forest_fire/__init__.py b/examples/models/forest_fire/__init__.py index 2025b2b5..bce3e383 100644 --- a/examples/models/forest_fire/__init__.py +++ b/examples/models/forest_fire/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/examples/models/forest_fire/forest_fire.py b/examples/models/forest_fire/forest_fire.py index 86e33e7a..953f5f35 100644 --- a/examples/models/forest_fire/forest_fire.py +++ b/examples/models/forest_fire/forest_fire.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/examples/models/simple_models.py b/examples/models/simple_models.py index 47aeb78d..32853314 100644 --- a/examples/models/simple_models.py +++ b/examples/models/simple_models.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/examples/models/sir/__init__.py b/examples/models/sir/__init__.py index d8bc05a5..02cfbb9f 100644 --- a/examples/models/sir/__init__.py +++ b/examples/models/sir/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/examples/models/sir/simlib.py b/examples/models/sir/simlib.py index 016ec815..656f6014 100644 --- a/examples/models/sir/simlib.py +++ b/examples/models/sir/simlib.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/examples/models/sir/sir_docker.py b/examples/models/sir/sir_docker.py index aad3328c..8c0b7c24 100644 --- a/examples/models/sir/sir_docker.py +++ b/examples/models/sir/sir_docker.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/examples/models/sir/sir_python.py b/examples/models/sir/sir_python.py index 676f7460..4074cf3a 100644 --- a/examples/models/sir/sir_python.py +++ b/examples/models/sir/sir_python.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/scripts/check_copyright.py b/scripts/check_copyright.py index 84c2cf04..980d4a38 100755 --- a/scripts/check_copyright.py +++ b/scripts/check_copyright.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -32,7 +32,7 @@ HEADER_REGEX = re.compile( r"""(#!/usr/bin/env python3 )?# Black-box ABM Calibration Kit \(Black-it\) -# Copyright \(C\) 2021-2023 Banca d'Italia +# Copyright \(C\) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/__init__.py b/tests/__init__.py index ba5634ee..31195a0b 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/conftest.py b/tests/conftest.py index c4357044..e295d6a2 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/fixtures/__init__.py b/tests/fixtures/__init__.py index d18986a8..0b627006 100644 --- a/tests/fixtures/__init__.py +++ b/tests/fixtures/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_calibrator.py b/tests/test_calibrator.py index e812bb53..4abec038 100644 --- a/tests/test_calibrator.py +++ b/tests/test_calibrator.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_docs/__init__.py b/tests/test_docs/__init__.py index 43f54c90..88e62f42 100644 --- a/tests/test_docs/__init__.py +++ b/tests/test_docs/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_docs/base.py b/tests/test_docs/base.py index 05c4dc69..fc1ae818 100644 --- a/tests/test_docs/base.py +++ b/tests/test_docs/base.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_docs/test_index.py b/tests/test_docs/test_index.py index 05905937..d43a3643 100644 --- a/tests/test_docs/test_index.py +++ b/tests/test_docs/test_index.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_docs/test_readme.py b/tests/test_docs/test_readme.py index 064f3415..3ef93b4a 100644 --- a/tests/test_docs/test_readme.py +++ b/tests/test_docs/test_readme.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_examples/__init__.py b/tests/test_examples/__init__.py index e71d0b65..9571ac81 100644 --- a/tests/test_examples/__init__.py +++ b/tests/test_examples/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_examples/base.py b/tests/test_examples/base.py index b7059835..3c2a9510 100644 --- a/tests/test_examples/base.py +++ b/tests/test_examples/base.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_examples/test_brock_hommes.py b/tests/test_examples/test_brock_hommes.py index 2f061c68..0d07bf9e 100644 --- a/tests/test_examples/test_brock_hommes.py +++ b/tests/test_examples/test_brock_hommes.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_examples/test_docker_sir.py b/tests/test_examples/test_docker_sir.py index 8b4eafc5..76893d68 100644 --- a/tests/test_examples/test_docker_sir.py +++ b/tests/test_examples/test_docker_sir.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_examples/test_main.py b/tests/test_examples/test_main.py index 3450032f..9cbb41e2 100644 --- a/tests/test_examples/test_main.py +++ b/tests/test_examples/test_main.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_examples/test_sir_python.py b/tests/test_examples/test_sir_python.py index 0bbea2cf..c7f264ed 100644 --- a/tests/test_examples/test_sir_python.py +++ b/tests/test_examples/test_sir_python.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_losses/__init__.py b/tests/test_losses/__init__.py index 5a076382..4a491197 100644 --- a/tests/test_losses/__init__.py +++ b/tests/test_losses/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_losses/test_base.py b/tests/test_losses/test_base.py index 438b4761..9b82c445 100644 --- a/tests/test_losses/test_base.py +++ b/tests/test_losses/test_base.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_losses/test_fourier.py b/tests/test_losses/test_fourier.py index a60b36de..6429e83c 100644 --- a/tests/test_losses/test_fourier.py +++ b/tests/test_losses/test_fourier.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_losses/test_gsl.py b/tests/test_losses/test_gsl.py index d812a571..935cde2f 100644 --- a/tests/test_losses/test_gsl.py +++ b/tests/test_losses/test_gsl.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_losses/test_likelihood.py b/tests/test_losses/test_likelihood.py index e3a0dfcd..4ea7a575 100644 --- a/tests/test_losses/test_likelihood.py +++ b/tests/test_losses/test_likelihood.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_losses/test_minkowski.py b/tests/test_losses/test_minkowski.py index 053a75e2..3e90b1d4 100644 --- a/tests/test_losses/test_minkowski.py +++ b/tests/test_losses/test_minkowski.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_losses/test_msm.py b/tests/test_losses/test_msm.py index e0ca8a5e..78adb013 100644 --- a/tests/test_losses/test_msm.py +++ b/tests/test_losses/test_msm.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_plot/__init__.py b/tests/test_plot/__init__.py index ae78d03c..33fbb6b6 100644 --- a/tests/test_plot/__init__.py +++ b/tests/test_plot/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_plot/base.py b/tests/test_plot/base.py index a8077e06..a009aedb 100644 --- a/tests/test_plot/base.py +++ b/tests/test_plot/base.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_plot/test_plot_descriptive_statistics.py b/tests/test_plot/test_plot_descriptive_statistics.py index 6c9b4bc0..6092edb3 100644 --- a/tests/test_plot/test_plot_descriptive_statistics.py +++ b/tests/test_plot/test_plot_descriptive_statistics.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_plot/test_plot_results.py b/tests/test_plot/test_plot_results.py index a4a7b7b0..5f802b9a 100644 --- a/tests/test_plot/test_plot_results.py +++ b/tests/test_plot/test_plot_results.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_samplers/__init__.py b/tests/test_samplers/__init__.py index 8698674b..be7cf5d0 100644 --- a/tests/test_samplers/__init__.py +++ b/tests/test_samplers/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_samplers/test_base.py b/tests/test_samplers/test_base.py index 13bbb1be..6c76afcd 100644 --- a/tests/test_samplers/test_base.py +++ b/tests/test_samplers/test_base.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_samplers/test_best_batch.py b/tests/test_samplers/test_best_batch.py index 2f13c7d2..f9bdd0bf 100644 --- a/tests/test_samplers/test_best_batch.py +++ b/tests/test_samplers/test_best_batch.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_samplers/test_cors.py b/tests/test_samplers/test_cors.py index c19ad47a..69387f39 100644 --- a/tests/test_samplers/test_cors.py +++ b/tests/test_samplers/test_cors.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_samplers/test_gaussian_process.py b/tests/test_samplers/test_gaussian_process.py index 3f2a8d3a..83471a76 100644 --- a/tests/test_samplers/test_gaussian_process.py +++ b/tests/test_samplers/test_gaussian_process.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_samplers/test_halton.py b/tests/test_samplers/test_halton.py index 7198e983..73b28d0f 100644 --- a/tests/test_samplers/test_halton.py +++ b/tests/test_samplers/test_halton.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_samplers/test_particle_swarm.py b/tests/test_samplers/test_particle_swarm.py index 38c3de37..8ae2f456 100644 --- a/tests/test_samplers/test_particle_swarm.py +++ b/tests/test_samplers/test_particle_swarm.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_samplers/test_random_forest.py b/tests/test_samplers/test_random_forest.py index f6ee95a6..e7771973 100644 --- a/tests/test_samplers/test_random_forest.py +++ b/tests/test_samplers/test_random_forest.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_samplers/test_random_uniform.py b/tests/test_samplers/test_random_uniform.py index 7f7e7091..49a20ecf 100644 --- a/tests/test_samplers/test_random_uniform.py +++ b/tests/test_samplers/test_random_uniform.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_samplers/test_rseq.py b/tests/test_samplers/test_rseq.py index d7927222..c1b709ff 100644 --- a/tests/test_samplers/test_rseq.py +++ b/tests/test_samplers/test_rseq.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_samplers/test_xgboost.py b/tests/test_samplers/test_xgboost.py index 5a7a3c4c..23a36369 100644 --- a/tests/test_samplers/test_xgboost.py +++ b/tests/test_samplers/test_xgboost.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_search_space.py b/tests/test_search_space.py index 54201958..3a87fe74 100644 --- a/tests/test_search_space.py +++ b/tests/test_search_space.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_utils/__init__.py b/tests/test_utils/__init__.py index 69557dab..31b8b66a 100644 --- a/tests/test_utils/__init__.py +++ b/tests/test_utils/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_utils/test_base.py b/tests/test_utils/test_base.py index 4090ce10..b74d5d66 100644 --- a/tests/test_utils/test_base.py +++ b/tests/test_utils/test_base.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_utils/test_pandas_json_checkpointing.py b/tests/test_utils/test_pandas_json_checkpointing.py index f7333d3e..2556d6b3 100644 --- a/tests/test_utils/test_pandas_json_checkpointing.py +++ b/tests/test_utils/test_pandas_json_checkpointing.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_utils/test_seedable.py b/tests/test_utils/test_seedable.py index 5c8c6aa7..3f2e22e5 100644 --- a/tests/test_utils/test_seedable.py +++ b/tests/test_utils/test_seedable.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_utils/test_sqlite3_checkpointing.py b/tests/test_utils/test_sqlite3_checkpointing.py index b01e235f..6e811424 100644 --- a/tests/test_utils/test_sqlite3_checkpointing.py +++ b/tests/test_utils/test_sqlite3_checkpointing.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/test_utils/test_time_series.py b/tests/test_utils/test_time_series.py index 250d55e2..2bd80b6e 100644 --- a/tests/test_utils/test_time_series.py +++ b/tests/test_utils/test_time_series.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/utils/__init__.py b/tests/utils/__init__.py index c91cbeb8..680c3806 100644 --- a/tests/utils/__init__.py +++ b/tests/utils/__init__.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/utils/base.py b/tests/utils/base.py index 48dd9686..59874e53 100644 --- a/tests/utils/base.py +++ b/tests/utils/base.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/utils/docs.py b/tests/utils/docs.py index 38b8447a..6cc70841 100644 --- a/tests/utils/docs.py +++ b/tests/utils/docs.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/tests/utils/strategies.py b/tests/utils/strategies.py index afefd7e6..68d67d7d 100644 --- a/tests/utils/strategies.py +++ b/tests/utils/strategies.py @@ -1,5 +1,5 @@ # Black-box ABM Calibration Kit (Black-it) -# Copyright (C) 2021-2023 Banca d'Italia +# Copyright (C) 2021-2024 Banca d'Italia # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as