diff --git a/src/UnitTests/ComplexTests/ComplexTest.cs b/src/UnitTests/ComplexTests/ComplexTest.cs index e563dc64..108cb1bf 100644 --- a/src/UnitTests/ComplexTests/ComplexTest.cs +++ b/src/UnitTests/ComplexTests/ComplexTest.cs @@ -58,7 +58,7 @@ namespace MathNet.Numerics.UnitTests.ComplexTests { var value = new Complex(real, imag); var expected = new Complex(expectedReal, expectedImag); - AssertHelpers.AlmostEqualRelative(expected, value.Exp(), 15); + AssertHelpers.AlmostEqualRelative(expected, value.Exp(), 14); } /// diff --git a/src/UnitTests/LinearAlgebraTests/MatrixStorageSerializationTests.cs b/src/UnitTests/LinearAlgebraTests/MatrixStorageSerializationTests.cs index cbe80a2b..b02023c6 100644 --- a/src/UnitTests/LinearAlgebraTests/MatrixStorageSerializationTests.cs +++ b/src/UnitTests/LinearAlgebraTests/MatrixStorageSerializationTests.cs @@ -91,6 +91,7 @@ namespace MathNet.Numerics.UnitTests.LinearAlgebraTests Assert.That(actual, Is.Not.SameAs(expected)); } +#if !NETCOREAPP1_1 [Test] public void DenseColumnMajorMatrixStorageOfComplex64DataContractSerializationTest() { @@ -115,6 +116,7 @@ namespace MathNet.Numerics.UnitTests.LinearAlgebraTests Assert.That(actualMatrix, Is.EqualTo(expectedMatrix)); Assert.That(actualMatrix, Is.Not.SameAs(expectedMatrix)); } +#endif [Test] public void DenseColumnMajorMatrixStorageOfComplex32DataContractSerializationTest() diff --git a/src/UnitTests/LinearAlgebraTests/VectorStorageSerializationTests.cs b/src/UnitTests/LinearAlgebraTests/VectorStorageSerializationTests.cs index 0ec9df4c..89105403 100644 --- a/src/UnitTests/LinearAlgebraTests/VectorStorageSerializationTests.cs +++ b/src/UnitTests/LinearAlgebraTests/VectorStorageSerializationTests.cs @@ -89,6 +89,7 @@ namespace MathNet.Numerics.UnitTests.LinearAlgebraTests Assert.That(actual, Is.Not.SameAs(expected)); } +#if !NETCOREAPP1_1 [Test] public void DenseVectorStorageOfComplex64DataContractSerializationTest() { @@ -106,6 +107,7 @@ namespace MathNet.Numerics.UnitTests.LinearAlgebraTests Assert.That(actual, Is.EqualTo(expected)); Assert.That(actual, Is.Not.SameAs(expected)); } +#endif [Test] public void DenseVectorStorageOfComplex32DataContractSerializationTest()