LpSolveDotNet 2.0.0
See the version list below for details.
Requires NuGet 2.5 or higher.
dotnet add package LpSolveDotNet --version 2.0.0
NuGet\Install-Package LpSolveDotNet -Version 2.0.0
<PackageReference Include="LpSolveDotNet" Version="2.0.0" />
paket add LpSolveDotNet --version 2.0.0
#r "nuget: LpSolveDotNet, 2.0.0"
// Install LpSolveDotNet as a Cake Addin #addin nuget:?package=LpSolveDotNet&version=2.0.0 // Install LpSolveDotNet as a Cake Tool #tool nuget:?package=LpSolveDotNet&version=2.0.0
.NET wrapper for both 32-bit and 64-bit applications of lp_solve.
Mixed Integer Linear Programming (MILP) solver lp_solve solves pure linear, (mixed) integer/binary, semi-cont and special ordered sets (SOS) models.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net20 is compatible. net35 was computed. net40 was computed. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has 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.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. |
|
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. |
GitHub repositories
This package is not used by any popular GitHub repositories.
- LpSolve is now a class with instance methods instead of just a static class. It still has static factory methods to create the LP.
- Use right enum types to pass to methods.
- Use IntPtr in a few more places that were forgotten.
- Removed methods that according to lpsolve API docs were either internal or non-functioning. http://lpsolve.sourceforge.net/5.5/
- Do not build with "unsafe" mode anymore.