LpSolveDotNet 4.0.0
Requires NuGet 2.5 or higher.
dotnet add package LpSolveDotNet --version 4.0.0
NuGet\Install-Package LpSolveDotNet -Version 4.0.0
<PackageReference Include="LpSolveDotNet" Version="4.0.0" />
paket add LpSolveDotNet --version 4.0.0
#r "nuget: LpSolveDotNet, 4.0.0"
// Install LpSolveDotNet as a Cake Addin
#addin nuget:?package=LpSolveDotNet&version=4.0.0
// Install LpSolveDotNet as a Cake Tool
#tool nuget:?package=LpSolveDotNet&version=4.0.0
'LpSolveDotNet' allow running the Mixed Integer Linear Programming (MILP) solver 'lp_solve' in .NET.
That can solve pure linear, (mixed) integer/binary, semi-continuous and special ordered sets (SOS) models.
This package needs one of the 'LpSolveDotNet.Native.*' packages to run, you should reference them instead.
Another option would be to bring your own native library and allow 'LpSolveDotNet' to find it at runtime.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp1.0 netcoreapp1.1 netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard1.5 netstandard1.6 netstandard2.0 netstandard2.1 |
.NET Framework | net20 net35 net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen30 tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETCoreApp 3.0
- No dependencies.
-
.NETFramework 2.0
- No dependencies.
-
.NETFramework 4.7.1
- No dependencies.
-
.NETStandard 1.5
- NETStandard.Library (>= 1.6.1)
-
.NETStandard 2.0
- No dependencies.
NuGet packages (6)
Showing the top 5 NuGet packages that depend on LpSolveDotNet:
Package | Downloads |
---|---|
LpSolveDotNet.Native.win-x64
'LpSolveDotNet.Native.win-x64' and its dependency 'LpSolveDotNet' allow running the Mixed Integer Linear Programming (MILP) solver 'lp_solve' in .NET. That can solve pure linear, (mixed) integer/binary, semi-continuous and special ordered sets (SOS) models. This package specifically targets platform 'win-x64'. You can find other 'LpSolveDotNet.Native.*' packages to run on other platforms (you can target multiple platforms at the same time). Another option would be to bring your own native library and allow 'LpSolveDotNet' to find it at runtime. |
|
LpSolveDotNet.Native.linux-x64
'LpSolveDotNet.Native.linux-x64' and its dependency 'LpSolveDotNet' allow running the Mixed Integer Linear Programming (MILP) solver 'lp_solve' in .NET. That can solve pure linear, (mixed) integer/binary, semi-continuous and special ordered sets (SOS) models. This package specifically targets platform 'linux-x64'. You can find other 'LpSolveDotNet.Native.*' packages to run on other platforms (you can target multiple platforms at the same time). Another option would be to bring your own native library and allow 'LpSolveDotNet' to find it at runtime. |
|
LpSolveDotNet.Native.osx-x86
'LpSolveDotNet.Native.osx-x86' and its dependency 'LpSolveDotNet' allow running the Mixed Integer Linear Programming (MILP) solver 'lp_solve' in .NET. That can solve pure linear, (mixed) integer/binary, semi-continuous and special ordered sets (SOS) models. This package specifically targets platform 'osx-x86'. You can find other 'LpSolveDotNet.Native.*' packages to run on other platforms (you can target multiple platforms at the same time). Another option would be to bring your own native library and allow 'LpSolveDotNet' to find it at runtime. |
|
LpSolveMilpSolver
Basic implementation of MilpManager using LpSolve. |
|
LpSolveDotNet.Native.win-x86
'LpSolveDotNet.Native.win-x86' and its dependency 'LpSolveDotNet' allow running the Mixed Integer Linear Programming (MILP) solver 'lp_solve' in .NET. That can solve pure linear, (mixed) integer/binary, semi-continuous and special ordered sets (SOS) models. This package specifically targets platform 'win-x86'. You can find other 'LpSolveDotNet.Native.*' packages to run on other platforms (you can target multiple platforms at the same time). Another option would be to bring your own native library and allow 'LpSolveDotNet' to find it at runtime. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Complete release notes can be found at https://github.com/MarcelGosselin/LpSolveDotNet/blob/master/ReleaseNotes.md
This release contains:
- Support for .NET Core and more (.NET Standard 1.5 and 2.0).
- Issue #6: Add missing enum values to be equal to those in lpsolve's source code.
- Issue #4: Loading native library from wrong location when running with NUnit.
- Issue #1: Add API documentation for Intellisense.
- (Breaking changes) Fix all enum values to be equal to those in lpsolve's source code.
- (Breaking changes) The native libraries have been extracted to separate NuGet packages `LpSolveDotNet.Native.win-x64`, `LpSolveDotNet.Native.win-x86`, ...
- Add missing methods put_bb_nodefunc and put_bb_branchfunc.
See https://github.com/MarcelGosselin/LpSolveDotNet/blob/master/README.md for details.