|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>net6.0;netstandard2.0</TargetFrameworks> |
| 4 | + <TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks> |
5 | 5 | <GeneratePackageOnBuild>False</GeneratePackageOnBuild> |
6 | | - <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 6 | + <GenerateDocumentationFile>True</GenerateDocumentationFile> |
7 | 7 | <PackageId>CSparse</PackageId> |
8 | 8 | <Summary>A concise library for solving sparse linear systems with direct methods.</Summary> |
9 | 9 | <Description>CSparse.NET provides numerical methods for sparse LU, Cholesky and QR decomposition of real and complex linear systems.</Description> |
10 | 10 | <Product>CSparse.NET</Product> |
11 | 11 | <Company /> |
12 | | - <Copyright>Copyright Christian Woltering © 2012-2022</Copyright> |
| 12 | + <Copyright>Copyright Christian Woltering © 2012-2023</Copyright> |
13 | 13 | <Authors>Christian Woltering</Authors> |
14 | | - <AssemblyVersion>3.7.0.0</AssemblyVersion> |
15 | | - <FileVersion>3.7.0.0</FileVersion> |
| 14 | + <AssemblyVersion>3.8.1.0</AssemblyVersion> |
| 15 | + <FileVersion>3.8.1.0</FileVersion> |
16 | 16 | <PackageTags>math sparse matrix lu cholesky qr decomposition factorization </PackageTags> |
17 | | - <Version>3.7.0</Version> |
| 17 | + <Version>3.8.1</Version> |
18 | 18 | <AssemblyName>CSparse</AssemblyName> |
19 | 19 | <RootNamespace>CSparse</RootNamespace> |
20 | 20 | <PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression> |
21 | 21 | <PackageProjectUrl>https://github.com/wo80/CSparse.NET</PackageProjectUrl> |
22 | 22 | <RepositoryUrl>https://github.com/wo80/CSparse.NET</RepositoryUrl> |
23 | 23 | <RepositoryType>git</RepositoryType> |
24 | | - <PackageReleaseNotes>Add sparse matrix OfDiagonals static method (similar to MATLAB spdiags). |
25 | | -</PackageReleaseNotes> |
| 24 | + <PackageReleaseNotes> |
| 25 | +Changes in version 3.8.1: |
| 26 | + |
| 27 | +* Add overloads for permutation Invert() and IsValid() methods taking the permutation length as argument. |
| 28 | + |
| 29 | +Changes in version 3.8.0: |
| 30 | + |
| 31 | +* Add overloads for the factorization Solve() methods taking Span<T> as argument. Note that this introduces a dependency on System.Memory for the netstandard2.0 assembly. |
| 32 | + </PackageReleaseNotes> |
26 | 33 | </PropertyGroup> |
27 | 34 |
|
28 | 35 | <ItemGroup> |
29 | | - <PackageReference Include="System.Memory" Version="4.5.5" Condition="'$(TargetFramework)' == 'netstandard2.0'"/> |
| 36 | + <PackageReference Include="System.Memory" Version="4.5.5" Condition="'$(TargetFramework)' == 'netstandard2.0'"/> |
30 | 37 | </ItemGroup> |
31 | 38 |
|
32 | 39 | <ItemGroup> |
|
0 commit comments