Browse Source

Release v3.12.0

pull/416/head v3.12.0
Christoph Ruegg 10 years ago
parent
commit
bb3d75f4a3
  1. 8
      RELEASENOTES.md
  2. 6
      src/FSharp/AssemblyInfo.fs
  3. 6
      src/FSharpUnitTests/AssemblyInfo.fs
  4. 6
      src/Numerics/Properties/AssemblyInfo.cs
  5. 6
      src/UnitTests/Properties/AssemblyInfo.cs

8
RELEASENOTES.md

@ -1,3 +1,9 @@
### 3.12.0 - 2016-07-03
* ODE Solver: Runge-Kutta (order 2, 4) and Adams-Bashforth (order 1-4) algorithms *~Yoonku Hwang*
* Linear Algebra: faster multiplication of sparse with dense matrices *~Arthur*
* BUG: Integration: Gauss-Legendre on order 256 *~Sergey Kosukhin*
* BUG: Distributions: ChiSquared sampling was taking a square root where it should not *~Florian Wechsung*
### 3.11.1 - 2016-04-24
* BUG: Linear Algebra: sparse vector pointwise multiply/divide to itself
* BUG: Linear Algebra: Vector.ToVectorString if the first column is wider than maxWidth
@ -15,7 +21,7 @@
* Statistics: Min/Max Absolute, MagnitudePhase (complex).
* Statistics: FiveNumberSummary to use actual Median instead of R8 quantile.
* Linear Algebra: matrix Rank to use relative epsilon.
* Linera Algebra: extensions to convert between single/double precision, complex/real.
* Linear Algebra: extensions to convert between single/double precision, complex/real.
* Linear Algebra: Vector/Matrix storage DataContracts for ephemeral serialization.
* Regression: more helpful exceptions and messages.
* Random: 'Next' integer sampling no longer involves floating points, avoids one-off error in MersenneTwister.

6
src/FSharp/AssemblyInfo.fs

@ -44,9 +44,9 @@ open System.Runtime.InteropServices
[<assembly: AssemblyCulture("")>]
[<assembly: NeutralResourcesLanguage("en")>]
[<assembly: AssemblyVersion("3.11.1.0")>]
[<assembly: AssemblyFileVersion("3.11.1.0")>]
[<assembly: AssemblyInformationalVersion("3.11.1")>]
[<assembly: AssemblyVersion("3.12.0.0")>]
[<assembly: AssemblyFileVersion("3.12.0.0")>]
[<assembly: AssemblyInformationalVersion("3.12.0")>]
#if PORTABLE
#else

6
src/FSharpUnitTests/AssemblyInfo.fs

@ -10,9 +10,9 @@ open System.Runtime.InteropServices
[<assembly: AssemblyProduct("Math.NET Numerics")>]
[<assembly: AssemblyCopyright("Copyright (c) Math.NET Project")>]
[<assembly: AssemblyVersion("3.11.1.0")>]
[<assembly: AssemblyFileVersion("3.11.1.0")>]
[<assembly: AssemblyInformationalVersion("3.11.1")>]
[<assembly: AssemblyVersion("3.12.0.0")>]
[<assembly: AssemblyFileVersion("3.12.0.0")>]
[<assembly: AssemblyInformationalVersion("3.12.0")>]
#if PORTABLE
#else

6
src/Numerics/Properties/AssemblyInfo.cs

@ -45,9 +45,9 @@ using System.Runtime.InteropServices;
[assembly: CLSCompliant(true)]
[assembly: NeutralResourcesLanguage("en")]
[assembly: AssemblyVersion("3.11.1.0")]
[assembly: AssemblyFileVersion("3.11.1.0")]
[assembly: AssemblyInformationalVersion("3.11.1")]
[assembly: AssemblyVersion("3.12.0.0")]
[assembly: AssemblyFileVersion("3.12.0.0")]
[assembly: AssemblyInformationalVersion("3.12.0")]
#if PORTABLE

6
src/UnitTests/Properties/AssemblyInfo.cs

@ -9,8 +9,8 @@ using MathNet.Numerics.UnitTests;
[assembly: ComVisible(false)]
[assembly: Guid("04157581-63f3-447b-a277-83c6e69126a4")]
[assembly: AssemblyVersion("3.11.1.0")]
[assembly: AssemblyFileVersion("3.11.1.0")]
[assembly: AssemblyInformationalVersion("3.11.1")]
[assembly: AssemblyVersion("3.12.0.0")]
[assembly: AssemblyFileVersion("3.12.0.0")]
[assembly: AssemblyInformationalVersion("3.12.0")]
[assembly: UseLinearAlgebraProvider]

Loading…
Cancel
Save