From 430ca1dcfbdb8ea85aa4cdc8f69a1bc132c40189 Mon Sep 17 00:00:00 2001 From: Anthony Lloyd Date: Sun, 22 Sep 2024 17:25:43 +0100 Subject: [PATCH] update copyright 2024 --- Directory.Build.props | 2 +- MKL.NET.Matrix/DoubleMatrix.cs | 2 +- MKL.NET.Matrix/DoubleMatrixExpression.cs | 2 +- MKL.NET.Matrix/DoubleVector.cs | 2 +- MKL.NET.Matrix/DoubleVectorExpression.cs | 2 +- MKL.NET.Matrix/SingleMatrix.cs | 2 +- MKL.NET.Matrix/SingleMatrixExpression.cs | 2 +- MKL.NET.Matrix/SingleVector.cs | 2 +- MKL.NET.Matrix/SingleVectorExpression.cs | 2 +- MKL.NET.Matrix/ThrowHelper.cs | 2 +- MKL.NET.Optimization/Optimize.Calculus.cs | 2 +- MKL.NET.Optimization/Optimize.Minimum.cs | 2 +- MKL.NET.Optimization/Optimize.Root.cs | 2 +- MKL.NET.Statistics/HistogramEstimator.cs | 2 +- MKL.NET.Statistics/MomentEstimator.cs | 2 +- MKL.NET.Statistics/QuantileEstimator.cs | 2 +- MKL.NET.Statistics/QuantilesEstimator.cs | 2 +- MKL.NET.Statistics/QuartileEstimator.cs | 2 +- MKL.NET.Statistics/Stats.cs | 2 +- MKL.NET/Blas.cs | 2 +- MKL.NET/Dfti.cs | 2 +- MKL.NET/Feast.cs | 2 +- MKL.NET/Lapack.cs | 2 +- MKL.NET/MKL.cs | 2 +- MKL.NET/Solve.cs | 2 +- MKL.NET/Types.cs | 2 +- MKL.NET/Vml.cs | 2 +- MKL.NET/Vsl.cs | 2 +- 28 files changed, 28 insertions(+), 28 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 27457c1..48ac5e9 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -2,7 +2,7 @@ Anthony Lloyd Anthony Lloyd - Copyright 2023 + Copyright 2024 Apache-2.0 http://github.com/MKL-NET/MKL.NET matrix.png diff --git a/MKL.NET.Matrix/DoubleMatrix.cs b/MKL.NET.Matrix/DoubleMatrix.cs index a0ec2ae..31bb08b 100644 --- a/MKL.NET.Matrix/DoubleMatrix.cs +++ b/MKL.NET.Matrix/DoubleMatrix.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Matrix/DoubleMatrixExpression.cs b/MKL.NET.Matrix/DoubleMatrixExpression.cs index 3f52d99..a6f6ba0 100644 --- a/MKL.NET.Matrix/DoubleMatrixExpression.cs +++ b/MKL.NET.Matrix/DoubleMatrixExpression.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Matrix/DoubleVector.cs b/MKL.NET.Matrix/DoubleVector.cs index 687d3b1..b24661d 100644 --- a/MKL.NET.Matrix/DoubleVector.cs +++ b/MKL.NET.Matrix/DoubleVector.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Matrix/DoubleVectorExpression.cs b/MKL.NET.Matrix/DoubleVectorExpression.cs index dc108b2..d3753fb 100644 --- a/MKL.NET.Matrix/DoubleVectorExpression.cs +++ b/MKL.NET.Matrix/DoubleVectorExpression.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Matrix/SingleMatrix.cs b/MKL.NET.Matrix/SingleMatrix.cs index d7b89cc..8d7b84d 100644 --- a/MKL.NET.Matrix/SingleMatrix.cs +++ b/MKL.NET.Matrix/SingleMatrix.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Matrix/SingleMatrixExpression.cs b/MKL.NET.Matrix/SingleMatrixExpression.cs index 988a207..c49e07e 100644 --- a/MKL.NET.Matrix/SingleMatrixExpression.cs +++ b/MKL.NET.Matrix/SingleMatrixExpression.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Matrix/SingleVector.cs b/MKL.NET.Matrix/SingleVector.cs index 69ab0a3..d4bbdcb 100644 --- a/MKL.NET.Matrix/SingleVector.cs +++ b/MKL.NET.Matrix/SingleVector.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Matrix/SingleVectorExpression.cs b/MKL.NET.Matrix/SingleVectorExpression.cs index 2cf83e5..6a2709f 100644 --- a/MKL.NET.Matrix/SingleVectorExpression.cs +++ b/MKL.NET.Matrix/SingleVectorExpression.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Matrix/ThrowHelper.cs b/MKL.NET.Matrix/ThrowHelper.cs index 00af33b..9a9b160 100644 --- a/MKL.NET.Matrix/ThrowHelper.cs +++ b/MKL.NET.Matrix/ThrowHelper.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Optimization/Optimize.Calculus.cs b/MKL.NET.Optimization/Optimize.Calculus.cs index 2ebbd3c..3737df1 100644 --- a/MKL.NET.Optimization/Optimize.Calculus.cs +++ b/MKL.NET.Optimization/Optimize.Calculus.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Optimization/Optimize.Minimum.cs b/MKL.NET.Optimization/Optimize.Minimum.cs index d8ae1bb..38f35d9 100644 --- a/MKL.NET.Optimization/Optimize.Minimum.cs +++ b/MKL.NET.Optimization/Optimize.Minimum.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Optimization/Optimize.Root.cs b/MKL.NET.Optimization/Optimize.Root.cs index a3a4afb..7d4971e 100644 --- a/MKL.NET.Optimization/Optimize.Root.cs +++ b/MKL.NET.Optimization/Optimize.Root.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Statistics/HistogramEstimator.cs b/MKL.NET.Statistics/HistogramEstimator.cs index f5ceba5..f884c7e 100644 --- a/MKL.NET.Statistics/HistogramEstimator.cs +++ b/MKL.NET.Statistics/HistogramEstimator.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Statistics/MomentEstimator.cs b/MKL.NET.Statistics/MomentEstimator.cs index 91db9af..7646060 100644 --- a/MKL.NET.Statistics/MomentEstimator.cs +++ b/MKL.NET.Statistics/MomentEstimator.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Statistics/QuantileEstimator.cs b/MKL.NET.Statistics/QuantileEstimator.cs index 44e364f..45a7ff0 100644 --- a/MKL.NET.Statistics/QuantileEstimator.cs +++ b/MKL.NET.Statistics/QuantileEstimator.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Statistics/QuantilesEstimator.cs b/MKL.NET.Statistics/QuantilesEstimator.cs index 033b831..87d6f2c 100644 --- a/MKL.NET.Statistics/QuantilesEstimator.cs +++ b/MKL.NET.Statistics/QuantilesEstimator.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Statistics/QuartileEstimator.cs b/MKL.NET.Statistics/QuartileEstimator.cs index 036f0c2..f0dce6f 100644 --- a/MKL.NET.Statistics/QuartileEstimator.cs +++ b/MKL.NET.Statistics/QuartileEstimator.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET.Statistics/Stats.cs b/MKL.NET.Statistics/Stats.cs index c4640f3..6b1a254 100644 --- a/MKL.NET.Statistics/Stats.cs +++ b/MKL.NET.Statistics/Stats.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET/Blas.cs b/MKL.NET/Blas.cs index b06eb57..803ac96 100644 --- a/MKL.NET/Blas.cs +++ b/MKL.NET/Blas.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET/Dfti.cs b/MKL.NET/Dfti.cs index b3cce94..d4b22dc 100644 --- a/MKL.NET/Dfti.cs +++ b/MKL.NET/Dfti.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET/Feast.cs b/MKL.NET/Feast.cs index eb8e7cd..a5c22d2 100644 --- a/MKL.NET/Feast.cs +++ b/MKL.NET/Feast.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET/Lapack.cs b/MKL.NET/Lapack.cs index 9220242..2143754 100644 --- a/MKL.NET/Lapack.cs +++ b/MKL.NET/Lapack.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET/MKL.cs b/MKL.NET/MKL.cs index 3bb9743..9f991b0 100644 --- a/MKL.NET/MKL.cs +++ b/MKL.NET/MKL.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET/Solve.cs b/MKL.NET/Solve.cs index daf75d8..1a536f5 100644 --- a/MKL.NET/Solve.cs +++ b/MKL.NET/Solve.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET/Types.cs b/MKL.NET/Types.cs index 91dc2c3..23d1d32 100644 --- a/MKL.NET/Types.cs +++ b/MKL.NET/Types.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET/Vml.cs b/MKL.NET/Vml.cs index 04b4c20..14c3713 100644 --- a/MKL.NET/Vml.cs +++ b/MKL.NET/Vml.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/MKL.NET/Vsl.cs b/MKL.NET/Vsl.cs index e4b3b07..b1a1225 100644 --- a/MKL.NET/Vsl.cs +++ b/MKL.NET/Vsl.cs @@ -1,4 +1,4 @@ -// Copyright 2023 Anthony Lloyd +// Copyright 2024 Anthony Lloyd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.