Change Remote
This commit is contained in:
@@ -4,15 +4,19 @@ using System.Numerics;
|
||||
using Skeleton.Algebra.Extensions;
|
||||
using Skeleton.DataStructure.Packs.MatrixDecompositions;
|
||||
using Skeleton.Samples;
|
||||
using Skeleton.Utils.Helpers;
|
||||
|
||||
namespace Skeleton.Test;
|
||||
|
||||
public class EigenDecompositionTest
|
||||
[TestFixture]
|
||||
public class EigenDecompositionTest : BaseTest
|
||||
{
|
||||
private static readonly Complex I = Complex.ImaginaryOne;
|
||||
[DatapointSource]
|
||||
public static readonly C22[] DataPoints =
|
||||
30.ScaleSamples(-1, 1).C22InvertibleSamples().ToArray();
|
||||
public static readonly C22[] DataPoints = 30
|
||||
.WithSeed(Seed)
|
||||
.ScaleSamples(-1, 1)
|
||||
.C22InvertibleSamples()
|
||||
.ToArray();
|
||||
|
||||
[Theory]
|
||||
public static void DecompositionIdentityTest(C22 data)
|
||||
|
||||
Reference in New Issue
Block a user