csharpfftfsharpintegrationinterpolationlinear-algebramathdifferentiationmatrixnumericsrandomregressionstatisticsmathnet
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
176 lines
8.2 KiB
176 lines
8.2 KiB
// <copyright file="MatrixStorageSerializationTests.cs" company="Math.NET">
|
|
// Math.NET Numerics, part of the Math.NET Project
|
|
// http://numerics.mathdotnet.com
|
|
// http://github.com/mathnet/mathnet-numerics
|
|
//
|
|
// Copyright (c) 2009-2016 Math.NET
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person
|
|
// obtaining a copy of this software and associated documentation
|
|
// files (the "Software"), to deal in the Software without
|
|
// restriction, including without limitation the rights to use,
|
|
// copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the
|
|
// Software is furnished to do so, subject to the following
|
|
// conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be
|
|
// included in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
// OTHER DEALINGS IN THE SOFTWARE.
|
|
// </copyright>
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Runtime.Serialization;
|
|
using MathNet.Numerics.LinearAlgebra;
|
|
using MathNet.Numerics.LinearAlgebra.Storage;
|
|
using NUnit.Framework;
|
|
|
|
namespace MathNet.Numerics.UnitTests.LinearAlgebraTests
|
|
{
|
|
#if NOSYSNUMERICS
|
|
using Complex64 = Numerics.Complex;
|
|
#else
|
|
using Complex64 = System.Numerics.Complex;
|
|
#endif
|
|
|
|
[TestFixture]
|
|
public class MatrixStorageSerializationTests
|
|
{
|
|
static readonly Type[] KnownTypes =
|
|
{
|
|
typeof(DenseColumnMajorMatrixStorage<double>), typeof(SparseCompressedRowMatrixStorage<double>), typeof(DiagonalMatrixStorage<double>),
|
|
typeof(DenseColumnMajorMatrixStorage<float>), typeof(SparseCompressedRowMatrixStorage<float>), typeof(DiagonalMatrixStorage<float>),
|
|
typeof(DenseColumnMajorMatrixStorage<Numerics.Complex32>), typeof(SparseCompressedRowMatrixStorage<Numerics.Complex32>), typeof(DiagonalMatrixStorage<Numerics.Complex32>),
|
|
typeof(DenseColumnMajorMatrixStorage<Complex64>), typeof(SparseCompressedRowMatrixStorage<Complex64>), typeof(DiagonalMatrixStorage<Complex64>)
|
|
};
|
|
|
|
[Test]
|
|
public void DenseColumnMajorMatrixStorageOfDoubleDataContractSerializationTest()
|
|
{
|
|
MatrixStorage<double> expected = Matrix<double>.Build.Dense(2, 2, new[] { 1.0d, 2.0d, 0.0d, 3.0d }).Storage;
|
|
|
|
var serializer = new DataContractSerializer(typeof(MatrixStorage<double>), KnownTypes);
|
|
var stream = new MemoryStream();
|
|
serializer.WriteObject(stream, expected);
|
|
stream.Position = 0;
|
|
|
|
var actual = (MatrixStorage<double>)serializer.ReadObject(stream);
|
|
|
|
Assert.That(actual.RowCount, Is.EqualTo(expected.RowCount));
|
|
Assert.That(actual.ColumnCount, Is.EqualTo(expected.ColumnCount));
|
|
Assert.That(actual, Is.TypeOf(typeof(DenseColumnMajorMatrixStorage<double>)));
|
|
Assert.That(actual, Is.EqualTo(expected));
|
|
Assert.That(actual, Is.Not.SameAs(expected));
|
|
}
|
|
|
|
[Test]
|
|
public void DenseColumnMajorMatrixStorageOfSingleDataContractSerializationTest()
|
|
{
|
|
MatrixStorage<float> expected = Matrix<float>.Build.Dense(2, 2, new[] { 1.0f, 2.0f, 0.0f, 3.0f }).Storage;
|
|
|
|
var serializer = new DataContractSerializer(typeof(MatrixStorage<float>), KnownTypes);
|
|
var stream = new MemoryStream();
|
|
serializer.WriteObject(stream, expected);
|
|
stream.Position = 0;
|
|
|
|
var actual = (MatrixStorage<float>)serializer.ReadObject(stream);
|
|
|
|
Assert.That(actual.RowCount, Is.EqualTo(expected.RowCount));
|
|
Assert.That(actual.ColumnCount, Is.EqualTo(expected.ColumnCount));
|
|
Assert.That(actual, Is.TypeOf(typeof(DenseColumnMajorMatrixStorage<float>)));
|
|
Assert.That(actual, Is.EqualTo(expected));
|
|
Assert.That(actual, Is.Not.SameAs(expected));
|
|
}
|
|
|
|
[Test]
|
|
public void DenseColumnMajorMatrixStorageOfComplex64DataContractSerializationTest()
|
|
{
|
|
var expectedMatrix = Matrix<Complex64>
|
|
.Build
|
|
.Dense(2, 2, new[] { new Complex64(1.0, -1.0), 2.0, 0.0, 3.0 });
|
|
MatrixStorage<Complex64> expected = expectedMatrix.Storage;
|
|
|
|
var serializer = new DataContractSerializer(typeof(MatrixStorage<Complex64>), KnownTypes);
|
|
var stream = new MemoryStream();
|
|
serializer.WriteObject(stream, expected);
|
|
stream.Position = 0;
|
|
|
|
var actual = (MatrixStorage<Complex64>)serializer.ReadObject(stream);
|
|
var actualMatrix = Matrix<Complex64>
|
|
.Build
|
|
.Dense(actual as DenseColumnMajorMatrixStorage<Complex64>);
|
|
|
|
Assert.That(actual.RowCount, Is.EqualTo(expected.RowCount));
|
|
Assert.That(actual.ColumnCount, Is.EqualTo(expected.ColumnCount));
|
|
Assert.That(actual, Is.TypeOf(typeof(DenseColumnMajorMatrixStorage<Complex64>)));
|
|
Assert.That(actualMatrix, Is.EqualTo(expectedMatrix));
|
|
Assert.That(actualMatrix, Is.Not.SameAs(expectedMatrix));
|
|
}
|
|
|
|
[Test]
|
|
public void DenseColumnMajorMatrixStorageOfComplex32DataContractSerializationTest()
|
|
{
|
|
MatrixStorage<Numerics.Complex32> expected = Matrix<Numerics.Complex32>.Build.Dense(2, 2, new[] { new Numerics.Complex32(1.0f, -1.0f), 2.0f, 0.0f, 3.0f }).Storage;
|
|
|
|
var serializer = new DataContractSerializer(typeof(MatrixStorage<Numerics.Complex32>), KnownTypes);
|
|
var stream = new MemoryStream();
|
|
serializer.WriteObject(stream, expected);
|
|
stream.Position = 0;
|
|
|
|
var actual = (MatrixStorage<Numerics.Complex32>)serializer.ReadObject(stream);
|
|
|
|
Assert.That(actual.RowCount, Is.EqualTo(expected.RowCount));
|
|
Assert.That(actual.ColumnCount, Is.EqualTo(expected.ColumnCount));
|
|
Assert.That(actual, Is.TypeOf(typeof(DenseColumnMajorMatrixStorage<Numerics.Complex32>)));
|
|
Assert.That(actual, Is.EqualTo(expected));
|
|
Assert.That(actual, Is.Not.SameAs(expected));
|
|
}
|
|
|
|
[Test]
|
|
public void SparseCompressedRowMatrixStorageOfDoubleDataContractSerializationTest()
|
|
{
|
|
MatrixStorage<double> expected = Matrix<double>.Build.SparseOfArray(new[,] { {1.0d, 2.0d}, {0.0d, 3.0d} }).Storage;
|
|
|
|
var serializer = new DataContractSerializer(typeof(MatrixStorage<double>), KnownTypes);
|
|
var stream = new MemoryStream();
|
|
serializer.WriteObject(stream, expected);
|
|
stream.Position = 0;
|
|
|
|
var actual = (MatrixStorage<double>)serializer.ReadObject(stream);
|
|
|
|
Assert.That(actual.RowCount, Is.EqualTo(expected.RowCount));
|
|
Assert.That(actual.ColumnCount, Is.EqualTo(expected.ColumnCount));
|
|
Assert.That(actual, Is.TypeOf(typeof(SparseCompressedRowMatrixStorage<double>)));
|
|
Assert.That(actual, Is.EqualTo(expected));
|
|
Assert.That(actual, Is.Not.SameAs(expected));
|
|
}
|
|
|
|
[Test]
|
|
public void DiagonalMatrixStorageOfDoubleDataContractSerializationTest()
|
|
{
|
|
MatrixStorage<double> expected = Matrix<double>.Build.Diagonal(new[] { 1.0d, 2.0d, 0.0d, 3.0d }).Storage;
|
|
|
|
var serializer = new DataContractSerializer(typeof(MatrixStorage<double>), KnownTypes);
|
|
var stream = new MemoryStream();
|
|
serializer.WriteObject(stream, expected);
|
|
stream.Position = 0;
|
|
|
|
var actual = (MatrixStorage<double>)serializer.ReadObject(stream);
|
|
|
|
Assert.That(actual.RowCount, Is.EqualTo(expected.RowCount));
|
|
Assert.That(actual.ColumnCount, Is.EqualTo(expected.ColumnCount));
|
|
Assert.That(actual, Is.TypeOf(typeof(DiagonalMatrixStorage<double>)));
|
|
Assert.That(actual, Is.EqualTo(expected));
|
|
Assert.That(actual, Is.Not.SameAs(expected));
|
|
}
|
|
}
|
|
}
|
|
|