HEAL.SCS
1.0.2
dotnet add package HEAL.SCS --version 1.0.2
NuGet\Install-Package HEAL.SCS -Version 1.0.2
<PackageReference Include="HEAL.SCS" Version="1.0.2" />
paket add HEAL.SCS --version 1.0.2
#r "nuget: HEAL.SCS, 1.0.2"
// Install HEAL.SCS as a Cake Addin #addin nuget:?package=HEAL.SCS&version=1.0.2 // Install HEAL.SCS as a Cake Tool #tool nuget:?package=HEAL.SCS&version=1.0.2
HEAL.SCS
Provides a .NET wrapper for SCS.
SCS (splitting conic solver) is a numerical optimization package for solving large-scale convex cone problems. This package includes windows binaries of SCS version 3.0.0.
The full documentation for SCS is available at https://www.cvxgrp.org/scs/.
Building
git clone https://github.com/heal-research/HEAL.SCS
cd HEAL.SCS
dotnet build
Running
Demo:
cd Demo
dotnet run
Unit tests:
dotnet test
Usage example
var settings = new ScsSettings();
SCSWrapper.SetDefaultSettings(settings);
// example from https://www.cvxgrp.org/scs/examples/r.html
// maximize x + y
// subject to sqrt(x² + y²) <= sqrt(2)
// x,y >= 0
var A = new double[,] {
{-1.0, 0.0 }, // x >= 0
{ 0.0, -1.0 }, // y >= 0
{ 0.0, 0.0 },
{-1.0, 0.0 },
{ 0.0, -1.0 }
};
var data = new ScsData() {
A = Util.DenseToSparse(A),
b = new double[] { 0.0, 0.0, Math.Sqrt(2), 0.0, 0.0 },
c = new double[] { -1, -1 },
m = 5,
n = 2,
};
var cone = new ScsCone() {
l = 2,
qsize = 1,
q = new int[] { 3 },
};
if (0 <= SCSWrapper.Scs(data, cone, settings, out var solution, out var info)) {
Console.WriteLine(info);
Console.WriteLine($"x = {string.Join(", ", solution.x)}");
Console.WriteLine($"y = {string.Join(", ", solution.y)}");
Console.WriteLine($"s = {string.Join(", ", solution.s)}");
}
Building SCS
Clone SCS from github and build it. I used MSYS2 on Windows to build the binaries.
git clone https://github.com/cvxgrp/scs
cd scs
make
The native scs library can be found in the out/
folder. Copy libscsdir.dll
and all other native dll files to HEAL.SCS.win-x64
.
Helping out
We are open to pull-requests.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.2 | 481 | 6/20/2022 |
1.0.2-pre5 | 347 | 5/13/2022 |
1.0.1 | 269 | 12/29/2021 |
1.0.0 | 236 | 12/29/2021 |