|
121 | 121 | * Native Providers: All providers now support freeing resources without unloading the provider |
122 | 122 | * Native Providers: MKL provider sets consistency, precision and accuracy modes earlier to ensure they are applied |
123 | 123 | * Native Providers: If a provider has been loaded successfully, skip any future loading attempts (faster switching) |
124 | | -* Build: add .Net Framework 4.6.1 target (main package), switch to 4.6.1 for testing projects |
| 124 | +* Build: add .NET Framework 4.6.1 target (main package), switch to 4.6.1 for testing projects |
125 | 125 |
|
126 | 126 | ### 4.1.0 - 2018-02-19 |
127 | 127 | * Curve Fitting: Fit.Power, Fit.Exponential, Fit.Logarithm (similar to excel trend curves) |
128 | 128 |
|
129 | 129 | ### 4.0.0 - 2018-02-11 |
130 | | -* Explicit builds for .Net Framework 4.0 and higher and for .Net Standard 1.3 and 2.0 |
131 | | -* F#: explicit builds for .Net Framework 4.5 and higher and for .Net Standard 1.6 and 2.0 |
| 130 | +* Explicit builds for .NET Framework 4.0 and higher and for .Net Standard 1.3 and 2.0 |
| 131 | +* F#: explicit builds for .NET Framework 4.5 and higher and for .Net Standard 1.6 and 2.0 |
132 | 132 | * BREAKING: drop obsolete functionality (which has been marked as obsolete for a while) |
133 | | -* BREAKING: drop support for .Net 3.5 and PCL profiles |
134 | | -* BREAKING: F#: drop support for .Net 4.0 and PCL profiles |
| 133 | +* BREAKING: drop support for .NET 3.5 and PCL profiles |
| 134 | +* BREAKING: F#: drop support for .NET 4.0 and PCL profiles |
135 | 135 | * BREAKING: F#: depends on FSharp.Core 4.3.3 |
136 | 136 | * BREAKING: Native provider implementation types internal (but can be constructed explicitly) |
137 | 137 | * BREAKING: Native provider control API moved from Control to per-provider Control classes |
|
144 | 144 | * BUG: Trigonometry: Complex trigonometric functions behave better on large imput *~diluculo* |
145 | 145 | * BUG: Trigonometry: Fix imaginary part sign of complex hyperbolic cotangent |
146 | 146 | * Control.Describe: human readable summary of the effective Math.NET Numerics configuration |
147 | | -* Providers: Native Provider support in .Net Standard 2.0 (but not in 1.x). |
| 147 | +* Providers: Native Provider support in .NET Standard 2.0 (but not in 1.x). |
148 | 148 | * Linear Algebra: F# vector/matrix functions to accept all #seq instead of lists only |
149 | 149 | * Linear Algebra: Vector MapInplace implemented at storage level |
150 | 150 | * Curve Fitting: Fit.LineThroughOrigin shortcut |
|
163 | 163 | * Build: use latest SDKs and runtimes, cleanups |
164 | 164 |
|
165 | 165 | ### 4.0.0-beta06 - 2018-02-03 |
166 | | -* Rework conditional compilation to simplify and increase the .Net Standard api surface |
| 166 | +* Rework conditional compilation to simplify and increase the .NET Standard api surface |
167 | 167 | * BREAKING: Native provider implementation types internal (but can be constructed explicitly) |
168 | 168 | * BREAKING: Native provider control API moved from Control to per-provider Control classes |
169 | 169 | * Control.Describe: human readable summary of the effective Math.NET Numerics configuration |
|
192 | 192 |
|
193 | 193 | ### 4.0.0-beta01 - 2018-01-07 |
194 | 194 | * BREAKING: drop obsolete functionality (which has been marked as obsolete for a while) |
195 | | -* BREAKING: drop support for .Net 3.5 and PCL profiles |
196 | | -* BREAKING: F#: drop support for .Net 4.0 and PCL profiles |
| 195 | +* BREAKING: drop support for .NET 3.5 and PCL profiles |
| 196 | +* BREAKING: F#: drop support for .NET 4.0 and PCL profiles |
197 | 197 | * BREAKING: F#: depends on FSharp.Core 4.2.3 |
198 | | -* Explicit builds for .Net Framework 4.0 and higher and for .Net Standard 1.3 and 2.0 |
199 | | -* F#: explicit builds for .Net Framework 4.5 and higher and for .Net Standard 1.6 and 2.0 |
| 198 | +* Explicit builds for .NET Framework 4.0 and higher and for .Net Standard 1.3 and 2.0 |
| 199 | +* F#: explicit builds for .NET Framework 4.5 and higher and for .Net Standard 1.6 and 2.0 |
200 | 200 | * Assemblies are now code-signed with an X.509 certificate, using SHA2-256 hashes |
201 | 201 | * BUG: Ode Solver: fix typo in the Runge-Kutta solvers on time-step handling *~Ksero* |
202 | 202 | * BUG: fix Matrix.GetHashCode for wide matrices *~mjmckp* |
|
214 | 214 |
|
215 | 215 | ### 3.20.0 - 2017-07-15 |
216 | 216 | * Optimization: non-linear optimization algorithms *~Scott Stephens, Erik Ovegard, bdodson, et al.* |
217 | | -* Native Providers: from now on also supported in the .Net 3.5 build. |
| 217 | +* Native Providers: from now on also supported in the .NET 3.5 build. |
218 | 218 | * BUG: Special Functions: allow more iterations in BetaRegularized *~Elias Abou Jaoude* |
219 | 219 |
|
220 | 220 | ### 3.19.0 - 2017-04-29 |
|
403 | 403 | * BUG: MatrixNormal distribution: density computation switched row and column covariance *~Evelina Gabasova* |
404 | 404 |
|
405 | 405 | ### 3.2.1 - 2014-08-05 |
406 | | -* Package fix: make sure .Net 3.5-only dependencies are not installed on .Net 4 and newer. |
| 406 | +* Package fix: make sure .NET 3.5-only dependencies are not installed on .Net 4 and newer. |
407 | 407 |
|
408 | 408 | ### 3.2.0 - 2014-08-05 |
409 | 409 | * Linear Algebra: Vector.Map2 (map2 in F#), storage-optimized |
410 | 410 | * Linear Algebra: fix RemoveColumn/Row early index bound check (was not strict enough) |
411 | 411 | * Statistics: Entropy *~Jeff Mastry* |
412 | 412 | * Interpolation: use Array.BinarySearch instead of local implementation *~Candy Chiu* |
413 | 413 | * Resources: fix a corrupted exception message string |
414 | | -* Portable Build: support .Net 4.0 as well by using profile 328 instead of 344. |
415 | | -* .Net 3.5: F# extensions now support .Net 3.5 as well |
416 | | -* .Net 3.5: NuGet package now contains proper 3.5-only TPL package dependency; also in Zip package |
| 414 | +* Portable Build: support .NET 4.0 as well by using profile 328 instead of 344. |
| 415 | +* .NET 3.5: F# extensions now support .Net 3.5 as well |
| 416 | +* .NET 3.5: NuGet package now contains proper 3.5-only TPL package dependency; also in Zip package |
417 | 417 |
|
418 | 418 | ### 3.1.0 - 2014-07-20 |
419 | 419 | * Random: generate a sequence of integers within a range in one go |
|
610 | 610 | * Build: |
611 | 611 | * FAKE-based build (in addition to existing Visual Studio solutions) to clean, build, test, document and package independently of the CI server. |
612 | 612 | * Finally proper documentation using FSharp.Formatting with sources included in the repository so it is versioned and can be contributed to with pull requests. |
613 | | - * NuGet packages now also include the PCL portable profile 47 (.Net 4.5, Silverlight 5, Windows 8) in addition to the normal .Net 4.0 build and PCL profile 136 (.Net 4.0, WindowsPhone 8, Silverlight 5, Windows 8) as before. Profile 47 uses `System.Numerics` for complex numbers, among others, which is not available in profile 136. |
614 | | - * NuGet packages now also include a .Net 3.5 build of the core library. |
| 613 | + * NuGet packages now also include the PCL portable profile 47 (.NET 4.5, Silverlight 5, Windows 8) in addition to the normal .Net 4.0 build and PCL profile 136 (.Net 4.0, WindowsPhone 8, Silverlight 5, Windows 8) as before. Profile 47 uses `System.Numerics` for complex numbers, among others, which is not available in profile 136. |
| 614 | + * NuGet packages now also include a .NET 3.5 build of the core library. |
615 | 615 | * IO libraries have been removed, replaced with new `.Data` packages (see list on top). |
616 | 616 | * Alternative strong-named versions of more NuGet packages (mostly the F# extensions for now), with the `.Signed` suffix. |
617 | 617 | * Reworked solution structure so it works in both Visual Studio 11 (2012) and 12 (2013). |
|
627 | 627 | * Complex: routines to return all two square and three cubic roots of a complex number. |
628 | 628 | * Complex: More robust complex Asin/Acos for large real numbers. |
629 | 629 | * Evaluate: routine to evaluate complex polynomials, or real polynomials at a complex point. |
630 | | -* CommonParallel now also supported in .Net 3.5 and portable profiles; TaskScheduler can be replaced with custom implementation *~Thomas Ibel* |
| 630 | +* CommonParallel now also supported in .NET 3.5 and portable profiles; TaskScheduler can be replaced with custom implementation *~Thomas Ibel* |
631 | 631 | * F# BigRational type cleaned up and optimized *~Jack Pappas* |
632 | 632 | * F# BigRational IsZero, IsOne, IsInteger, create from fraction. |
633 | 633 | * F# BigRational Reciprocal, Power operator support (**), support for negative integer powers. |
|
691 | 691 | * Performance: reworked and tuned common parallelization. Some operations are up to 3 magnitudes faster in some extreme cases. Replaced copy loops with native routines. More algorithms are storage-aware (and should thus perform better especially on sparse data). *~Thomas Ibel, Iain McDonald, Marcus Cuda* |
692 | 692 | * Fixed range checks in the Thin-QR decomposition. *~Marcus Cuda* |
693 | 693 | * BUG: Fixed bug in Gram Schmidt for solving tall matrices. *~Marcus Cuda* |
694 | | - * Vectors now implement the BCL IList interfaces (fixed-length) for better integration with existing .Net code. *~Scott Stephens* |
| 694 | + * Vectors now implement the BCL IList interfaces (fixed-length) for better integration with existing .NET code. *~Scott Stephens* |
695 | 695 | * Matrix/Vector parsing has been updated to be able to parse the new visual format as well (see ToMatrixString). |
696 | 696 | * DebuggerDisplay attributes for matrices and vectors. |
697 | 697 | * Map/IndexedMap combinators with storage-aware and partially parallelized implementations for both dense and sparse data. |
|
718 | 718 | * F#: Better support for our Complex types (close to the F# PowerPack Complex type) *~Gustavo Guerra* |
719 | 719 |
|
720 | 720 | ### 2.3.0 - 2013-11-25 |
721 | | -* Portable Library: Adds support for WP8 (.Net 4.0 and higher, SL5, WP8 and .NET for Windows Store apps) |
722 | | -* Portable Library: New: portable build also for F# extensions (.Net 4.5, SL5 and .NET for Windows Store apps) |
| 721 | +* Portable Library: Adds support for WP8 (.NET 4.0 and higher, SL5, WP8 and .NET for Windows Store apps) |
| 722 | +* Portable Library: New: portable build also for F# extensions (.NET 4.5, SL5 and .NET for Windows Store apps) |
723 | 723 | * Portable Library: NuGet: portable builds are now included in the main packages, no more need for special portable packages |
724 | 724 | * Linear Algebra: Continued major storage rework, in this release focusing on vectors (previous release was on matrices) |
725 | 725 | * Linear Algebra: Thin QR decomposition (in addition to existing full QR) |
|
0 commit comments