Skip to content

Commit

Permalink
Update copyright information
Browse files Browse the repository at this point in the history
  • Loading branch information
Weslley da Silva Pereira committed Jun 21, 2024
1 parent 84557ee commit 63b7e7b
Show file tree
Hide file tree
Showing 26 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion blackboxopt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Black-Box Optimization Library"""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC

# 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
Expand Down
2 changes: 1 addition & 1 deletion blackboxopt/acquisition.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Acquisition functions for surrogate optimization."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC
# Copyright (C) 2014 Cornell University

# This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion blackboxopt/optimize.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Optimization algorithms for blackboxopt."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC
# Copyright (C) 2014 Cornell University

# This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion blackboxopt/problem.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Problem definitions for interfacing with pymoo."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC

# 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
Expand Down
2 changes: 1 addition & 1 deletion blackboxopt/rbf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Radial Basis Function model."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC

# 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
Expand Down
2 changes: 1 addition & 1 deletion blackboxopt/sampling.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Sampling strategies for the optimization algorithms."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC
# Copyright (C) 2014 Cornell University

# This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion examples/multiobj/pareto_front.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"\"\"\"Example of finding the pareto front of a set,\n",
"and finding target values to fill gaps in the front\"\"\"\n",
"\n",
"# Copyright (C) 2024 National Renewable Energy Laboratory\n",
"# Copyright (c) 2024 Alliance for Sustainable Energy, LLC\n",
"\n",
"# This program is free software: you can redistribute it and/or modify\n",
"# it under the terms of the GNU General Public License as published by\n",
Expand Down
2 changes: 1 addition & 1 deletion examples/multiobj/socemo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"source": [
"\"\"\"Example showing the use of SOCEMO for multi-objective optimization\"\"\"\n",
"\n",
"# Copyright (C) 2024 National Renewable Energy Laboratory\n",
"# Copyright (c) 2024 Alliance for Sustainable Energy, LLC\n",
"\n",
"# This program is free software: you can redistribute it and/or modify\n",
"# it under the terms of the GNU General Public License as published by\n",
Expand Down
2 changes: 1 addition & 1 deletion examples/opt_with_constr/example_gosac_1.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Example of using GOSAC to optimize a function with constraints."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC

# 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
Expand Down
2 changes: 1 addition & 1 deletion examples/opt_with_constr/example_gosac_2.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Example of using GOSAC to optimize a function with constraints."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC

# 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
Expand Down
2 changes: 1 addition & 1 deletion examples/sampling.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.2"
"version": "3.9.13"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion examples/single_obj_rbf/LocalStochRBFstop.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Simple example for the usage of the minimize function with no restarts."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC
# Copyright (C) 2013 Cornell University

# This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion examples/single_obj_rbf/compareLearningStrategies.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Compare different learning strategies for RBF surrogate optimization."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC

# 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
Expand Down
2 changes: 1 addition & 1 deletion examples/single_obj_rbf/data.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Data class for the problem definition."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC
# Copyright (C) 2013 Cornell University

# This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion examples/single_obj_rbf/datainput_Branin.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Data class for the Branin problem definition."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC
# Copyright (C) 2013 Cornell University

# This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion examples/single_obj_rbf/datainput_BraninWithInteger.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Data class for the Branin problem definition."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC
# Copyright (C) 2013 Cornell University

# This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion examples/single_obj_rbf/datainput_hartman3.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Data class for the Hartman3 problem definition."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC
# Copyright (C) 2013 Cornell University

# This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion examples/single_obj_rbf/datainput_rastrigin.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Data class for the Rastigrin problem definition."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC
# Copyright (C) 2014 Cornell University

# This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion examples/single_obj_rbf/optprogram1.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Example with optimization and plot."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC
# Copyright (C) 2014 Cornell University

# This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion examples/vlse_benchmark/vlse_bench.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"source": [
"\"\"\"Show the results of the optimization on the VLSE benchmark.\"\"\"\n",
"\n",
"# Copyright (C) 2024 National Renewable Energy Laboratory\n",
"# Copyright (c) 2024 Alliance for Sustainable Energy, LLC\n",
"\n",
"# This program is free software: you can redistribute it and/or modify\n",
"# it under the terms of the GNU General Public License as published by\n",
Expand Down
2 changes: 1 addition & 1 deletion examples/vlse_benchmark/vlse_bench.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Run the optimization on the VLSE benchmark."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC

# 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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_optimize.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Test the optimization routines."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC

# 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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_rbf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Test the RBF model."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC

# 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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_sampling.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Test the sampling functions."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC

# 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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_vlse_bench.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Test functions from the VLSE benchmark."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC

# 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
Expand Down
2 changes: 1 addition & 1 deletion tests/vlse_benchmark/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Python interface to the Virtual Library of Simulation Experiments."""

# Copyright (C) 2024 National Renewable Energy Laboratory
# Copyright (c) 2024 Alliance for Sustainable Energy, LLC

# 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
Expand Down

0 comments on commit 63b7e7b

Please sign in to comment.