diff --git a/lib/DecisionTrees/ActionNode.cs b/lib/DecisionTrees/ActionNode.cs index 1f547f6..e0aa7d5 100644 --- a/lib/DecisionTrees/ActionNode.cs +++ b/lib/DecisionTrees/ActionNode.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/DecisionTrees/DecisionNode.cs b/lib/DecisionTrees/DecisionNode.cs index 0681835..fab348b 100644 --- a/lib/DecisionTrees/DecisionNode.cs +++ b/lib/DecisionTrees/DecisionNode.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/DecisionTrees/DecisionTrees.csproj b/lib/DecisionTrees/DecisionTrees.csproj index c6a3073..4e9dc24 100644 --- a/lib/DecisionTrees/DecisionTrees.csproj +++ b/lib/DecisionTrees/DecisionTrees.csproj @@ -3,9 +3,9 @@ netstandard2.1 LibGameAI.DecisionTrees - 0.0.3 + 0.0.4 Nuno Fachada - Copyright (c) 2018-2023 Nuno Fachada and Contributors + Copyright (c) 2018-2024 Nuno Fachada and Contributors LibGameAI is a .NET Standard 2.1 library of AI algorithms for video games with a focus on education. In particular, the LibGameAI.DecisionTrees diff --git a/lib/DecisionTrees/IDecisionTreeNode.cs b/lib/DecisionTrees/IDecisionTreeNode.cs index 2bed4e2..ab6a649 100644 --- a/lib/DecisionTrees/IDecisionTreeNode.cs +++ b/lib/DecisionTrees/IDecisionTreeNode.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/DecisionTrees/RandomDecisionBehaviour.cs b/lib/DecisionTrees/RandomDecisionBehaviour.cs index a8e9eb7..95d7e2e 100644 --- a/lib/DecisionTrees/RandomDecisionBehaviour.cs +++ b/lib/DecisionTrees/RandomDecisionBehaviour.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/FSMs/FSMs.csproj b/lib/FSMs/FSMs.csproj index 76ff771..68be146 100644 --- a/lib/FSMs/FSMs.csproj +++ b/lib/FSMs/FSMs.csproj @@ -3,9 +3,9 @@ netstandard2.1 LibGameAI.FSMs - 0.0.3 + 0.0.4 Nuno Fachada - Copyright (c) 2018-2023 Nuno Fachada and Contributors + Copyright (c) 2018-2024 Nuno Fachada and Contributors LibGameAI is a .NET Standard 2.1 library of AI algorithms for video games with a focus on education. In particular, the LibGameAI.FSMs package diff --git a/lib/FSMs/State.cs b/lib/FSMs/State.cs index 7df9540..05c6a9e 100644 --- a/lib/FSMs/State.cs +++ b/lib/FSMs/State.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/FSMs/StateMachine.cs b/lib/FSMs/StateMachine.cs index 1c49c6b..fa9dbe8 100644 --- a/lib/FSMs/StateMachine.cs +++ b/lib/FSMs/StateMachine.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/FSMs/Transition.cs b/lib/FSMs/Transition.cs index 3dcc1a0..271fc0c 100644 --- a/lib/FSMs/Transition.cs +++ b/lib/FSMs/Transition.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/NGrams/ActionFrequency.cs b/lib/NGrams/ActionFrequency.cs index 5597127..029e1c4 100644 --- a/lib/NGrams/ActionFrequency.cs +++ b/lib/NGrams/ActionFrequency.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/NGrams/HierachNGram.cs b/lib/NGrams/HierachNGram.cs index bd04bd2..fc16aa4 100644 --- a/lib/NGrams/HierachNGram.cs +++ b/lib/NGrams/HierachNGram.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/NGrams/INGram.cs b/lib/NGrams/INGram.cs index f525ccb..3a6372f 100644 --- a/lib/NGrams/INGram.cs +++ b/lib/NGrams/INGram.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/NGrams/NGram.cs b/lib/NGrams/NGram.cs index 3361201..1ab3d27 100644 --- a/lib/NGrams/NGram.cs +++ b/lib/NGrams/NGram.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/NGrams/NGrams.csproj b/lib/NGrams/NGrams.csproj index c905e72..e9cdade 100644 --- a/lib/NGrams/NGrams.csproj +++ b/lib/NGrams/NGrams.csproj @@ -3,9 +3,9 @@ netstandard2.1 LibGameAI.NGrams - 0.0.3 + 0.0.4 Nuno Fachada - Copyright (c) 2018-2023 Nuno Fachada and Contributors + Copyright (c) 2018-2024 Nuno Fachada and Contributors LibGameAI is a .NET Standard 2.1 library of AI algorithms for video games with a focus on education. In particular, the LibGameAI.NGrams package diff --git a/lib/NaiveBayes/Attrib.cs b/lib/NaiveBayes/Attrib.cs index 3107532..589a5ba 100644 --- a/lib/NaiveBayes/Attrib.cs +++ b/lib/NaiveBayes/Attrib.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/NaiveBayes/AttribCount.cs b/lib/NaiveBayes/AttribCount.cs index 4f53b39..c589c69 100644 --- a/lib/NaiveBayes/AttribCount.cs +++ b/lib/NaiveBayes/AttribCount.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/NaiveBayes/NaiveBayes.csproj b/lib/NaiveBayes/NaiveBayes.csproj index 0d94e85..df46a0c 100644 --- a/lib/NaiveBayes/NaiveBayes.csproj +++ b/lib/NaiveBayes/NaiveBayes.csproj @@ -3,9 +3,9 @@ netstandard2.1 LibGameAI.NaiveBayes - 0.0.3 + 0.0.4 Nuno Fachada - Copyright (c) 2018-2023 Nuno Fachada and Contributors + Copyright (c) 2018-2024 Nuno Fachada and Contributors LibGameAI is a .NET Standard 2.1 library of AI algorithms for video games with a focus on education. In particular, the LibGameAI.NaiveBayes package diff --git a/lib/NaiveBayes/NaiveBayesClassifier.cs b/lib/NaiveBayes/NaiveBayesClassifier.cs index 3ef4dec..7565878 100644 --- a/lib/NaiveBayes/NaiveBayesClassifier.cs +++ b/lib/NaiveBayes/NaiveBayesClassifier.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/PCG/Landscape.cs b/lib/PCG/Landscape.cs index 48bd96e..a978396 100644 --- a/lib/PCG/Landscape.cs +++ b/lib/PCG/Landscape.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/PCG/Noise.cs b/lib/PCG/Noise.cs index 1efc55e..a6b5607 100644 --- a/lib/PCG/Noise.cs +++ b/lib/PCG/Noise.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/PCG/PCG.csproj b/lib/PCG/PCG.csproj index 85ebb59..7dff5c9 100644 --- a/lib/PCG/PCG.csproj +++ b/lib/PCG/PCG.csproj @@ -3,9 +3,9 @@ netstandard2.1 LibGameAI.PCG - 0.0.3 + 0.0.4 Nuno Fachada - Copyright (c) 2018-2023 Nuno Fachada and Contributors + Copyright (c) 2018-2024 Nuno Fachada and Contributors LibGameAI is a .NET Standard 2.1 library of AI algorithms for video games with a focus on education. In particular, the LibGameAI.PCG package diff --git a/lib/PRNG/LCG48.cs b/lib/PRNG/LCG48.cs index 62fd7f0..a0bd4fc 100644 --- a/lib/PRNG/LCG48.cs +++ b/lib/PRNG/LCG48.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/PRNG/PRNG.csproj b/lib/PRNG/PRNG.csproj index 203d23e..b2634a5 100644 --- a/lib/PRNG/PRNG.csproj +++ b/lib/PRNG/PRNG.csproj @@ -3,9 +3,9 @@ netstandard2.1 LibGameAI.PRNG - 0.0.3 + 0.0.4 Nuno Fachada - Copyright (c) 2018-2023 Nuno Fachada and Contributors + Copyright (c) 2018-2024 Nuno Fachada and Contributors LibGameAI is a .NET Standard 2.1 library of AI algorithms for video games with a focus on education. In particular, the LibGameAI.PRNG package diff --git a/lib/PRNG/Randu.cs b/lib/PRNG/Randu.cs index d17bb7e..3a18259 100644 --- a/lib/PRNG/Randu.cs +++ b/lib/PRNG/Randu.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/PRNG/XorShift128.cs b/lib/PRNG/XorShift128.cs index 59e6c24..c66ee8f 100644 --- a/lib/PRNG/XorShift128.cs +++ b/lib/PRNG/XorShift128.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/PathFinding/AStarPathFinder.cs b/lib/PathFinding/AStarPathFinder.cs index d0c938a..4992842 100644 --- a/lib/PathFinding/AStarPathFinder.cs +++ b/lib/PathFinding/AStarPathFinder.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/PathFinding/Connection.cs b/lib/PathFinding/Connection.cs index e7b314e..b50114d 100644 --- a/lib/PathFinding/Connection.cs +++ b/lib/PathFinding/Connection.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/PathFinding/DijkstraPathFinder.cs b/lib/PathFinding/DijkstraPathFinder.cs index c842ece..03add0e 100644 --- a/lib/PathFinding/DijkstraPathFinder.cs +++ b/lib/PathFinding/DijkstraPathFinder.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/PathFinding/Graph.cs b/lib/PathFinding/Graph.cs index 10bf56a..975fb7d 100644 --- a/lib/PathFinding/Graph.cs +++ b/lib/PathFinding/Graph.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/PathFinding/IConnection.cs b/lib/PathFinding/IConnection.cs index c445a3c..05c0c21 100644 --- a/lib/PathFinding/IConnection.cs +++ b/lib/PathFinding/IConnection.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/PathFinding/IGraph.cs b/lib/PathFinding/IGraph.cs index 3a5ba28..adc12c4 100644 --- a/lib/PathFinding/IGraph.cs +++ b/lib/PathFinding/IGraph.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/PathFinding/IPathFinder.cs b/lib/PathFinding/IPathFinder.cs index dcdb081..d6085ed 100644 --- a/lib/PathFinding/IPathFinder.cs +++ b/lib/PathFinding/IPathFinder.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/PathFinding/PathFinding.csproj b/lib/PathFinding/PathFinding.csproj index e13488d..f1aa38e 100644 --- a/lib/PathFinding/PathFinding.csproj +++ b/lib/PathFinding/PathFinding.csproj @@ -3,9 +3,9 @@ netstandard2.1 LibGameAI.PathFinding - 0.0.3 + 0.0.4 Nuno Fachada - Copyright (c) 2018-2023 Nuno Fachada and Contributors + Copyright (c) 2018-2024 Nuno Fachada and Contributors LibGameAI is a .NET Standard 2.1 library of AI algorithms for video games with a focus on education. In particular, the LibGameAI.PathFinding diff --git a/lib/QRNG/Halton.cs b/lib/QRNG/Halton.cs index 42abbb6..2263964 100644 --- a/lib/QRNG/Halton.cs +++ b/lib/QRNG/Halton.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/QRNG/QRNG.csproj b/lib/QRNG/QRNG.csproj index 84af97e..3d8f4a9 100644 --- a/lib/QRNG/QRNG.csproj +++ b/lib/QRNG/QRNG.csproj @@ -3,9 +3,9 @@ netstandard2.1 LibGameAI.QRNG - 0.0.3 + 0.0.4 Nuno Fachada - Copyright (c) 2018-2023 Nuno Fachada and Contributors + Copyright (c) 2018-2024 Nuno Fachada and Contributors LibGameAI is a .NET Standard 2.1 library of AI algorithms for video games with a focus on education. In particular, the LibGameAI.QRNG package diff --git a/lib/Util/ClassManager.cs b/lib/Util/ClassManager.cs index 30cc08d..39b4dff 100644 --- a/lib/Util/ClassManager.cs +++ b/lib/Util/ClassManager.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/Util/ListPlusOneWrapper.cs b/lib/Util/ListPlusOneWrapper.cs index 9a1c440..ba90de5 100644 --- a/lib/Util/ListPlusOneWrapper.cs +++ b/lib/Util/ListPlusOneWrapper.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/Util/ReadOnlyListSegment.cs b/lib/Util/ReadOnlyListSegment.cs index 1fb84e8..a5aa620 100644 --- a/lib/Util/ReadOnlyListSegment.cs +++ b/lib/Util/ReadOnlyListSegment.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/Util/RingList.cs b/lib/Util/RingList.cs index 82f568f..70e611b 100644 --- a/lib/Util/RingList.cs +++ b/lib/Util/RingList.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/Util/Stats.cs b/lib/Util/Stats.cs index 661d06a..0474908 100644 --- a/lib/Util/Stats.cs +++ b/lib/Util/Stats.cs @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2023 Nuno Fachada and contributors +/* Copyright (c) 2018-2024 Nuno Fachada and contributors * Distributed under the MIT License (See accompanying file LICENSE or copy * at http://opensource.org/licenses/MIT) */ diff --git a/lib/Util/Util.csproj b/lib/Util/Util.csproj index b49b48b..b13833b 100644 --- a/lib/Util/Util.csproj +++ b/lib/Util/Util.csproj @@ -3,9 +3,9 @@ netstandard2.1 LibGameAI.Util - 0.0.3 + 0.0.4 Nuno Fachada - Copyright (c) 2018-2023 Nuno Fachada and Contributors + Copyright (c) 2018-2024 Nuno Fachada and Contributors LibGameAI is a .NET Standard 2.1 library of AI algorithms for video games with a focus on education. In particular, the LibGameAI.Util package