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.
48 lines
2.5 KiB
48 lines
2.5 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFrameworks>net45;netstandard1.6;netstandard2.0</TargetFrameworks>
|
|
<AssemblyName>MathNet.Numerics.FSharp</AssemblyName>
|
|
<RootNamespace>MathNet.Numerics</RootNamespace>
|
|
<IsPackable>true</IsPackable>
|
|
<PackageId>MathNet.Numerics.FSharp$(PackageIdSuffix)</PackageId>
|
|
<VersionPrefix>4.13.0</VersionPrefix>
|
|
<VersionSuffix></VersionSuffix>
|
|
<Title>Math.NET Numerics for F#$(TitleSuffix)</Title>
|
|
<Description>F# Modules for Math.NET Numerics, the numerical foundation of the Math.NET project, aiming to provide methods and algorithms for numerical computations in science, engineering and every day use. Supports .Net Framework 4.5 or higher and .Net Standard 1.6 or higher, on Windows, Linux and Mac.$(DescriptionSuffix)</Description>
|
|
<PackageReleaseNotes>Linear Algebra: sparse solver native provider ~Jong Hyun Kim
|
|
Polynomial: fix handling of zero polynomials ~Jakub Bialogrodzki
|
|
AppSwitches support to disable native providers or their probing</PackageReleaseNotes>
|
|
<PackageTags>fsharp F# math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft</PackageTags>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
<NoWarn>2003</NoWarn>
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Numerics\Numerics.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="AssemblyInfo.fs" />
|
|
<Compile Include="Statistics.fs" />
|
|
<Compile Include="Random.fs" />
|
|
<Compile Include="Distributions.fs" />
|
|
<Compile Include="Generate.fs" />
|
|
<Compile Include="LinearAlgebra.Vector.fs" />
|
|
<Compile Include="LinearAlgebra.Matrix.fs" />
|
|
<Compile Include="Complex.fs" />
|
|
<Compile Include="BigIntegerExtensions.fs" />
|
|
<Compile Include="BigRational.fsi" />
|
|
<Compile Include="BigRational.fs" />
|
|
<Compile Include="Differentiate.fs" />
|
|
<Compile Include="Fit.fs" />
|
|
<Compile Include="FindRoots.fs" />
|
|
<Compile Include="RandomVariable.fs" />
|
|
<Compile Include="Quaternion.fs" />
|
|
<None Include="paket.references" />
|
|
</ItemGroup>
|
|
<Import Project="..\..\.paket\Paket.Restore.targets" />
|
|
</Project>
|
|
|