From f39064dc057271a236fffee14f5654169d16168e Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Mon, 10 Jul 2023 19:25:50 +0200 Subject: [PATCH] Removed not used usings --- FastRng/Distributions/Distribution.cs | 1 - FastRng/Distributions/IDistribution.cs | 1 - FastRng/Distributions/Uniform.cs | 1 - FastRng/IRandom.cs | 1 - FastRng/{FloatingPointMathTools.cs => MathToolsFloatingPoint.cs} | 1 - FastRng/ShapeFitter.cs | 1 - FastRngTests/Distributions/BetaA2B2.cs | 1 - FastRngTests/Distributions/BetaA2B5.cs | 1 - FastRngTests/Distributions/BetaA5B2.cs | 1 - FastRngTests/Distributions/CauchyLorentzX0.cs | 1 - FastRngTests/Distributions/CauchyLorentzX1.cs | 1 - FastRngTests/Distributions/ChiSquareK1.cs | 1 - FastRngTests/Distributions/ChiSquareK10.cs | 1 - FastRngTests/Distributions/ChiSquareK4.cs | 1 - FastRngTests/Distributions/ExponentialLa10.cs | 1 - FastRngTests/Distributions/ExponentialLa5.cs | 1 - FastRngTests/Distributions/GammaA5B15.cs | 1 - FastRngTests/Distributions/InverseExponentialLa10.cs | 1 - FastRngTests/Distributions/InverseExponentialLa5.cs | 1 - FastRngTests/Distributions/InverseGammaA3B05.cs | 1 - FastRngTests/Distributions/LaplaceB01M0.cs | 1 - FastRngTests/Distributions/LaplaceB01M05.cs | 1 - FastRngTests/Distributions/LogNormalS1M0.cs | 1 - FastRngTests/Distributions/NormalS02M05.cs | 1 - FastRngTests/Distributions/StudentTNu1.cs | 1 - FastRngTests/Distributions/WeibullK05La1.cs | 1 - 26 files changed, 26 deletions(-) rename FastRng/{FloatingPointMathTools.cs => MathToolsFloatingPoint.cs} (99%) diff --git a/FastRng/Distributions/Distribution.cs b/FastRng/Distributions/Distribution.cs index 6134ad9..2844cf1 100644 --- a/FastRng/Distributions/Distribution.cs +++ b/FastRng/Distributions/Distribution.cs @@ -1,7 +1,6 @@ using System; using System.Numerics; using System.Threading; -using System.Threading.Tasks; namespace FastRng.Distributions; diff --git a/FastRng/Distributions/IDistribution.cs b/FastRng/Distributions/IDistribution.cs index ec214bf..49b44db 100644 --- a/FastRng/Distributions/IDistribution.cs +++ b/FastRng/Distributions/IDistribution.cs @@ -1,6 +1,5 @@ using System.Numerics; using System.Threading; -using System.Threading.Tasks; namespace FastRng.Distributions; diff --git a/FastRng/Distributions/Uniform.cs b/FastRng/Distributions/Uniform.cs index 62759cf..fb2e817 100644 --- a/FastRng/Distributions/Uniform.cs +++ b/FastRng/Distributions/Uniform.cs @@ -1,7 +1,6 @@ using System; using System.Numerics; using System.Threading; -using System.Threading.Tasks; namespace FastRng.Distributions; diff --git a/FastRng/IRandom.cs b/FastRng/IRandom.cs index 207f157..a455859 100644 --- a/FastRng/IRandom.cs +++ b/FastRng/IRandom.cs @@ -1,7 +1,6 @@ using System; using System.Numerics; using System.Threading; -using System.Threading.Tasks; namespace FastRng; diff --git a/FastRng/FloatingPointMathTools.cs b/FastRng/MathToolsFloatingPoint.cs similarity index 99% rename from FastRng/FloatingPointMathTools.cs rename to FastRng/MathToolsFloatingPoint.cs index 1696a94..2069bbb 100644 --- a/FastRng/FloatingPointMathTools.cs +++ b/FastRng/MathToolsFloatingPoint.cs @@ -1,4 +1,3 @@ -using System; using System.Numerics; namespace FastRng; diff --git a/FastRng/ShapeFitter.cs b/FastRng/ShapeFitter.cs index 77b3945..f7a604d 100644 --- a/FastRng/ShapeFitter.cs +++ b/FastRng/ShapeFitter.cs @@ -1,7 +1,6 @@ using System; using System.Numerics; using System.Threading; -using System.Threading.Tasks; using FastRng.Distributions; namespace FastRng; diff --git a/FastRngTests/Distributions/BetaA2B2.cs b/FastRngTests/Distributions/BetaA2B2.cs index 10bc7b2..af000c5 100644 --- a/FastRngTests/Distributions/BetaA2B2.cs +++ b/FastRngTests/Distributions/BetaA2B2.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/BetaA2B5.cs b/FastRngTests/Distributions/BetaA2B5.cs index d05fd43..ea37a88 100644 --- a/FastRngTests/Distributions/BetaA2B5.cs +++ b/FastRngTests/Distributions/BetaA2B5.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/BetaA5B2.cs b/FastRngTests/Distributions/BetaA5B2.cs index 6e07dec..10f0012 100644 --- a/FastRngTests/Distributions/BetaA5B2.cs +++ b/FastRngTests/Distributions/BetaA5B2.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/CauchyLorentzX0.cs b/FastRngTests/Distributions/CauchyLorentzX0.cs index 6df07d0..2e5cae9 100644 --- a/FastRngTests/Distributions/CauchyLorentzX0.cs +++ b/FastRngTests/Distributions/CauchyLorentzX0.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/CauchyLorentzX1.cs b/FastRngTests/Distributions/CauchyLorentzX1.cs index 68ec7e3..70c8efc 100644 --- a/FastRngTests/Distributions/CauchyLorentzX1.cs +++ b/FastRngTests/Distributions/CauchyLorentzX1.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/ChiSquareK1.cs b/FastRngTests/Distributions/ChiSquareK1.cs index 3bf9f39..631cc0b 100644 --- a/FastRngTests/Distributions/ChiSquareK1.cs +++ b/FastRngTests/Distributions/ChiSquareK1.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/ChiSquareK10.cs b/FastRngTests/Distributions/ChiSquareK10.cs index d90945b..a011209 100644 --- a/FastRngTests/Distributions/ChiSquareK10.cs +++ b/FastRngTests/Distributions/ChiSquareK10.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/ChiSquareK4.cs b/FastRngTests/Distributions/ChiSquareK4.cs index aca1463..73eee7e 100644 --- a/FastRngTests/Distributions/ChiSquareK4.cs +++ b/FastRngTests/Distributions/ChiSquareK4.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/ExponentialLa10.cs b/FastRngTests/Distributions/ExponentialLa10.cs index 69ecdea..5cf0033 100644 --- a/FastRngTests/Distributions/ExponentialLa10.cs +++ b/FastRngTests/Distributions/ExponentialLa10.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/ExponentialLa5.cs b/FastRngTests/Distributions/ExponentialLa5.cs index f2465e9..37820f1 100644 --- a/FastRngTests/Distributions/ExponentialLa5.cs +++ b/FastRngTests/Distributions/ExponentialLa5.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/GammaA5B15.cs b/FastRngTests/Distributions/GammaA5B15.cs index 53ca50c..405acfe 100644 --- a/FastRngTests/Distributions/GammaA5B15.cs +++ b/FastRngTests/Distributions/GammaA5B15.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/InverseExponentialLa10.cs b/FastRngTests/Distributions/InverseExponentialLa10.cs index 8f148ba..f42b561 100644 --- a/FastRngTests/Distributions/InverseExponentialLa10.cs +++ b/FastRngTests/Distributions/InverseExponentialLa10.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/InverseExponentialLa5.cs b/FastRngTests/Distributions/InverseExponentialLa5.cs index de779b3..35ec819 100644 --- a/FastRngTests/Distributions/InverseExponentialLa5.cs +++ b/FastRngTests/Distributions/InverseExponentialLa5.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/InverseGammaA3B05.cs b/FastRngTests/Distributions/InverseGammaA3B05.cs index e8973bc..a79f50f 100644 --- a/FastRngTests/Distributions/InverseGammaA3B05.cs +++ b/FastRngTests/Distributions/InverseGammaA3B05.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/LaplaceB01M0.cs b/FastRngTests/Distributions/LaplaceB01M0.cs index 1f8a60a..767c071 100644 --- a/FastRngTests/Distributions/LaplaceB01M0.cs +++ b/FastRngTests/Distributions/LaplaceB01M0.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/LaplaceB01M05.cs b/FastRngTests/Distributions/LaplaceB01M05.cs index e35a49e..35d6e36 100644 --- a/FastRngTests/Distributions/LaplaceB01M05.cs +++ b/FastRngTests/Distributions/LaplaceB01M05.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/LogNormalS1M0.cs b/FastRngTests/Distributions/LogNormalS1M0.cs index 8239362..a52197c 100644 --- a/FastRngTests/Distributions/LogNormalS1M0.cs +++ b/FastRngTests/Distributions/LogNormalS1M0.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/NormalS02M05.cs b/FastRngTests/Distributions/NormalS02M05.cs index 52ed445..99200f4 100644 --- a/FastRngTests/Distributions/NormalS02M05.cs +++ b/FastRngTests/Distributions/NormalS02M05.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/StudentTNu1.cs b/FastRngTests/Distributions/StudentTNu1.cs index 13141fc..9b40384 100644 --- a/FastRngTests/Distributions/StudentTNu1.cs +++ b/FastRngTests/Distributions/StudentTNu1.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework; diff --git a/FastRngTests/Distributions/WeibullK05La1.cs b/FastRngTests/Distributions/WeibullK05La1.cs index c4b3fd2..86dca3d 100644 --- a/FastRngTests/Distributions/WeibullK05La1.cs +++ b/FastRngTests/Distributions/WeibullK05La1.cs @@ -1,7 +1,6 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Linq; -using System.Threading.Tasks; using FastRng; using NUnit.Framework;