diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index 0d13edad3..cb9b26366 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -16,13 +16,7 @@ jobs: sudo apt-add-repository 'deb https://repos.codelite.org/wx3.1.5/ubuntu/ focal universe' sudo apt-get update sudo apt-get install -y automake autoconf - sudo apt-get install -y libwxbase3.1-0-unofficial \ - libwxbase3.1unofficial-dev \ - libwxgtk3.1-0-unofficial \ - libwxgtk3.1unofficial-dev \ - wx3.1-headers \ - wx-common \ - libnotify-dev + sudo apt-get install -y libwxgtk3.2-dev - name: Configure build with autotools run: | aclocal diff --git a/ChangeLog b/ChangeLog index 9a6b902a2..bb08023c3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,19 +1,14 @@ # Changelog -## [16.1.2] - unreleased +## [16.2.1] - 2025-01-06 ### Fixed - Corrected an internal implementation error in `Game.reveal()` in resolving references to information sets and players (#453) - - -## [16.2.1] - unreleased - -### Fixed - Reading .efg and .nfg game files which did not have whitespace at the end would lead to an infinite loop (#457) - Attempting to call the default constructor on Game objects (rather than one of the factory - functions) now raises a more informative excepition (#463) + functions) now raises a more informative exception (#463) ## [16.2.0] - 2024-04-05 diff --git a/configure.ac b/configure.ac index 1ef411049..be1eed43e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl dnl This file is part of Gambit -dnl Copyright (c) 1994-2023, The Gambit Project (http://www.gambit-project.org) +dnl Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) dnl dnl FILE: configure.ac dnl autoconf configuration script for Gambit @@ -20,7 +20,7 @@ dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. dnl -AC_INIT([gambit],[16.2.0]) +AC_INIT([gambit],[16.2.1]) AC_CONFIG_SRCDIR([src/gambit.h]) AM_INIT_AUTOMAKE([subdir-objects foreign]) dnl AC_CONFIG_MACRO_DIR([m4]) diff --git a/contrib/mac/Info.plist b/contrib/mac/Info.plist index d12ca0f90..16cfe66ad 100644 --- a/contrib/mac/Info.plist +++ b/contrib/mac/Info.plist @@ -23,11 +23,11 @@ CFBundleShortVersionString 16.2.0 CFBundleGetInfoString - Gambit version 16.2.0, (c) 1994-2024 The Gambit Project + Gambit version 16.2.1, (c) 1994-2025 The Gambit Project CFBundleLongVersionString - 16.2.0, (c) 1994-2024 The Gambit Project + 16.2.1, (c) 1994-2025 The Gambit Project NSHumanReadableCopyright - Copyright 1994-2024 The Gambit Project + Copyright 1994-2025 The Gambit Project LSRequiresCarbon CSResourcesFileMapped diff --git a/doc/conf.py b/doc/conf.py index 9be20a3c1..e20f458ab 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -42,7 +42,7 @@ # General information about the project. project = "Gambit" -copyright = "1994-2024, The Gambit Project" # noqa +copyright = "1994-2025, The Gambit Project" # noqa # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -51,7 +51,7 @@ # The short X.Y version. version = "16.2" # The full version, including alpha/beta/rc tags. -release = "16.2.0" +release = "16.2.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/index.rst b/doc/index.rst index 3a59c5426..691e67368 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -21,7 +21,7 @@ Key features of Gambit include: Gambit is Free/Open Source software, released under the terms of the -`GNU General Public License `_, +`GNU General Public License `_, Version 2. We hope you will find Gambit useful for both teaching and research @@ -32,9 +32,9 @@ made. If you are citing Gambit in a paper, we suggest a citation of the form: - Savani, Rahul and Turocy, Theodore L. (2024) - Gambit: The package for computation in game theory, Version 16.2.0. - http://www.gambit-project.org. + Savani, Rahul and Turocy, Theodore L. (2025) + Gambit: The package for computation in game theory, Version 16.2.1. + https://www.gambit-project.org. Replace the version number and year as appropriate if you use a different release. diff --git a/gambit.wxs b/gambit.wxs index 424524070..08876df43 100644 --- a/gambit.wxs +++ b/gambit.wxs @@ -1,6 +1,6 @@ - + diff --git a/setup.py b/setup.py index e926c08f3..5766141d0 100644 --- a/setup.py +++ b/setup.py @@ -69,7 +69,7 @@ def readme(): setuptools.setup( name="pygambit", - version="16.2.0", + version="16.2.1", description="The package for computation in game theory", long_description=readme(), classifiers=[ diff --git a/src/core/array.h b/src/core/array.h index e6f034c4d..e4d734fec 100644 --- a/src/core/array.h +++ b/src/core/array.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/array.h // A basic bounds-checked array type diff --git a/src/core/dvector.cc b/src/core/dvector.cc index 969622ba8..15d38be84 100644 --- a/src/core/dvector.cc +++ b/src/core/dvector.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/dvector.cc // Instantiation of doubly partitioned vector types diff --git a/src/core/dvector.h b/src/core/dvector.h index 449e4f8eb..9d206b76f 100644 --- a/src/core/dvector.h +++ b/src/core/dvector.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/dvector.h // Doubly-partitioned vector class diff --git a/src/core/dvector.imp b/src/core/dvector.imp index 5a62afb39..209951a8c 100644 --- a/src/core/dvector.imp +++ b/src/core/dvector.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/dvector.imp // Implementation of doubly-partitioned vector class diff --git a/src/core/function.cc b/src/core/function.cc index 7e6d1c2b5..2dcd72bf6 100644 --- a/src/core/function.cc +++ b/src/core/function.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/function.cc // Implementation of function and function minimization routines diff --git a/src/core/function.h b/src/core/function.h index 0a648c5f6..3762268ee 100644 --- a/src/core/function.h +++ b/src/core/function.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/function.h // Interface to function and function minimization routines diff --git a/src/core/integer.cc b/src/core/integer.cc index eb85ecfb5..aad169b33 100644 --- a/src/core/integer.cc +++ b/src/core/integer.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/integer.cc // Implementation of an arbitrary-length integer class diff --git a/src/core/integer.h b/src/core/integer.h index f508b0fac..51b28e33c 100644 --- a/src/core/integer.h +++ b/src/core/integer.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/integer.h // Interface to an arbitrary-length integer class diff --git a/src/core/list.h b/src/core/list.h index 7b0df7181..53e675413 100644 --- a/src/core/list.h +++ b/src/core/list.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/list.h // A generic (doubly) linked-list container class diff --git a/src/core/matrix.cc b/src/core/matrix.cc index 7f5766511..54189fa35 100644 --- a/src/core/matrix.cc +++ b/src/core/matrix.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/matrix.cc // Instantiation of common matrix types diff --git a/src/core/matrix.h b/src/core/matrix.h index b14b361c3..241c51645 100644 --- a/src/core/matrix.h +++ b/src/core/matrix.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/matrix.h // Interface to a matrix class diff --git a/src/core/matrix.imp b/src/core/matrix.imp index 9356c5ef2..ace3be371 100644 --- a/src/core/matrix.imp +++ b/src/core/matrix.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/matrix.imp // Implementation of matrix method functions diff --git a/src/core/pvector.cc b/src/core/pvector.cc index deacf3bb5..698d8e02d 100644 --- a/src/core/pvector.cc +++ b/src/core/pvector.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/pvector.cc // Instantiation of partitioned vector types diff --git a/src/core/pvector.h b/src/core/pvector.h index 3721db8a8..1b6233346 100644 --- a/src/core/pvector.h +++ b/src/core/pvector.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/pvector.h // Partitioned vector class diff --git a/src/core/pvector.imp b/src/core/pvector.imp index 80d4afdbb..e1bdce227 100644 --- a/src/core/pvector.imp +++ b/src/core/pvector.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/pvector.imp // Implementation of partitioned vector members diff --git a/src/core/rational.cc b/src/core/rational.cc index fe6df6e1d..0895cf6ef 100644 --- a/src/core/rational.cc +++ b/src/core/rational.cc @@ -1,6 +1,6 @@ // -// This file is part of Gambit Copyright (c) 1994-2024, The Gambit -// Project (http://www.gambit-project.org) +// This file is part of Gambit Copyright (c) 1994-2025, The Gambit +// Project (https://www.gambit-project.org) // // FILE: src/libgambit/rational.cc // Implementation of a rational number class diff --git a/src/core/rational.h b/src/core/rational.h index 37b902130..529c942c5 100644 --- a/src/core/rational.h +++ b/src/core/rational.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/rational.h // Interface to a rational number class diff --git a/src/core/recarray.h b/src/core/recarray.h index cd6f05117..d4e087d6d 100644 --- a/src/core/recarray.h +++ b/src/core/recarray.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/recarray.h // Rectangular array base class diff --git a/src/core/sqmatrix.cc b/src/core/sqmatrix.cc index 608ae70a3..0f5f64fb2 100644 --- a/src/core/sqmatrix.cc +++ b/src/core/sqmatrix.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/sqmatrix.cc // Instantiation of common square matrix types diff --git a/src/core/sqmatrix.h b/src/core/sqmatrix.h index ff20f1821..44bb41195 100644 --- a/src/core/sqmatrix.h +++ b/src/core/sqmatrix.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/sqmatrix.h // Implementation of square matrices diff --git a/src/core/sqmatrix.imp b/src/core/sqmatrix.imp index cfec90fde..d1354c3a8 100644 --- a/src/core/sqmatrix.imp +++ b/src/core/sqmatrix.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/sqmatrix.imp // Implementation of square matrices diff --git a/src/core/vector.cc b/src/core/vector.cc index 412dd5975..100f637e4 100644 --- a/src/core/vector.cc +++ b/src/core/vector.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/vector.cc // Instantiation of vector types diff --git a/src/core/vector.h b/src/core/vector.h index a2cd0521b..64a7e4aa7 100644 --- a/src/core/vector.h +++ b/src/core/vector.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/vector.h // A vector class diff --git a/src/core/vector.imp b/src/core/vector.imp index 1c0a1cd5b..58064c63d 100644 --- a/src/core/vector.imp +++ b/src/core/vector.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/vector.imp // Implementation of vector class diff --git a/src/gambit.h b/src/gambit.h index 214aec972..47808e595 100644 --- a/src/gambit.h +++ b/src/gambit.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/gambit.h // Top-level include file for Gambit library diff --git a/src/games/agg/agg.cc b/src/games/agg/agg.cc index 459a98e87..c99e2f19c 100644 --- a/src/games/agg/agg.cc +++ b/src/games/agg/agg.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // Albert Xin Jiang // // FILE: src/libagg/agg.cc diff --git a/src/games/agg/agg.h b/src/games/agg/agg.h index 8275275be..dd92aac1d 100644 --- a/src/games/agg/agg.h +++ b/src/games/agg/agg.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // Albert Xin Jiang // // FILE: src/libagg/agg.h diff --git a/src/games/agg/bagg.h b/src/games/agg/bagg.h index 991b3aeed..88b206254 100644 --- a/src/games/agg/bagg.h +++ b/src/games/agg/bagg.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // Albert Xin Jiang // // FILE: src/libagg/bagg.h diff --git a/src/games/agg/gray.h b/src/games/agg/gray.h index 6fa9246b2..2561ce043 100644 --- a/src/games/agg/gray.h +++ b/src/games/agg/gray.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // Albert Xin Jiang // // FILE: src/libagg/GrayComposition.h diff --git a/src/games/agg/proj_func.h b/src/games/agg/proj_func.h index 4b8bbc53d..e46297f53 100644 --- a/src/games/agg/proj_func.h +++ b/src/games/agg/proj_func.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // Albert Xin Jiang // // FILE: src/libagg/proj_func.h diff --git a/src/games/agg/trie_map.cc b/src/games/agg/trie_map.cc index 852d7479f..98af28422 100644 --- a/src/games/agg/trie_map.cc +++ b/src/games/agg/trie_map.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // Albert Xin Jiang // // FILE: src/libagg/trie_map.cc diff --git a/src/games/agg/trie_map.h b/src/games/agg/trie_map.h index 27366773c..62fa14fc7 100644 --- a/src/games/agg/trie_map.h +++ b/src/games/agg/trie_map.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // Albert Xin Jiang // // FILE: src/libagg/trie_map.h diff --git a/src/games/agg/trie_map.imp b/src/games/agg/trie_map.imp index a82367a37..dd434747d 100644 --- a/src/games/agg/trie_map.imp +++ b/src/games/agg/trie_map.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // Albert Xin Jiang // // FILE: src/libagg/trie_map.imp diff --git a/src/games/behavmixed.cc b/src/games/behavmixed.cc index acfe611da..b2793054e 100644 --- a/src/games/behavmixed.cc +++ b/src/games/behavmixed.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/behav.cc // Instantiation of behavior profile classes. diff --git a/src/games/behavmixed.h b/src/games/behavmixed.h index bccb4fe19..4c4c11cfd 100644 --- a/src/games/behavmixed.h +++ b/src/games/behavmixed.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/behav.h // Behavior strategy profile classes diff --git a/src/games/behavpure.cc b/src/games/behavpure.cc index 81d52cdbc..822083cde 100644 --- a/src/games/behavpure.cc +++ b/src/games/behavpure.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org // // FILE: src/games/behavpure.cc // Implementation of pure behavior profile diff --git a/src/games/behavpure.h b/src/games/behavpure.h index 7587dd046..f5c22d141 100644 --- a/src/games/behavpure.h +++ b/src/games/behavpure.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/games/behavpure.h // Declaration of pure behavior profile diff --git a/src/games/behavspt.cc b/src/games/behavspt.cc index 0030f74d3..070d81754 100644 --- a/src/games/behavspt.cc +++ b/src/games/behavspt.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/behavspt.cc // Implementation of supports for extensive forms diff --git a/src/games/behavspt.h b/src/games/behavspt.h index 8442ad4b4..95439c98f 100644 --- a/src/games/behavspt.h +++ b/src/games/behavspt.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/behavspt.h // Interface to supports for extensive forms diff --git a/src/games/file.cc b/src/games/file.cc index 9ec4b9568..01eb8a852 100644 --- a/src/games/file.cc +++ b/src/games/file.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/file.cc // Parser for reading game savefiles diff --git a/src/games/game.cc b/src/games/game.cc index 0440d0012..bde65d124 100644 --- a/src/games/game.cc +++ b/src/games/game.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/game.cc // Implementation of extensive form game representation diff --git a/src/games/game.h b/src/games/game.h index c89af8ed5..3953929bd 100644 --- a/src/games/game.h +++ b/src/games/game.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/game.h // Declaration of base class for representing games diff --git a/src/games/gameagg.cc b/src/games/gameagg.cc index 089dcdc9c..57a683f5b 100644 --- a/src/games/gameagg.cc +++ b/src/games/gameagg.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/gameagg.cc // Implementation of action-graph game representation diff --git a/src/games/gameagg.h b/src/games/gameagg.h index 69d7ac83b..4b8778706 100644 --- a/src/games/gameagg.h +++ b/src/games/gameagg.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/gameagg.h // Declaration of GameAGGRep, the action-graph game representation diff --git a/src/games/gamebagg.cc b/src/games/gamebagg.cc index 5bf096517..8bdb0b109 100644 --- a/src/games/gamebagg.cc +++ b/src/games/gamebagg.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/gamebagg.cc // Implementation of Bayesian action-graph game representation diff --git a/src/games/gamebagg.h b/src/games/gamebagg.h index 83bd38c98..20c9b2f33 100644 --- a/src/games/gamebagg.h +++ b/src/games/gamebagg.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/gameagg.h // Declaration of the Bayesian action-graph game representation diff --git a/src/games/gameexpl.cc b/src/games/gameexpl.cc index a7083e7f1..b05bb889b 100644 --- a/src/games/gameexpl.cc +++ b/src/games/gameexpl.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/games/gameexpl.cc // Implementation of support for explicit internal representations of games diff --git a/src/games/gameexpl.h b/src/games/gameexpl.h index 0e30ebb56..97a2a18b7 100644 --- a/src/games/gameexpl.h +++ b/src/games/gameexpl.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/gameexpl.h // Declaration of base class for explicit game representations diff --git a/src/games/gameobject.h b/src/games/gameobject.h index d7584d978..683e008e3 100644 --- a/src/games/gameobject.h +++ b/src/games/gameobject.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/game.h // Declaration of base class for representing games diff --git a/src/games/gametable.cc b/src/games/gametable.cc index 86e4e92cf..2a3b7825c 100644 --- a/src/games/gametable.cc +++ b/src/games/gametable.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/gametable.cc // Implementation of strategic game representation diff --git a/src/games/gametable.h b/src/games/gametable.h index 7bd8fc2cc..f99f29126 100644 --- a/src/games/gametable.h +++ b/src/games/gametable.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/gametable.h // Declaration of strategic game representation diff --git a/src/games/gametree.cc b/src/games/gametree.cc index 2cefa4bfb..d4407a63d 100644 --- a/src/games/gametree.cc +++ b/src/games/gametree.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/gametree.cc // Implementation of extensive game representation diff --git a/src/games/gametree.h b/src/games/gametree.h index 39ef5a909..73bddf034 100644 --- a/src/games/gametree.h +++ b/src/games/gametree.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/gametree.h // Declaration of extensive game representation diff --git a/src/games/nash.cc b/src/games/nash.cc index f349e53cb..8329f4928 100644 --- a/src/games/nash.cc +++ b/src/games/nash.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/nash.cc // Framework for computing (sub)sets of Nash equilibria. diff --git a/src/games/nash.h b/src/games/nash.h index 7bab8ce06..0aae5462e 100644 --- a/src/games/nash.h +++ b/src/games/nash.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/nash.h // Framework for computing (sub)sets of Nash equilibria. diff --git a/src/games/number.h b/src/games/number.h index 9a57d0b5a..b892dbbb2 100644 --- a/src/games/number.h +++ b/src/games/number.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/number.h // A simple class for storing numerical data in a game diff --git a/src/games/stratmixed.h b/src/games/stratmixed.h index ea665beb2..cba8c0915 100644 --- a/src/games/stratmixed.h +++ b/src/games/stratmixed.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/mixed.h // Declaration of mixed strategy profile classes diff --git a/src/games/stratpure.cc b/src/games/stratpure.cc index eec80258f..56f91f47d 100644 --- a/src/games/stratpure.cc +++ b/src/games/stratpure.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/games/stratpure.cc // Implementation of pure strategy profile diff --git a/src/games/stratpure.h b/src/games/stratpure.h index 398b20743..70e27908d 100644 --- a/src/games/stratpure.h +++ b/src/games/stratpure.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/games/stratpure.h // Declaration of pure strategy profile diff --git a/src/games/stratspt.cc b/src/games/stratspt.cc index 3d759e2fc..ad13327b0 100644 --- a/src/games/stratspt.cc +++ b/src/games/stratspt.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/stratspt.cc // Implementation of strategy classes for normal forms diff --git a/src/games/stratspt.h b/src/games/stratspt.h index 70e2268ae..f953abcef 100644 --- a/src/games/stratspt.h +++ b/src/games/stratspt.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/libgambit/stratspt.h // Interface to strategy classes for normal forms diff --git a/src/games/writer.cc b/src/games/writer.cc index a60bb4ed3..299895091 100644 --- a/src/games/writer.cc +++ b/src/games/writer.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/include/gambit/writer.h // Classes for writing out games to various formats diff --git a/src/games/writer.h b/src/games/writer.h index 546d50c0b..16b864371 100644 --- a/src/games/writer.h +++ b/src/games/writer.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/include/gambit/writer.h // Classes for writing out games to various formats diff --git a/src/gui/analysis.cc b/src/gui/analysis.cc index 354133b5b..0fe2c6f03 100644 --- a/src/gui/analysis.cc +++ b/src/gui/analysis.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/analysis.cc // Declaration of analysis storage classes diff --git a/src/gui/analysis.h b/src/gui/analysis.h index f763b6114..6513755ec 100644 --- a/src/gui/analysis.h +++ b/src/gui/analysis.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/analysis.h // Declaration of analysis storage classes diff --git a/src/gui/app.cc b/src/gui/app.cc index 5c4744377..ff9211c19 100644 --- a/src/gui/app.cc +++ b/src/gui/app.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/gambit.cc // Implementation of main wxApp class diff --git a/src/gui/app.h b/src/gui/app.h index 98bda15a8..d33224192 100644 --- a/src/gui/app.h +++ b/src/gui/app.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/gambit.h // Declaration of application-level class for Gambit graphical interface diff --git a/src/gui/dlabout.cc b/src/gui/dlabout.cc index d4a042a3b..c17508e7a 100644 --- a/src/gui/dlabout.cc +++ b/src/gui/dlabout.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlabout.cc // Implementation of "about" dialog @@ -56,7 +56,7 @@ gbtAboutDialog::gbtAboutDialog(wxWindow *p_parent) topSizer->Add(new wxStaticText(this, wxID_STATIC, _T("Version " VERSION)), 0, wxALIGN_CENTER, 5); topSizer->Add( - FormattedText(this, _T("http://www.gambit-project.org"), + FormattedText(this, _T("https://www.gambit-project.org"), wxFont(12, wxFONTFAMILY_MODERN, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL)), 0, wxTOP | wxALIGN_CENTER, 10); @@ -70,7 +70,7 @@ gbtAboutDialog::gbtAboutDialog(wxWindow *p_parent) 0, wxALIGN_CENTER, 5); topSizer->Add( - FormattedText(this, _T("Copyright (C) 1994-2024, The Gambit Project"), + FormattedText(this, _T("Copyright (C) 1994-2025, The Gambit Project"), wxFont(12, wxFONTFAMILY_ROMAN, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL)), 0, wxTOP | wxALIGN_CENTER, 20); topSizer->Add( diff --git a/src/gui/dlabout.h b/src/gui/dlabout.h index 217a58595..c4ffba644 100644 --- a/src/gui/dlabout.h +++ b/src/gui/dlabout.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlabout.h // Declaration of "about" dialog diff --git a/src/gui/dleditmove.cc b/src/gui/dleditmove.cc index e0e9b23a3..134729cef 100644 --- a/src/gui/dleditmove.cc +++ b/src/gui/dleditmove.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dleditmove.cc // Dialog for viewing and editing properties of a move diff --git a/src/gui/dleditmove.h b/src/gui/dleditmove.h index d48486fdb..85280c8bd 100644 --- a/src/gui/dleditmove.h +++ b/src/gui/dleditmove.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dleditmove.h // Dialog for viewing and editing properties of a move diff --git a/src/gui/dleditnode.cc b/src/gui/dleditnode.cc index 926fc39b4..dbf52580d 100644 --- a/src/gui/dleditnode.cc +++ b/src/gui/dleditnode.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dleditnode.cc // Dialog for viewing and editing properties of a node diff --git a/src/gui/dleditnode.h b/src/gui/dleditnode.h index 306734c3d..504a63dcf 100644 --- a/src/gui/dleditnode.h +++ b/src/gui/dleditnode.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dleditnode.h // Dialog for viewing and editing properties of a node diff --git a/src/gui/dlefglayout.cc b/src/gui/dlefglayout.cc index 17d4f22e0..de7779c4e 100644 --- a/src/gui/dlefglayout.cc +++ b/src/gui/dlefglayout.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlefglayout.cc // Declaration of dialog to set tree layout parameters diff --git a/src/gui/dlefglayout.h b/src/gui/dlefglayout.h index 9b845e478..f2c533fd4 100644 --- a/src/gui/dlefglayout.h +++ b/src/gui/dlefglayout.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlefglayout.h // Declaration of dialog to set tree layout parameters diff --git a/src/gui/dlefglegend.cc b/src/gui/dlefglegend.cc index 58366dffb..cb3e72f66 100644 --- a/src/gui/dlefglegend.cc +++ b/src/gui/dlefglegend.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlefglegend.cc // Declaration of dialog to set tree layout parameters diff --git a/src/gui/dlefglegend.h b/src/gui/dlefglegend.h index fd9ba6396..cd2906a8b 100644 --- a/src/gui/dlefglegend.h +++ b/src/gui/dlefglegend.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlefglegend.h // Dialog for setting legends for extensive form display diff --git a/src/gui/dlefglogit.cc b/src/gui/dlefglogit.cc index e04a5dc57..8b35d49a3 100644 --- a/src/gui/dlefglogit.cc +++ b/src/gui/dlefglogit.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlefglogit.cc // Dialog for monitoring progress of logit equilibrium computation diff --git a/src/gui/dlefglogit.h b/src/gui/dlefglogit.h index 2b06a5ac6..33ef4b536 100644 --- a/src/gui/dlefglogit.h +++ b/src/gui/dlefglogit.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlefglogit.h // Dialog for monitoring logit equilibrium computation diff --git a/src/gui/dlefgreveal.cc b/src/gui/dlefgreveal.cc index 2fc6cb7a8..a7f3c4e86 100644 --- a/src/gui/dlefgreveal.cc +++ b/src/gui/dlefgreveal.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlefgreveal.cc // Dialog for revealing actions to players diff --git a/src/gui/dlefgreveal.h b/src/gui/dlefgreveal.h index 6c90032c6..5337f540f 100644 --- a/src/gui/dlefgreveal.h +++ b/src/gui/dlefgreveal.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlefgreveal.h // Dialog for revealing actions to players diff --git a/src/gui/dlexcept.h b/src/gui/dlexcept.h index ed69d4a8c..b32f6bcdf 100644 --- a/src/gui/dlexcept.h +++ b/src/gui/dlexcept.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlexcept.h // Declaration of internal exception error dialog. diff --git a/src/gui/dlgameprop.cc b/src/gui/dlgameprop.cc index 9b482ae46..2af0c89ec 100644 --- a/src/gui/dlgameprop.cc +++ b/src/gui/dlgameprop.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlgameprop.cc // Dialog for viewing and editing properties of a game diff --git a/src/gui/dlgameprop.h b/src/gui/dlgameprop.h index 6ee695e41..6502aa8dd 100644 --- a/src/gui/dlgameprop.h +++ b/src/gui/dlgameprop.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlgameprop.h // Dialog for viewing and editing properties of a game diff --git a/src/gui/dlinsertmove.cc b/src/gui/dlinsertmove.cc index a00260657..26af777b7 100644 --- a/src/gui/dlinsertmove.cc +++ b/src/gui/dlinsertmove.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlinsertmove.cc // Implementation of dialog to insert a move into a tree diff --git a/src/gui/dlinsertmove.h b/src/gui/dlinsertmove.h index 4c3c98df7..d83cc8f9a 100644 --- a/src/gui/dlinsertmove.h +++ b/src/gui/dlinsertmove.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlinsertmove.h // Declaration of dialog to insert move into a tree diff --git a/src/gui/dlnash.cc b/src/gui/dlnash.cc index 95f329f4a..417c5d63d 100644 --- a/src/gui/dlnash.cc +++ b/src/gui/dlnash.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlnash.cc // Dialog for selecting algorithms to compute Nash equilibria diff --git a/src/gui/dlnash.h b/src/gui/dlnash.h index b6c9f77c3..5b408a4ba 100644 --- a/src/gui/dlnash.h +++ b/src/gui/dlnash.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlnash.h // Dialog for selecting algorithms to compute Nash equilibria diff --git a/src/gui/dlnashmon.cc b/src/gui/dlnashmon.cc index 9462e8661..84150d233 100644 --- a/src/gui/dlnashmon.cc +++ b/src/gui/dlnashmon.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlnashmon.cc // Dialog for monitoring progress of logit equilibrium computation diff --git a/src/gui/dlnashmon.h b/src/gui/dlnashmon.h index c39d67915..4abe9be51 100644 --- a/src/gui/dlnashmon.h +++ b/src/gui/dlnashmon.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlnashmon.h // Dialog for monitoring Nash equilibrium computation progress diff --git a/src/gui/dlnfglogit.cc b/src/gui/dlnfglogit.cc index 925d0b561..c5063b28a 100644 --- a/src/gui/dlnfglogit.cc +++ b/src/gui/dlnfglogit.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/dlnfglogit.cc // Dialog for monitoring progress of logit equilibrium computation diff --git a/src/gui/edittext.cc b/src/gui/edittext.cc index 939a87e80..2b4ce664a 100644 --- a/src/gui/edittext.cc +++ b/src/gui/edittext.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/edittext.cc // A widget that functions as an editable wxStaticText diff --git a/src/gui/edittext.h b/src/gui/edittext.h index e24819d6a..eb27b2b95 100644 --- a/src/gui/edittext.h +++ b/src/gui/edittext.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/edittext.h // A widget that functions as an editable wxStaticText diff --git a/src/gui/efgdisplay.cc b/src/gui/efgdisplay.cc index 3bd3911d1..4efca4ecb 100644 --- a/src/gui/efgdisplay.cc +++ b/src/gui/efgdisplay.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/efgdisplay.cc // Implementation of window class to display extensive form tree diff --git a/src/gui/efgdisplay.h b/src/gui/efgdisplay.h index 5a2ec1f6e..9eff5e467 100644 --- a/src/gui/efgdisplay.h +++ b/src/gui/efgdisplay.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/efgdisplay.h // Declaration of window class to display extensive form tree diff --git a/src/gui/efglayout.cc b/src/gui/efglayout.cc index 3aa5d5d9c..bdaa01176 100644 --- a/src/gui/efglayout.cc +++ b/src/gui/efglayout.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/efglayout.cc // Implementation of tree layout representation diff --git a/src/gui/efglayout.h b/src/gui/efglayout.h index 5a419bd43..d2633556c 100644 --- a/src/gui/efglayout.h +++ b/src/gui/efglayout.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/efglayout.h // Interface to tree layout representation diff --git a/src/gui/efgpanel.cc b/src/gui/efgpanel.cc index 3f0f86015..8d970ad54 100644 --- a/src/gui/efgpanel.cc +++ b/src/gui/efgpanel.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/efgpanel.cc // Main viewing panel for extensive forms diff --git a/src/gui/efgpanel.h b/src/gui/efgpanel.h index 78aa0951f..c4c45e8b0 100644 --- a/src/gui/efgpanel.h +++ b/src/gui/efgpanel.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/efgpanel.h // Main viewing panel for extensive forms diff --git a/src/gui/efgprofile.cc b/src/gui/efgprofile.cc index 3fe61a256..3ba0e85ce 100644 --- a/src/gui/efgprofile.cc +++ b/src/gui/efgprofile.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/efgprofile.cc // Extensive form behavior profile window diff --git a/src/gui/efgprofile.h b/src/gui/efgprofile.h index 5bb97d141..de8468af9 100644 --- a/src/gui/efgprofile.h +++ b/src/gui/efgprofile.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/efgprofile.h // Extensive form behavior profile window diff --git a/src/gui/gamedoc.cc b/src/gui/gamedoc.cc index 22b7cc72b..df9793763 100644 --- a/src/gui/gamedoc.cc +++ b/src/gui/gamedoc.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/gamedoc.cc // Implementation of game document class diff --git a/src/gui/gamedoc.h b/src/gui/gamedoc.h index 0a1973b38..ff83e6b6e 100644 --- a/src/gui/gamedoc.h +++ b/src/gui/gamedoc.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/gamedoc.h // Declaration of game document class diff --git a/src/gui/gameframe.cc b/src/gui/gameframe.cc index 942803dc7..12b5af8d9 100644 --- a/src/gui/gameframe.cc +++ b/src/gui/gameframe.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/gameframe.cc // Implementation of frame containing views of a game diff --git a/src/gui/gameframe.h b/src/gui/gameframe.h index 5fa5ac695..bd9d1ded8 100644 --- a/src/gui/gameframe.h +++ b/src/gui/gameframe.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/gameframe.h // Interface to frame containing the views of a game diff --git a/src/gui/menuconst.h b/src/gui/menuconst.h index 13b2a7240..d1ad3bacf 100644 --- a/src/gui/menuconst.h +++ b/src/gui/menuconst.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/menuconst.h // Declaration of constants used for menu items diff --git a/src/gui/nfgpanel.cc b/src/gui/nfgpanel.cc index 0dba2582b..569238229 100644 --- a/src/gui/nfgpanel.cc +++ b/src/gui/nfgpanel.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/nfgpanel.cc // Implementation of normal form panel diff --git a/src/gui/nfgpanel.h b/src/gui/nfgpanel.h index f2731788f..e1f59979a 100644 --- a/src/gui/nfgpanel.h +++ b/src/gui/nfgpanel.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/nfgpanel.h // Panel to display normal form games in tabular format diff --git a/src/gui/nfgprofile.cc b/src/gui/nfgprofile.cc index 4be9bcabc..199786dd8 100644 --- a/src/gui/nfgprofile.cc +++ b/src/gui/nfgprofile.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/nfgprofile.cc // Normal form mixed profile window diff --git a/src/gui/nfgprofile.h b/src/gui/nfgprofile.h index eb17e0964..5bd1a1a31 100644 --- a/src/gui/nfgprofile.h +++ b/src/gui/nfgprofile.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/nfgprofile.h // Normal form mixed profile window diff --git a/src/gui/nfgtable.cc b/src/gui/nfgtable.cc index 78652dd23..96ac341f9 100644 --- a/src/gui/nfgtable.cc +++ b/src/gui/nfgtable.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/nfgtable.cc // Implementation of strategic game matrix display/editor diff --git a/src/gui/nfgtable.h b/src/gui/nfgtable.h index 079f4adc2..903fb6374 100644 --- a/src/gui/nfgtable.h +++ b/src/gui/nfgtable.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/nfgtable.h // Declaration of control to display/edit strategic game tables diff --git a/src/gui/renratio.cc b/src/gui/renratio.cc index f70e1fd49..7453a458f 100644 --- a/src/gui/renratio.cc +++ b/src/gui/renratio.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/renratio.cc // Implementation of wxSheet renderer for rational numbers diff --git a/src/gui/renratio.h b/src/gui/renratio.h index 18bdd2329..3b1796502 100644 --- a/src/gui/renratio.h +++ b/src/gui/renratio.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/renratio.h // Declaration of wxSheet renderer for rational numbers diff --git a/src/gui/style.cc b/src/gui/style.cc index 0711b54ed..99fe67487 100644 --- a/src/gui/style.cc +++ b/src/gui/style.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/style.cc // Display configuration class for the extensive form diff --git a/src/gui/style.h b/src/gui/style.h index b7471beae..88224b43b 100644 --- a/src/gui/style.h +++ b/src/gui/style.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/style.h // Class to store settings related to graphical interface styling diff --git a/src/gui/valnumber.cc b/src/gui/valnumber.cc index 82d6e5e3c..6f1bbaf48 100644 --- a/src/gui/valnumber.cc +++ b/src/gui/valnumber.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/valnumber.cc // wxValidator specialization to gbtNumber diff --git a/src/gui/valnumber.h b/src/gui/valnumber.h index ee97d54f0..7b2eea4f8 100644 --- a/src/gui/valnumber.h +++ b/src/gui/valnumber.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/gui/valnumber.h // wxValidator specialization to gbtNumber diff --git a/src/pygambit/__init__.py b/src/pygambit/__init__.py index d2abc1531..ed7316321 100644 --- a/src/pygambit/__init__.py +++ b/src/pygambit/__init__.py @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/python/gambit/__init__.py # Top-level module file for gambit @@ -29,4 +29,4 @@ supports, # noqa: F401 ) -__version__ = "16.2.0" +__version__ = "16.2.1" diff --git a/src/pygambit/action.pxi b/src/pygambit/action.pxi index 607bdc702..14b9c29a1 100644 --- a/src/pygambit/action.pxi +++ b/src/pygambit/action.pxi @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/pygambit/action.pxi # Cython wrapper for actions diff --git a/src/pygambit/behavmixed.pxi b/src/pygambit/behavmixed.pxi index bb765887b..ad1a72ec5 100644 --- a/src/pygambit/behavmixed.pxi +++ b/src/pygambit/behavmixed.pxi @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/pygambit/behavmixed.pxi # Cython wrapper for mixed behavior profiles diff --git a/src/pygambit/enumeration.py b/src/pygambit/enumeration.py index d70d96a2c..2debc4d63 100644 --- a/src/pygambit/enumeration.py +++ b/src/pygambit/enumeration.py @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/python/gambit/enumeration.py # Enumeration of support profiles for a strategic game diff --git a/src/pygambit/error.py b/src/pygambit/error.py index db6f82467..d82c5a423 100644 --- a/src/pygambit/error.py +++ b/src/pygambit/error.py @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/pygambit/error.py # Exceptions raised by Gambit Python interface diff --git a/src/pygambit/gambit.pyx b/src/pygambit/gambit.pyx index 282d94843..f45b4358f 100644 --- a/src/pygambit/gambit.pyx +++ b/src/pygambit/gambit.pyx @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/pygambit/libgambit.pyx # Cython wrapper for Gambit C++ library diff --git a/src/pygambit/game.pxi b/src/pygambit/game.pxi index be7967457..2332d0e8a 100644 --- a/src/pygambit/game.pxi +++ b/src/pygambit/game.pxi @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/pygambit/game.pxi # Cython wrapper for games diff --git a/src/pygambit/gameiter.py b/src/pygambit/gameiter.py index 9d897facf..7db434ff8 100644 --- a/src/pygambit/gameiter.py +++ b/src/pygambit/gameiter.py @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/python/gambit/gameiter.py # Iteration tools over games in pure Python diff --git a/src/pygambit/gte.py b/src/pygambit/gte.py index de72f7998..4a2836ef9 100644 --- a/src/pygambit/gte.py +++ b/src/pygambit/gte.py @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/python/gambit/gte.py # File format interface with Game Theory Explorer diff --git a/src/pygambit/infoset.pxi b/src/pygambit/infoset.pxi index f4f70cc9c..aef0afb9e 100644 --- a/src/pygambit/infoset.pxi +++ b/src/pygambit/infoset.pxi @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/pygambit/infoset.pxi # Cython wrapper for information sets diff --git a/src/pygambit/levelk.py b/src/pygambit/levelk.py index d42b2d5f7..7203e0784 100644 --- a/src/pygambit/levelk.py +++ b/src/pygambit/levelk.py @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/python/gambit/levelk.py # Provides support for level-k/cognitive hierarchy modeling diff --git a/src/pygambit/nash.h b/src/pygambit/nash.h index f4d61949f..2d1381f4a 100644 --- a/src/pygambit/nash.h +++ b/src/pygambit/nash.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/pygambit/nash.h // Shims for Cython wrapper for computation of equilibrium diff --git a/src/pygambit/nash.pxi b/src/pygambit/nash.pxi index 95e837c70..c53958aeb 100644 --- a/src/pygambit/nash.pxi +++ b/src/pygambit/nash.pxi @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/pygambit/nash.pxi # Cython wrapper for Nash equilibrium computations diff --git a/src/pygambit/nash.py b/src/pygambit/nash.py index cbd32daf3..5564add9a 100644 --- a/src/pygambit/nash.py +++ b/src/pygambit/nash.py @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/python/gambit/nash.py # A set of utilities for computing Nash equilibria diff --git a/src/pygambit/node.pxi b/src/pygambit/node.pxi index a666b37e2..0cc0da91a 100644 --- a/src/pygambit/node.pxi +++ b/src/pygambit/node.pxi @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/pygambit/node.pxi # Cython wrapper for nodes diff --git a/src/pygambit/outcome.pxi b/src/pygambit/outcome.pxi index 0c091c9c9..35b0f42a4 100644 --- a/src/pygambit/outcome.pxi +++ b/src/pygambit/outcome.pxi @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/pygambit/outcome.pxi # Cython wrapper for outcomes diff --git a/src/pygambit/pctrace.py b/src/pygambit/pctrace.py index 008d18f43..9fa71261e 100644 --- a/src/pygambit/pctrace.py +++ b/src/pygambit/pctrace.py @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/python/gambit/pctrace.py # Trace a smooth parameterized curve using a predictor-corrector method diff --git a/src/pygambit/player.pxi b/src/pygambit/player.pxi index 486458a63..bc8eb0f23 100644 --- a/src/pygambit/player.pxi +++ b/src/pygambit/player.pxi @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/pygambit/player.pxi # Cython wrapper for players diff --git a/src/pygambit/profiles.py b/src/pygambit/profiles.py index 98f602223..3dc7eb35f 100644 --- a/src/pygambit/profiles.py +++ b/src/pygambit/profiles.py @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/python/gambit/profiles.py # Base classes for strategy profiles diff --git a/src/pygambit/qre.py b/src/pygambit/qre.py index df2f6661b..0a95946ec 100644 --- a/src/pygambit/qre.py +++ b/src/pygambit/qre.py @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/python/gambit/qre.py # A set of utilities for copmuting and analyzing quantal response equilibria diff --git a/src/pygambit/strategy.pxi b/src/pygambit/strategy.pxi index c488bbaf1..2cef0aaaa 100644 --- a/src/pygambit/strategy.pxi +++ b/src/pygambit/strategy.pxi @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/pygambit/strategy.pxi # Cython wrapper for strategies diff --git a/src/pygambit/stratmixed.pxi b/src/pygambit/stratmixed.pxi index dd6490a3d..ee503dbfd 100644 --- a/src/pygambit/stratmixed.pxi +++ b/src/pygambit/stratmixed.pxi @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/pygambit/stratmixed.pxi # Cython wrapper for mixed strategy profiles diff --git a/src/pygambit/stratspt.pxi b/src/pygambit/stratspt.pxi index fe58aacdb..b89a39bfa 100644 --- a/src/pygambit/stratspt.pxi +++ b/src/pygambit/stratspt.pxi @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/pygambit/stratspt.pxi # Cython wrapper for strategy supports diff --git a/src/pygambit/supports.py b/src/pygambit/supports.py index f093d4cac..c6919f0f1 100644 --- a/src/pygambit/supports.py +++ b/src/pygambit/supports.py @@ -1,6 +1,6 @@ # # This file is part of Gambit -# Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +# Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) # # FILE: src/pygambit/supports.py # Access to algorithms which compute on supports. diff --git a/src/pygambit/util.h b/src/pygambit/util.h index 4bcff0304..dffe1ce83 100644 --- a/src/pygambit/util.h +++ b/src/pygambit/util.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/pygambit/util.h // Convenience functions for Cython wrapper diff --git a/src/solvers/enummixed/clique.cc b/src/solvers/enummixed/clique.cc index 4d025e687..2c5e0a550 100644 --- a/src/solvers/enummixed/clique.cc +++ b/src/solvers/enummixed/clique.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enummixed/clique.cc // Maximal cliques and solution components via von Stengel's algorithm diff --git a/src/solvers/enummixed/clique.h b/src/solvers/enummixed/clique.h index 87e8474bd..48d84d28a 100644 --- a/src/solvers/enummixed/clique.h +++ b/src/solvers/enummixed/clique.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/src/enummixed/clique.h // Maximal cliques and connected components diff --git a/src/solvers/enummixed/enummixed.cc b/src/solvers/enummixed/enummixed.cc index 526eec779..a3ac43778 100644 --- a/src/solvers/enummixed/enummixed.cc +++ b/src/solvers/enummixed/enummixed.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enummixed/enummixed.cc // Compute Nash equilibria via Mangasarian's algorithm diff --git a/src/solvers/enummixed/enummixed.h b/src/solvers/enummixed/enummixed.h index b77f0bbc2..f63dd9fe0 100644 --- a/src/solvers/enummixed/enummixed.h +++ b/src/solvers/enummixed/enummixed.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/include/gambit/nash/enummixed.h // Enumerate all mixed strategy equilibria of two-player games diff --git a/src/solvers/enummixed/lrsenum.cc b/src/solvers/enummixed/lrsenum.cc index de16a5ca4..bf05b505c 100644 --- a/src/solvers/enummixed/lrsenum.cc +++ b/src/solvers/enummixed/lrsenum.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/src/enummixed/lrsnash.cc // Compute Nash equilibria via enumerating extreme points using lrslib diff --git a/src/solvers/enumpoly/behavextend.cc b/src/solvers/enumpoly/behavextend.cc index 25872d453..51f4d0269 100644 --- a/src/solvers/enumpoly/behavextend.cc +++ b/src/solvers/enumpoly/behavextend.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/behavextend.cc // Algorithms for extending behavior profiles to Nash equilibria diff --git a/src/solvers/enumpoly/behavextend.h b/src/solvers/enumpoly/behavextend.h index 837fe2919..91e3dda2f 100644 --- a/src/solvers/enumpoly/behavextend.h +++ b/src/solvers/enumpoly/behavextend.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/behavextend.h // Algorithms for extending behavior profiles to Nash equilibria diff --git a/src/solvers/enumpoly/efgensup.cc b/src/solvers/enumpoly/efgensup.cc index 60858e110..570d7cc5a 100644 --- a/src/solvers/enumpoly/efgensup.cc +++ b/src/solvers/enumpoly/efgensup.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/efgensup.cc // Enumerate undominated subsupports diff --git a/src/solvers/enumpoly/efgensup.h b/src/solvers/enumpoly/efgensup.h index ad315bb53..baa11bb63 100644 --- a/src/solvers/enumpoly/efgensup.h +++ b/src/solvers/enumpoly/efgensup.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/efgensup.h // Enumerate undominated subsupports diff --git a/src/solvers/enumpoly/efgpoly.cc b/src/solvers/enumpoly/efgpoly.cc index f4f1b6cae..268b85112 100644 --- a/src/solvers/enumpoly/efgpoly.cc +++ b/src/solvers/enumpoly/efgpoly.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/efgpoly.cc // Enumerates all Nash equilibria of a game, via polynomial equations diff --git a/src/solvers/enumpoly/gcomplex.cc b/src/solvers/enumpoly/gcomplex.cc index 063de3fe6..bed58aad9 100644 --- a/src/solvers/enumpoly/gcomplex.cc +++ b/src/solvers/enumpoly/gcomplex.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/complex.cc // Implementation of a complex number class diff --git a/src/solvers/enumpoly/gcomplex.h b/src/solvers/enumpoly/gcomplex.h index 313ec2976..28564e765 100644 --- a/src/solvers/enumpoly/gcomplex.h +++ b/src/solvers/enumpoly/gcomplex.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/complex.h // Declaration of a complex number class diff --git a/src/solvers/enumpoly/gnarray.h b/src/solvers/enumpoly/gnarray.h index e8f6f61c4..240bb91c3 100644 --- a/src/solvers/enumpoly/gnarray.h +++ b/src/solvers/enumpoly/gnarray.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/gnarray.h // Interface declaration for N-dimensional arrays diff --git a/src/solvers/enumpoly/gnarray.imp b/src/solvers/enumpoly/gnarray.imp index 43d3a8e28..8247198cf 100644 --- a/src/solvers/enumpoly/gnarray.imp +++ b/src/solvers/enumpoly/gnarray.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/gnarray.imp // Implementation for N-dimensional arrays diff --git a/src/solvers/enumpoly/gpartltr.cc b/src/solvers/enumpoly/gpartltr.cc index aeeaf6a89..4af90b8dc 100644 --- a/src/solvers/enumpoly/gpartltr.cc +++ b/src/solvers/enumpoly/gpartltr.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/gpartltr.cc // Instantiations of tree of partials classes diff --git a/src/solvers/enumpoly/gpartltr.h b/src/solvers/enumpoly/gpartltr.h index c111aa1e3..9641d893b 100644 --- a/src/solvers/enumpoly/gpartltr.h +++ b/src/solvers/enumpoly/gpartltr.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/gpartltr.h // Interface to TreeOfPartials diff --git a/src/solvers/enumpoly/gpartltr.imp b/src/solvers/enumpoly/gpartltr.imp index 32a236505..175947828 100644 --- a/src/solvers/enumpoly/gpartltr.imp +++ b/src/solvers/enumpoly/gpartltr.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/gpartltr.imp // Implementation of TreeOfPartials diff --git a/src/solvers/enumpoly/gpoly.cc b/src/solvers/enumpoly/gpoly.cc index 41c90646b..162e6e989 100644 --- a/src/solvers/enumpoly/gpoly.cc +++ b/src/solvers/enumpoly/gpoly.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/gpoly.cc // Instantiation of common gPoly classes diff --git a/src/solvers/enumpoly/gpoly.h b/src/solvers/enumpoly/gpoly.h index 56bb16324..8b9a2526e 100644 --- a/src/solvers/enumpoly/gpoly.h +++ b/src/solvers/enumpoly/gpoly.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/gpoly.h // Declaration of multivariate polynomial type diff --git a/src/solvers/enumpoly/gpoly.imp b/src/solvers/enumpoly/gpoly.imp index adc78c1e2..09b313c8b 100644 --- a/src/solvers/enumpoly/gpoly.imp +++ b/src/solvers/enumpoly/gpoly.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/gpoly.imp // Implementation of multivariate polynomial type diff --git a/src/solvers/enumpoly/gpolylst.cc b/src/solvers/enumpoly/gpolylst.cc index b0d76cd89..9b1371ce9 100644 --- a/src/solvers/enumpoly/gpolylst.cc +++ b/src/solvers/enumpoly/gpolylst.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/gpolylst.cc // Instantiations of polynomial list types diff --git a/src/solvers/enumpoly/gpolylst.h b/src/solvers/enumpoly/gpolylst.h index 7b4cb20ee..f868fa988 100644 --- a/src/solvers/enumpoly/gpolylst.h +++ b/src/solvers/enumpoly/gpolylst.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/gpolylist.h // Declaration of polynomial list type diff --git a/src/solvers/enumpoly/gpolylst.imp b/src/solvers/enumpoly/gpolylst.imp index 01ab26dc5..c57215e33 100644 --- a/src/solvers/enumpoly/gpolylst.imp +++ b/src/solvers/enumpoly/gpolylst.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/gpolylst.imp // Implementation of polynomial list type diff --git a/src/solvers/enumpoly/gsolver.cc b/src/solvers/enumpoly/gsolver.cc index efcb0ba3a..98b014ffc 100644 --- a/src/solvers/enumpoly/gsolver.cc +++ b/src/solvers/enumpoly/gsolver.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/gsolver.cc // Instantiation of gSolver classes diff --git a/src/solvers/enumpoly/gsolver.h b/src/solvers/enumpoly/gsolver.h index f5abeba4f..b5464b513 100644 --- a/src/solvers/enumpoly/gsolver.h +++ b/src/solvers/enumpoly/gsolver.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/gsolver.h // Declaration of gSolver diff --git a/src/solvers/enumpoly/gsolver.imp b/src/solvers/enumpoly/gsolver.imp index cbb3b94f2..15bb39a72 100644 --- a/src/solvers/enumpoly/gsolver.imp +++ b/src/solvers/enumpoly/gsolver.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/gsolver.imp // Implementation of class gSolver diff --git a/src/solvers/enumpoly/gtree.h b/src/solvers/enumpoly/gtree.h index 17eeea245..0a4366a43 100644 --- a/src/solvers/enumpoly/gtree.h +++ b/src/solvers/enumpoly/gtree.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/gtree.h // A generic tree container class diff --git a/src/solvers/enumpoly/gtree.imp b/src/solvers/enumpoly/gtree.imp index a831b3ee1..604a35a29 100644 --- a/src/solvers/enumpoly/gtree.imp +++ b/src/solvers/enumpoly/gtree.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/gtree.imp // Implementation of a generic tree container class diff --git a/src/solvers/enumpoly/ideal.cc b/src/solvers/enumpoly/ideal.cc index ce98d86fa..ccb8741c7 100644 --- a/src/solvers/enumpoly/ideal.cc +++ b/src/solvers/enumpoly/ideal.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/ideal.cc // Instantiations of gBasis types diff --git a/src/solvers/enumpoly/ideal.h b/src/solvers/enumpoly/ideal.h index 8c8bfa306..0ea969e90 100644 --- a/src/solvers/enumpoly/ideal.h +++ b/src/solvers/enumpoly/ideal.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/ideal.h // Declaration of gIdeal diff --git a/src/solvers/enumpoly/ideal.imp b/src/solvers/enumpoly/ideal.imp index 94e83cbb3..9bd42637f 100644 --- a/src/solvers/enumpoly/ideal.imp +++ b/src/solvers/enumpoly/ideal.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/ideal.imp // Implementation of gIdeal diff --git a/src/solvers/enumpoly/ineqsolv.cc b/src/solvers/enumpoly/ineqsolv.cc index 1d0c032bb..2f7fa5697 100644 --- a/src/solvers/enumpoly/ineqsolv.cc +++ b/src/solvers/enumpoly/ineqsolv.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/ineqsolv.cc // Instantiation of IneqSolv classes diff --git a/src/solvers/enumpoly/ineqsolv.h b/src/solvers/enumpoly/ineqsolv.h index b35bd6393..d5bb9298a 100644 --- a/src/solvers/enumpoly/ineqsolv.h +++ b/src/solvers/enumpoly/ineqsolv.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/ineqsolv.h // Declaration of IneqSolv diff --git a/src/solvers/enumpoly/ineqsolv.imp b/src/solvers/enumpoly/ineqsolv.imp index 86acee360..79d5983ef 100644 --- a/src/solvers/enumpoly/ineqsolv.imp +++ b/src/solvers/enumpoly/ineqsolv.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/ineqsolv.imp // Implementation of IneqSolv diff --git a/src/solvers/enumpoly/interval.h b/src/solvers/enumpoly/interval.h index be8ee3471..ec4fa3a17 100644 --- a/src/solvers/enumpoly/interval.h +++ b/src/solvers/enumpoly/interval.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/interval.h // Interface to interval type diff --git a/src/solvers/enumpoly/linrcomb.cc b/src/solvers/enumpoly/linrcomb.cc index dc625101a..7389f2aa3 100644 --- a/src/solvers/enumpoly/linrcomb.cc +++ b/src/solvers/enumpoly/linrcomb.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/linrcomb.cc // Instantiation of linear combination types diff --git a/src/solvers/enumpoly/linrcomb.h b/src/solvers/enumpoly/linrcomb.h index fcf5a5095..f49ca04b2 100644 --- a/src/solvers/enumpoly/linrcomb.h +++ b/src/solvers/enumpoly/linrcomb.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/linrcomb.h // Find linear weights for dependencies between rows of a matrix diff --git a/src/solvers/enumpoly/linrcomb.imp b/src/solvers/enumpoly/linrcomb.imp index a09934fe4..dbcd54d6b 100644 --- a/src/solvers/enumpoly/linrcomb.imp +++ b/src/solvers/enumpoly/linrcomb.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/linrcomb.imp // Implementation of linear combination class diff --git a/src/solvers/enumpoly/monomial.cc b/src/solvers/enumpoly/monomial.cc index 38bae6b99..96cbb7120 100644 --- a/src/solvers/enumpoly/monomial.cc +++ b/src/solvers/enumpoly/monomial.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/monomial.cc // Instantiation of monomial classes diff --git a/src/solvers/enumpoly/monomial.h b/src/solvers/enumpoly/monomial.h index d40dd9ede..350b5f053 100644 --- a/src/solvers/enumpoly/monomial.h +++ b/src/solvers/enumpoly/monomial.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/monomial.h // Declaration of monomial class diff --git a/src/solvers/enumpoly/monomial.imp b/src/solvers/enumpoly/monomial.imp index 0214402e4..f844e44e6 100644 --- a/src/solvers/enumpoly/monomial.imp +++ b/src/solvers/enumpoly/monomial.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/monomial.imp // Implementation of monomial classes diff --git a/src/solvers/enumpoly/nfgcpoly.cc b/src/solvers/enumpoly/nfgcpoly.cc index 36a135d33..b9218e005 100644 --- a/src/solvers/enumpoly/nfgcpoly.cc +++ b/src/solvers/enumpoly/nfgcpoly.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, Litao Wei and The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, Litao Wei and The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/nfgcpoly.cc // Compute Nash equilibria via heuristic search on game supports diff --git a/src/solvers/enumpoly/nfgcpoly.h b/src/solvers/enumpoly/nfgcpoly.h index 6fc02df3a..62c8e6efc 100644 --- a/src/solvers/enumpoly/nfgcpoly.h +++ b/src/solvers/enumpoly/nfgcpoly.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, Litao Wei and The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, Litao Wei and The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/nfgcpoly.h // Compute Nash equilibria via heuristic search on game supports diff --git a/src/solvers/enumpoly/nfgensup.cc b/src/solvers/enumpoly/nfgensup.cc index e67c7a76e..b5c7454d0 100644 --- a/src/solvers/enumpoly/nfgensup.cc +++ b/src/solvers/enumpoly/nfgensup.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/nfgensup.cc // Enumerate undominated subsupports of a support diff --git a/src/solvers/enumpoly/nfgensup.h b/src/solvers/enumpoly/nfgensup.h index 11e41d635..cbc12e559 100644 --- a/src/solvers/enumpoly/nfgensup.h +++ b/src/solvers/enumpoly/nfgensup.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/nfgensup.h // Enumerate undominated subsupports of a support diff --git a/src/solvers/enumpoly/nfghs.cc b/src/solvers/enumpoly/nfghs.cc index 4b1efe690..95f5137c7 100644 --- a/src/solvers/enumpoly/nfghs.cc +++ b/src/solvers/enumpoly/nfghs.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, Litao Wei The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, Litao Wei The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/nfghs.cc // Compute Nash equilibria via heuristic search on game supports diff --git a/src/solvers/enumpoly/nfghs.h b/src/solvers/enumpoly/nfghs.h index 9450ef1cd..c83b7ebad 100644 --- a/src/solvers/enumpoly/nfghs.h +++ b/src/solvers/enumpoly/nfghs.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, Litao Wei and The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, Litao Wei and The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/nfghs.h // Compute Nash equilibria via heuristic search on game supports diff --git a/src/solvers/enumpoly/nfgpoly.cc b/src/solvers/enumpoly/nfgpoly.cc index 62d9d6ace..ba6cefb31 100644 --- a/src/solvers/enumpoly/nfgpoly.cc +++ b/src/solvers/enumpoly/nfgpoly.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/nfgpoly.cc // Enumerates all Nash equilibria in a normal form game, via solving diff --git a/src/solvers/enumpoly/odometer.cc b/src/solvers/enumpoly/odometer.cc index f37d79395..8417f1f7f 100644 --- a/src/solvers/enumpoly/odometer.cc +++ b/src/solvers/enumpoly/odometer.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/odometer.cc // Implementation of class gIndexOdometer diff --git a/src/solvers/enumpoly/odometer.h b/src/solvers/enumpoly/odometer.h index e5f1ff468..091f63b3d 100644 --- a/src/solvers/enumpoly/odometer.h +++ b/src/solvers/enumpoly/odometer.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/odometer.h // Declaration of gIndexOdometer class diff --git a/src/solvers/enumpoly/poly.cc b/src/solvers/enumpoly/poly.cc index 5e1fb0840..74c9f9066 100644 --- a/src/solvers/enumpoly/poly.cc +++ b/src/solvers/enumpoly/poly.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/poly.cc // Instantiation of polynomial classes diff --git a/src/solvers/enumpoly/poly.h b/src/solvers/enumpoly/poly.h index d6add239f..a5650d3b2 100644 --- a/src/solvers/enumpoly/poly.h +++ b/src/solvers/enumpoly/poly.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/poly.h // Declaration of polynomial classes diff --git a/src/solvers/enumpoly/poly.imp b/src/solvers/enumpoly/poly.imp index fa14185d2..d782f24c5 100644 --- a/src/solvers/enumpoly/poly.imp +++ b/src/solvers/enumpoly/poly.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/poly.imp // Implementation of polynomial class diff --git a/src/solvers/enumpoly/prepoly.cc b/src/solvers/enumpoly/prepoly.cc index d37c94cce..500743f20 100644 --- a/src/solvers/enumpoly/prepoly.cc +++ b/src/solvers/enumpoly/prepoly.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/prepoly.cc // Implementation of supporting classes for polynomials diff --git a/src/solvers/enumpoly/prepoly.h b/src/solvers/enumpoly/prepoly.h index 9fcb33842..84f836710 100644 --- a/src/solvers/enumpoly/prepoly.h +++ b/src/solvers/enumpoly/prepoly.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/prepoly.h // Declaration of supporting classes for polynomials diff --git a/src/solvers/enumpoly/quiksolv.cc b/src/solvers/enumpoly/quiksolv.cc index a2df5fbfb..b64a61caa 100644 --- a/src/solvers/enumpoly/quiksolv.cc +++ b/src/solvers/enumpoly/quiksolv.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/quiksolv.cc // Instantiations of quick-solver classes diff --git a/src/solvers/enumpoly/quiksolv.h b/src/solvers/enumpoly/quiksolv.h index af2d64e7b..fc2fbaae3 100644 --- a/src/solvers/enumpoly/quiksolv.h +++ b/src/solvers/enumpoly/quiksolv.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/quiksolv.h // Interface to quick-solver classes diff --git a/src/solvers/enumpoly/quiksolv.imp b/src/solvers/enumpoly/quiksolv.imp index 6adab396a..de2c71adc 100644 --- a/src/solvers/enumpoly/quiksolv.imp +++ b/src/solvers/enumpoly/quiksolv.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/quiksolv.imp // Implementation of quick-solver classes diff --git a/src/solvers/enumpoly/rectangl.cc b/src/solvers/enumpoly/rectangl.cc index 7b094270c..0e55f0df3 100644 --- a/src/solvers/enumpoly/rectangl.cc +++ b/src/solvers/enumpoly/rectangl.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/rectangl.cc // Instantiation of rectangle classes diff --git a/src/solvers/enumpoly/rectangl.h b/src/solvers/enumpoly/rectangl.h index 3552e81f4..2bbf290e2 100644 --- a/src/solvers/enumpoly/rectangl.h +++ b/src/solvers/enumpoly/rectangl.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/rectangl.h // Declaration of rectangle class diff --git a/src/solvers/enumpoly/rectangl.imp b/src/solvers/enumpoly/rectangl.imp index 6a74c96df..4f12617f6 100644 --- a/src/solvers/enumpoly/rectangl.imp +++ b/src/solvers/enumpoly/rectangl.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/rectangl.imp // Implementation of rectangle class diff --git a/src/solvers/enumpoly/sfg.cc b/src/solvers/enumpoly/sfg.cc index 003ecafb6..62aa4ed62 100644 --- a/src/solvers/enumpoly/sfg.cc +++ b/src/solvers/enumpoly/sfg.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/sfg.cc // Implementation of sequence form classes diff --git a/src/solvers/enumpoly/sfg.h b/src/solvers/enumpoly/sfg.h index 330be5f02..22a5e2efa 100644 --- a/src/solvers/enumpoly/sfg.h +++ b/src/solvers/enumpoly/sfg.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/sfg.h // Interface to sequence form classes diff --git a/src/solvers/enumpoly/sfstrat.cc b/src/solvers/enumpoly/sfstrat.cc index fa3e75351..6ea669108 100644 --- a/src/solvers/enumpoly/sfstrat.cc +++ b/src/solvers/enumpoly/sfstrat.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/sfstrat.cc // Implementation of sequence form strategy classes diff --git a/src/solvers/enumpoly/sfstrat.h b/src/solvers/enumpoly/sfstrat.h index c506d7697..c745d750c 100644 --- a/src/solvers/enumpoly/sfstrat.h +++ b/src/solvers/enumpoly/sfstrat.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/sfstrat.h // Interface to sequence form strategy classes diff --git a/src/solvers/enumpure/enumpure.h b/src/solvers/enumpure/enumpure.h index 83bf17e7f..7ed544545 100644 --- a/src/solvers/enumpure/enumpure.h +++ b/src/solvers/enumpure/enumpure.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/include/gambit/nash/enumpure.h // Enumerate pure-strategy equilibrium profiles of games diff --git a/src/solvers/gnm/gnm.cc b/src/solvers/gnm/gnm.cc index f85ad8434..1ec47879c 100644 --- a/src/solvers/gnm/gnm.cc +++ b/src/solvers/gnm/gnm.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/gnm/gnm.cc // Compute Nash equilibria via the global Newton method diff --git a/src/solvers/gnm/gnm.h b/src/solvers/gnm/gnm.h index d18bc1f08..38e94a753 100644 --- a/src/solvers/gnm/gnm.h +++ b/src/solvers/gnm/gnm.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/include/gambit/nash/gnm.h // Compute Nash equilibria via the global Newton method diff --git a/src/solvers/gtracer/aggame.cc b/src/solvers/gtracer/aggame.cc index 994bb6f28..5d43cb287 100644 --- a/src/solvers/gtracer/aggame.cc +++ b/src/solvers/gtracer/aggame.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // Albert Xin Jiang // // FILE: library/src/gtracer/aggame.cc diff --git a/src/solvers/gtracer/aggame.h b/src/solvers/gtracer/aggame.h index ba16b4771..a3f5f2490 100644 --- a/src/solvers/gtracer/aggame.h +++ b/src/solvers/gtracer/aggame.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // Albert Xin Jiang // // FILE: library/include/gambit/gtracer/aggame.h diff --git a/src/solvers/gtracer/cmatrix.cc b/src/solvers/gtracer/cmatrix.cc index 3617aa6b5..9d75ef254 100644 --- a/src/solvers/gtracer/cmatrix.cc +++ b/src/solvers/gtracer/cmatrix.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/src/gtracer/cmatrix.cc // Implementation of matrix classes for Gametracer diff --git a/src/solvers/gtracer/cmatrix.h b/src/solvers/gtracer/cmatrix.h index 24c90804d..2d93deb50 100644 --- a/src/solvers/gtracer/cmatrix.h +++ b/src/solvers/gtracer/cmatrix.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/include/gtracer/cmatrix.h // Definition of matrix classes for Gametracer diff --git a/src/solvers/gtracer/gnm.cc b/src/solvers/gtracer/gnm.cc index 56943459d..b7a66f8f3 100644 --- a/src/solvers/gtracer/gnm.cc +++ b/src/solvers/gtracer/gnm.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/src/gtracer/gnm.cc // Implementation of Global Newton Method from Gametracer diff --git a/src/solvers/gtracer/gnmgame.cc b/src/solvers/gtracer/gnmgame.cc index a7ebd68f5..d2b5cc39e 100644 --- a/src/solvers/gtracer/gnmgame.cc +++ b/src/solvers/gtracer/gnmgame.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/src/gtracer/gnmgame.cc // Implementation of basic game representation class in Gametracer diff --git a/src/solvers/gtracer/gnmgame.h b/src/solvers/gtracer/gnmgame.h index e9b9a1059..e812f555f 100644 --- a/src/solvers/gtracer/gnmgame.h +++ b/src/solvers/gtracer/gnmgame.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/include/gtracer/gnmgame.h // Definition of basic game representation class in Gametracer diff --git a/src/solvers/gtracer/gtracer.cc b/src/solvers/gtracer/gtracer.cc index 1c8e3ea52..c51e91fde 100644 --- a/src/solvers/gtracer/gtracer.cc +++ b/src/solvers/gtracer/gtracer.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/include/gtracer/gtracer.cc // Top-level include file for Gametracer embedding in Gambit diff --git a/src/solvers/gtracer/gtracer.h b/src/solvers/gtracer/gtracer.h index 8b4a156f1..814337986 100644 --- a/src/solvers/gtracer/gtracer.h +++ b/src/solvers/gtracer/gtracer.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/include/gtracer/gtracer.h // Top-level include file for Gametracer embedding in Gambit diff --git a/src/solvers/gtracer/ipa.cc b/src/solvers/gtracer/ipa.cc index 1b0fb9931..927f925a7 100644 --- a/src/solvers/gtracer/ipa.cc +++ b/src/solvers/gtracer/ipa.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/src/gtracer/gnm.cc // Implementation of Global Newton Method from Gametracer diff --git a/src/solvers/gtracer/nfgame.cc b/src/solvers/gtracer/nfgame.cc index 3ec386199..064c11c93 100644 --- a/src/solvers/gtracer/nfgame.cc +++ b/src/solvers/gtracer/nfgame.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/src/gtracer/nfgame.cc // Implementation of normal form game class for Gametracer diff --git a/src/solvers/gtracer/nfgame.h b/src/solvers/gtracer/nfgame.h index 7fa547596..dbc3784bd 100644 --- a/src/solvers/gtracer/nfgame.h +++ b/src/solvers/gtracer/nfgame.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/include/gtracer/nfgame.h // Definition of normal form game class for Gametracer diff --git a/src/solvers/ipa/ipa.cc b/src/solvers/ipa/ipa.cc index 54ecf30bc..91fda7de3 100644 --- a/src/solvers/ipa/ipa.cc +++ b/src/solvers/ipa/ipa.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/ipa/ipa.cc // Compute Nash equilibria via iterated polymatrix approximation diff --git a/src/solvers/ipa/ipa.h b/src/solvers/ipa/ipa.h index 4a0abbd98..10d0e9db7 100644 --- a/src/solvers/ipa/ipa.h +++ b/src/solvers/ipa/ipa.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/include/gambit/nash/ipa.h // Compute Nash equilibria via iterated polymatrix approximation diff --git a/src/solvers/lcp/efglcp.cc b/src/solvers/lcp/efglcp.cc index d87657454..67b4a06eb 100644 --- a/src/solvers/lcp/efglcp.cc +++ b/src/solvers/lcp/efglcp.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/lcp/efglcp.cc // Implementation of algorithm to solve extensive forms using linear diff --git a/src/solvers/lcp/lcp.h b/src/solvers/lcp/lcp.h index 21da10a84..4b556911f 100644 --- a/src/solvers/lcp/lcp.h +++ b/src/solvers/lcp/lcp.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/include/gambit/nash/lcp.h // Compute Nash equilibria via linear complementarity programming diff --git a/src/solvers/lcp/nfglcp.cc b/src/solvers/lcp/nfglcp.cc index 012a4361e..ae802c5e1 100644 --- a/src/solvers/lcp/nfglcp.cc +++ b/src/solvers/lcp/nfglcp.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/lcp/nfglcp.cc // Compute Nash equilibria via Lemke-Howson algorithm diff --git a/src/solvers/liap/efgliap.cc b/src/solvers/liap/efgliap.cc index a2d22d9bc..df7f694ab 100644 --- a/src/solvers/liap/efgliap.cc +++ b/src/solvers/liap/efgliap.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/liap/efgliap.cc // Compute Nash equilibria via Lyapunov function minimization diff --git a/src/solvers/liap/liap.h b/src/solvers/liap/liap.h index 0dfb756a0..28d716ba2 100644 --- a/src/solvers/liap/liap.h +++ b/src/solvers/liap/liap.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/liap/efgliap.h // Compute Nash equilibria by minimizing Liapunov function on extensive game diff --git a/src/solvers/liap/nfgliap.cc b/src/solvers/liap/nfgliap.cc index 6d6b47c5f..3160ee8a3 100644 --- a/src/solvers/liap/nfgliap.cc +++ b/src/solvers/liap/nfgliap.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/liap/nfgliap.cc // Compute Nash equilibria by minimizing Liapunov function diff --git a/src/solvers/linalg/basis.cc b/src/solvers/linalg/basis.cc index 3b930c10f..b201f5566 100644 --- a/src/solvers/linalg/basis.cc +++ b/src/solvers/linalg/basis.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/basis.cc // Implementation of Basis class diff --git a/src/solvers/linalg/basis.h b/src/solvers/linalg/basis.h index fba7a2381..a4c27d5ac 100644 --- a/src/solvers/linalg/basis.h +++ b/src/solvers/linalg/basis.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/basis.h // Declaration of basis class for tableaus diff --git a/src/solvers/linalg/bfs.h b/src/solvers/linalg/bfs.h index 6f9c27e4a..109479df8 100644 --- a/src/solvers/linalg/bfs.h +++ b/src/solvers/linalg/bfs.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/bfs.h // Interface to basic feasible solution class diff --git a/src/solvers/linalg/btableau.cc b/src/solvers/linalg/btableau.cc index c43a5a570..a47774b0c 100644 --- a/src/solvers/linalg/btableau.cc +++ b/src/solvers/linalg/btableau.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/btableau.cc // Instantiation of base tableau classes diff --git a/src/solvers/linalg/btableau.h b/src/solvers/linalg/btableau.h index 56466c01e..f7bd2f8f1 100644 --- a/src/solvers/linalg/btableau.h +++ b/src/solvers/linalg/btableau.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/btableau.h // Interface to base tableau classes diff --git a/src/solvers/linalg/btableau.imp b/src/solvers/linalg/btableau.imp index 47ab7a3a5..54c076453 100644 --- a/src/solvers/linalg/btableau.imp +++ b/src/solvers/linalg/btableau.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/btableau.imp // Implementation of base tableau classes diff --git a/src/solvers/linalg/lemketab.cc b/src/solvers/linalg/lemketab.cc index f1cb9da65..d16ff30df 100644 --- a/src/solvers/linalg/lemketab.cc +++ b/src/solvers/linalg/lemketab.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/lcp/lemketab.cc // Lemke tableau instantiations diff --git a/src/solvers/linalg/lemketab.h b/src/solvers/linalg/lemketab.h index 4bbef860b..b89b44d33 100644 --- a/src/solvers/linalg/lemketab.h +++ b/src/solvers/linalg/lemketab.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/lcp/lemketab.h // Declaration of Lemke tableau class diff --git a/src/solvers/linalg/lemketab.imp b/src/solvers/linalg/lemketab.imp index b61c45fdc..543b8a2f7 100644 --- a/src/solvers/linalg/lemketab.imp +++ b/src/solvers/linalg/lemketab.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/lcp/lemketab.imp // Implementation of Lemke tableau class diff --git a/src/solvers/linalg/lhtab.cc b/src/solvers/linalg/lhtab.cc index 64ca5f0af..40249ea1f 100644 --- a/src/solvers/linalg/lhtab.cc +++ b/src/solvers/linalg/lhtab.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/lcp/lhtab.cc // Tableau class for Lemke-Howson algorithm diff --git a/src/solvers/linalg/lhtab.h b/src/solvers/linalg/lhtab.h index 635017633..8ad205d47 100644 --- a/src/solvers/linalg/lhtab.h +++ b/src/solvers/linalg/lhtab.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/lcp/lhtab.h // Tableau class for Lemke-Howson algorithm diff --git a/src/solvers/linalg/lhtab.imp b/src/solvers/linalg/lhtab.imp index 3f2cbea8d..c424b2e8c 100644 --- a/src/solvers/linalg/lhtab.imp +++ b/src/solvers/linalg/lhtab.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/lcp/lhtab.imp // Tableau class for Lemke-Howson algorithm diff --git a/src/solvers/linalg/lpsolve.cc b/src/solvers/linalg/lpsolve.cc index e70d42a76..3a4516761 100644 --- a/src/solvers/linalg/lpsolve.cc +++ b/src/solvers/linalg/lpsolve.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/lpsolve.cc // Instantiation of common LP solvers diff --git a/src/solvers/linalg/lpsolve.h b/src/solvers/linalg/lpsolve.h index da358a0ef..028a92556 100644 --- a/src/solvers/linalg/lpsolve.h +++ b/src/solvers/linalg/lpsolve.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/lpsolve.h // Interface to LP solvers diff --git a/src/solvers/linalg/lpsolve.imp b/src/solvers/linalg/lpsolve.imp index 7d8a9ec3b..e8548cd9d 100644 --- a/src/solvers/linalg/lpsolve.imp +++ b/src/solvers/linalg/lpsolve.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/lpsolve.imp // Implementation of LP solver diff --git a/src/solvers/linalg/lptab.cc b/src/solvers/linalg/lptab.cc index 8635ffbf6..7f9c63e42 100644 --- a/src/solvers/linalg/lptab.cc +++ b/src/solvers/linalg/lptab.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/lptab.cc // Instantiation of LP tableau diff --git a/src/solvers/linalg/lptab.h b/src/solvers/linalg/lptab.h index 6a53cb757..d49c00834 100644 --- a/src/solvers/linalg/lptab.h +++ b/src/solvers/linalg/lptab.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/lptab.h // Interface to LP tableaus diff --git a/src/solvers/linalg/lptab.imp b/src/solvers/linalg/lptab.imp index 45e424ed2..8b7798e8a 100644 --- a/src/solvers/linalg/lptab.imp +++ b/src/solvers/linalg/lptab.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/lptab.imp // Implementation of LP tableaus diff --git a/src/solvers/linalg/ludecomp.cc b/src/solvers/linalg/ludecomp.cc index f7778bc6f..8ce405aa5 100644 --- a/src/solvers/linalg/ludecomp.cc +++ b/src/solvers/linalg/ludecomp.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/ludecomp.cc // Instantiation of LU decomposition diff --git a/src/solvers/linalg/ludecomp.h b/src/solvers/linalg/ludecomp.h index 9c43e00e1..4dc3bbfc4 100644 --- a/src/solvers/linalg/ludecomp.h +++ b/src/solvers/linalg/ludecomp.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/ludecomp.h // Interface to LU decomposition classes diff --git a/src/solvers/linalg/ludecomp.imp b/src/solvers/linalg/ludecomp.imp index b27aa6b41..47e114156 100644 --- a/src/solvers/linalg/ludecomp.imp +++ b/src/solvers/linalg/ludecomp.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/ludecomp.imp // Implementation of LU decomposition diff --git a/src/solvers/linalg/tableau.cc b/src/solvers/linalg/tableau.cc index 3bb107643..6565bcbdc 100644 --- a/src/solvers/linalg/tableau.cc +++ b/src/solvers/linalg/tableau.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/tableau.imp // Implementation of tableau class diff --git a/src/solvers/linalg/tableau.h b/src/solvers/linalg/tableau.h index 2f633a5b4..02e63cbed 100644 --- a/src/solvers/linalg/tableau.h +++ b/src/solvers/linalg/tableau.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/liblinear/tableau.h // Interface to tableau class diff --git a/src/solvers/linalg/vertenum.h b/src/solvers/linalg/vertenum.h index 00d17ecd1..f018b590e 100644 --- a/src/solvers/linalg/vertenum.h +++ b/src/solvers/linalg/vertenum.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enummixed/vertenum.h // Interface to vertex enumerator diff --git a/src/solvers/linalg/vertenum.imp b/src/solvers/linalg/vertenum.imp index 654cd8674..a50d2ec1a 100644 --- a/src/solvers/linalg/vertenum.imp +++ b/src/solvers/linalg/vertenum.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enummixed/vertenum.imp // Implementation of vertex enumerator diff --git a/src/solvers/logit/efglogit.cc b/src/solvers/logit/efglogit.cc index 46b99b3d1..5966cba03 100644 --- a/src/solvers/logit/efglogit.cc +++ b/src/solvers/logit/efglogit.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/logit/efglogit.cc // Computation of agent quantal response equilibrium correspondence for diff --git a/src/solvers/logit/efglogit.h b/src/solvers/logit/efglogit.h index 1f759b519..5fd0388f5 100644 --- a/src/solvers/logit/efglogit.h +++ b/src/solvers/logit/efglogit.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/logit/efglogit.h // Computation of agent quantal response equilibrium correspondence for diff --git a/src/solvers/logit/logbehav.h b/src/solvers/logit/logbehav.h index 4f3f3952d..861877bff 100644 --- a/src/solvers/logit/logbehav.h +++ b/src/solvers/logit/logbehav.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/logit/logbehav.h // Behavior strategy profile where action probabilities are represented using diff --git a/src/solvers/logit/logbehav.imp b/src/solvers/logit/logbehav.imp index b237c8252..d20368eb8 100644 --- a/src/solvers/logit/logbehav.imp +++ b/src/solvers/logit/logbehav.imp @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/logit/logbehav.imp // Behavior strategy profile where action probabilities are represented using diff --git a/src/solvers/logit/nfglogit.cc b/src/solvers/logit/nfglogit.cc index a47168073..af2145bff 100644 --- a/src/solvers/logit/nfglogit.cc +++ b/src/solvers/logit/nfglogit.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/logit/nfglogit.cc // Computation of quantal response equilibrium correspondence for diff --git a/src/solvers/logit/nfglogit.h b/src/solvers/logit/nfglogit.h index 056d0e897..0c7fb28f7 100644 --- a/src/solvers/logit/nfglogit.h +++ b/src/solvers/logit/nfglogit.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: nfglogit.cc // Computation of quantal response equilibrium correspondence for diff --git a/src/solvers/logit/path.cc b/src/solvers/logit/path.cc index 069d051d9..cb422035b 100644 --- a/src/solvers/logit/path.cc +++ b/src/solvers/logit/path.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/logit/path.cc // Implementation of generic smooth path-following algorithm. diff --git a/src/solvers/logit/path.h b/src/solvers/logit/path.h index 6ee2a00d3..4b011fc14 100644 --- a/src/solvers/logit/path.h +++ b/src/solvers/logit/path.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/logit/path.h // Interface to generic smooth path-following algorithm. diff --git a/src/solvers/lp/efglp.cc b/src/solvers/lp/efglp.cc index dfb88059b..2164cdae5 100644 --- a/src/solvers/lp/efglp.cc +++ b/src/solvers/lp/efglp.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/lp/efglp.cc // Implementation of algorithm to solve efgs via linear programming diff --git a/src/solvers/lp/efglp.h b/src/solvers/lp/efglp.h index 471cf6ff6..87bebe861 100644 --- a/src/solvers/lp/efglp.h +++ b/src/solvers/lp/efglp.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/lcp/efglp.h // Compute Nash equilibria via linear programming diff --git a/src/solvers/lp/nfglp.cc b/src/solvers/lp/nfglp.cc index 38dd58378..82884217d 100644 --- a/src/solvers/lp/nfglp.cc +++ b/src/solvers/lp/nfglp.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/lp/nfglp.cc // Implementation of algorithm to compute mixed strategy equilibria diff --git a/src/solvers/lp/nfglp.h b/src/solvers/lp/nfglp.h index c52b24bcf..712d1d3b3 100644 --- a/src/solvers/lp/nfglp.h +++ b/src/solvers/lp/nfglp.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/lcp/nfglp.h // Compute Nash equilibria via linear programming diff --git a/src/solvers/simpdiv/simpdiv.cc b/src/solvers/simpdiv/simpdiv.cc index db94a4327..565552cda 100644 --- a/src/solvers/simpdiv/simpdiv.cc +++ b/src/solvers/simpdiv/simpdiv.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/simpdiv/simpdiv.cc // Compute Nash equilibria via simplicial subdivision on the normal form diff --git a/src/solvers/simpdiv/simpdiv.h b/src/solvers/simpdiv/simpdiv.h index 322b1094c..5c456f767 100644 --- a/src/solvers/simpdiv/simpdiv.h +++ b/src/solvers/simpdiv/simpdiv.h @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: library/include/gambit/nash/simpdiv.h // Compute Nash equilibria via simplicial subdivision on the normal form diff --git a/src/tools/convert/convert.cc b/src/tools/convert/convert.cc index c5bc084f7..7a6ee91cc 100644 --- a/src/tools/convert/convert.cc +++ b/src/tools/convert/convert.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/convert/convert.cc // Convert among various file formats @@ -33,7 +33,7 @@ void WriteOsborneFile(std::ostream &, const Gambit::Game &, int, int); void PrintBanner(std::ostream &p_stream) { p_stream << "Convert games among various file formats\n"; - p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2024, The Gambit Project\n"; + p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2025, The Gambit Project\n"; p_stream << "This is free software, distributed under the GNU GPL\n\n"; } diff --git a/src/tools/enummixed/enummixed.cc b/src/tools/enummixed/enummixed.cc index 615de3925..8533e2916 100644 --- a/src/tools/enummixed/enummixed.cc +++ b/src/tools/enummixed/enummixed.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enummixed/enummixed.cc // Compute Nash equilibria via Mangasarian's algorithm @@ -45,7 +45,7 @@ void PrintCliques(const List>> &p_cliques, void PrintBanner(std::ostream &p_stream) { p_stream << "Compute Nash equilibria by enumerating extreme points\n"; - p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2024, The Gambit Project\n"; + p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2025, The Gambit Project\n"; p_stream << "Enumeration code based on lrslib 6.2,\n"; p_stream << "Copyright (C) 1995-2016 by David Avis (avis@cs.mcgill.ca)\n"; p_stream << "This is free software, distributed under the GNU GPL\n\n"; diff --git a/src/tools/enumpoly/enumpoly.cc b/src/tools/enumpoly/enumpoly.cc index 2d1d4f6d9..95c69401b 100644 --- a/src/tools/enumpoly/enumpoly.cc +++ b/src/tools/enumpoly/enumpoly.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpoly/enumpoly.cc // Enumerates all Nash equilibria via support enumeration @@ -33,7 +33,7 @@ bool g_verbose = false; void PrintBanner(std::ostream &p_stream) { p_stream << "Compute Nash equilibria by solving polynomial systems\n"; - p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2024, The Gambit Project\n"; + p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2025, The Gambit Project\n"; p_stream << "Heuristic search implementation Copyright (C) 2006, Litao Wei\n"; p_stream << "This is free software, distributed under the GNU GPL\n\n"; } diff --git a/src/tools/enumpure/enumpure.cc b/src/tools/enumpure/enumpure.cc index 2acd753ec..3069b19fc 100644 --- a/src/tools/enumpure/enumpure.cc +++ b/src/tools/enumpure/enumpure.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/enumpure/enumpure.cc // Compute pure-strategy equilibria in extensive form games @@ -34,7 +34,7 @@ using namespace Gambit::Nash; void PrintBanner(std::ostream &p_stream) { p_stream << "Search for Nash equilibria in pure strategies\n"; - p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2024, The Gambit Project\n"; + p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2025, The Gambit Project\n"; p_stream << "This is free software, distributed under the GNU GPL\n\n"; } diff --git a/src/tools/gt/nfggnm.cc b/src/tools/gt/nfggnm.cc index cfd881974..98b0a2c1d 100644 --- a/src/tools/gt/nfggnm.cc +++ b/src/tools/gt/nfggnm.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/gt/nfggnm.cc // Gambit frontend to Gametracer global Newton method @@ -39,7 +39,7 @@ void PrintBanner(std::ostream &p_stream) { p_stream << "Compute Nash equilibria using a global Newton method\n"; p_stream << "Gametracer version 0.2, Copyright (C) 2002, Ben Blum and Christian Shelton\n"; - p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2024, The Gambit Project\n"; + p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2025, The Gambit Project\n"; p_stream << "This is free software, distributed under the GNU GPL\n\n"; } diff --git a/src/tools/gt/nfggt.cc b/src/tools/gt/nfggt.cc index 46025f35f..0b32e4981 100644 --- a/src/tools/gt/nfggt.cc +++ b/src/tools/gt/nfggt.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/gt/nfggt.cc // Gambit frontend to Gametracer diff --git a/src/tools/gt/nfgipa.cc b/src/tools/gt/nfgipa.cc index 9818dedc0..bb0321e7f 100644 --- a/src/tools/gt/nfgipa.cc +++ b/src/tools/gt/nfgipa.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/gt/nfgipa.cc // Gambit frontend to Gametracer IPA @@ -39,7 +39,7 @@ void PrintBanner(std::ostream &p_stream) { p_stream << "Compute Nash equilibria using iterated polymatrix approximation\n"; p_stream << "Gametracer version 0.2, Copyright (C) 2002, Ben Blum and Christian Shelton\n"; - p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2024, The Gambit Project\n"; + p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2025, The Gambit Project\n"; p_stream << "This is free software, distributed under the GNU GPL\n\n"; } diff --git a/src/tools/lcp/lcp.cc b/src/tools/lcp/lcp.cc index 3d46118e0..268a76879 100644 --- a/src/tools/lcp/lcp.cc +++ b/src/tools/lcp/lcp.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/lcp/lcp.cc // Compute Nash equilibria via linear complementarity program @@ -34,7 +34,7 @@ using namespace Gambit::Nash; void PrintBanner(std::ostream &p_stream) { p_stream << "Compute Nash equilibria by solving a linear complementarity program\n"; - p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2024, The Gambit Project\n"; + p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2025, The Gambit Project\n"; p_stream << "This is free software, distributed under the GNU GPL\n\n"; } diff --git a/src/tools/liap/liap.cc b/src/tools/liap/liap.cc index 869141f79..ee58b3fb9 100644 --- a/src/tools/liap/liap.cc +++ b/src/tools/liap/liap.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/liap/liap.cc // Compute Nash equilibria by minimizing Liapunov function @@ -33,7 +33,7 @@ using namespace Gambit::Nash; void PrintBanner(std::ostream &p_stream) { p_stream << "Compute Nash equilibria by minimizing the Lyapunov function\n"; - p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2024, The Gambit Project\n"; + p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2025, The Gambit Project\n"; p_stream << "This is free software, distributed under the GNU GPL\n\n"; } diff --git a/src/tools/logit/logit.cc b/src/tools/logit/logit.cc index 6939d7eb3..b9a7dd412 100644 --- a/src/tools/logit/logit.cc +++ b/src/tools/logit/logit.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/logit/logit.cc // Command-line driver program for quantal response equilibrium tracing and @@ -35,7 +35,7 @@ void PrintBanner(std::ostream &p_stream) { p_stream << "Compute a branch of the logit equilibrium correspondence\n"; p_stream << "Gambit version " VERSION ", "; - p_stream << "Copyright (C) 1994-2024, The Gambit Project\n"; + p_stream << "Copyright (C) 1994-2025, The Gambit Project\n"; p_stream << "This is free software, distributed under the GNU GPL\n\n"; } diff --git a/src/tools/lp/lp.cc b/src/tools/lp/lp.cc index e1d826629..7a37e1aeb 100644 --- a/src/tools/lp/lp.cc +++ b/src/tools/lp/lp.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/lp/lp.cc // Implementation of algorithm to compute mixed strategy equilibria @@ -35,7 +35,7 @@ using namespace Gambit; void PrintBanner(std::ostream &p_stream) { p_stream << "Compute Nash equilibria by solving a linear program\n"; - p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2024, The Gambit Project\n"; + p_stream << "Gambit version " VERSION ", Copyright (C) 1994-2025, The Gambit Project\n"; p_stream << "This is free software, distributed under the GNU GPL\n\n"; } diff --git a/src/tools/simpdiv/nfgsimpdiv.cc b/src/tools/simpdiv/nfgsimpdiv.cc index 159d90ec9..532688af4 100644 --- a/src/tools/simpdiv/nfgsimpdiv.cc +++ b/src/tools/simpdiv/nfgsimpdiv.cc @@ -1,6 +1,6 @@ // // This file is part of Gambit -// Copyright (c) 1994-2024, The Gambit Project (http://www.gambit-project.org) +// Copyright (c) 1994-2025, The Gambit Project (https://www.gambit-project.org) // // FILE: src/tools/simpdiv/nfgsimpdiv.cc // Compute Nash equilibria via simplicial subdivision on the normal form @@ -94,7 +94,7 @@ void MixedStrategyCSVAsFloatRenderer::Render(const MixedStrategyProfile