deiruch.SATInterface 4.8.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package deiruch.SATInterface --version 4.8.4                
NuGet\Install-Package deiruch.SATInterface -Version 4.8.4                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="deiruch.SATInterface" Version="4.8.4" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add deiruch.SATInterface --version 4.8.4                
#r "nuget: deiruch.SATInterface, 4.8.4"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install deiruch.SATInterface as a Cake Addin
#addin nuget:?package=deiruch.SATInterface&version=4.8.4

// Install deiruch.SATInterface as a Cake Tool
#tool nuget:?package=deiruch.SATInterface&version=4.8.4                

License: MIT Build Status NuGet Package

SATInterface

SATInterface is a .NET library to formulate SAT problems

Installation

Add a reference to the NuGet Package deiruch.SATInterface.

Features

  • Maximize or minimize linear objective functions (3 strategies)
  • Enumerate all solutions
  • Supports linear combinations
  • Convenient .NET operator overloading
  • Simplify Boolean formulas
  • Translate Boolean formulas to CNF
  • Includes algorithms for
    • Counting (Totalizer)
    • At-most-one-constraints (7 implementations)
    • Exactly-one-constraints (9 implementations)
    • Exactly-k-constraints (4 implementations)
    • Unsigned integer arithmetic (Addition, Subtraction, Multiplication, Shifting)
  • Export to DIMACS files
  • Includes Kissat (https://github.com/arminbiere/kissat), CaDiCaL (https://github.com/arminbiere/cadical) and CryptoMiniSAT (see https://github.com/msoos/cryptominisat)

Usage example: Sudoku

using System;
using System.Linq;
using SATInterface;

using var m = new Model();
m.Configuration.Solver = InternalSolver.CaDiCaL;
m.Configuration.Verbosity = 2;

var v = m.AddVars(9, 9, 9);

//fix the first number to 1
v[0, 0, 0] = true;

//here's alternative way to set the second number
m.AddConstr(v[1, 0, 1]);

//assign one number to each cell
for (var y = 0; y < 9; y++)
    for (var x = 0; x < 9; x++)
        m.AddConstr(m.Sum(Enumerable.Range(0, 9).Select(n => v[x, y, n])) == 1);

//each number occurs once per row (alternative formulation)
for (var y = 0; y < 9; y++)
    for (var n = 0; n < 9; n++)
        m.AddConstr(m.ExactlyOneOf(Enumerable.Range(0, 9).Select(x => v[x, y, n])));

//each number occurs once per column (configured formulation)
for (var x = 0; x < 9; x++)
    for (var n = 0; n < 9; n++)
        m.AddConstr(m.ExactlyOneOf(Enumerable.Range(0, 9).Select(y => v[x, y, n]), Model.ExactlyOneOfMethod.PairwiseTree));

//each number occurs once per 3x3 block
for (var n = 0; n < 9; n++)
    for (var y = 0; y < 9; y += 3)
        for (var x = 0; x < 9; x += 3)
            m.AddConstr(m.Sum(
                v[x + 0, y + 0, n], v[x + 1, y + 0, n], v[x + 2, y + 0, n],
                v[x + 0, y + 1, n], v[x + 1, y + 1, n], v[x + 2, y + 1, n],
                v[x + 0, y + 2, n], v[x + 1, y + 2, n], v[x + 2, y + 2, n]) == 1);

m.Solve();

if (m.State == State.Satisfiable)
    for (var y = 0; y < 9; y++)
    {
        for (var x = 0; x < 9; x++)
            for (var n = 0; n < 9; n++)
                if (v[x, y, n].X)
                    Console.Write($" {n + 1}");
        Console.WriteLine();
    }
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.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
5.1.4 262 2/23/2024
5.1.3 281 2/3/2024
5.1.2 355 1/14/2024
5.1.1 335 1/12/2024
5.1.0 436 11/21/2023
4.13.0 485 7/18/2023
4.12.0 381 7/14/2023
4.11.0 385 7/13/2023
4.10.0 415 7/3/2023
4.9.0 493 3/4/2023
4.8.4 611 11/18/2022
4.8.3 689 6/29/2022
4.8.2 669 6/23/2022
4.8.1 663 6/1/2022
4.8.0 702 5/25/2022
4.7.2 676 5/18/2022
4.7.1 674 5/18/2022
4.7.0 694 5/13/2022
4.6.0 703 5/9/2022
4.5.0 717 5/1/2022
4.4.0 728 3/24/2022
4.3.1 696 3/6/2022
4.3.0 708 3/6/2022
4.2.6 684 3/3/2022
4.2.5 731 3/3/2022
4.2.4 746 2/25/2022
4.2.3 680 2/20/2022
4.2.2 730 2/20/2022
4.2.1 698 2/20/2022
4.2.0 702 2/20/2022
4.1.0 556 12/8/2021
4.0.1 606 11/1/2021
4.0.0 682 6/11/2021
3.4.5 636 5/6/2021
3.4.4 681 2/22/2021
3.4.3 747 12/4/2020
3.4.2 730 12/4/2020
3.4.1 719 11/23/2020
3.4.0 780 8/20/2020
3.3.2 778 7/29/2020
3.3.1 828 6/14/2020
3.3.0 813 3/23/2020
3.2.2 875 3/6/2020
3.2.1 893 2/25/2020
3.2.0 857 2/21/2020
3.1.0 852 2/12/2020
3.0.0 843 2/4/2020
2.1.11 852 1/17/2020
2.1.10 836 1/14/2020
2.1.9 853 1/10/2020
2.1.8 824 1/9/2020
2.1.7 820 1/3/2020
2.1.6 941 12/30/2019
2.1.4 906 12/30/2019
2.1.3 895 12/30/2019
2.1.2 911 12/29/2019
2.1.1 930 12/29/2019
2.1.0 948 12/28/2019
2.0.5 829 12/25/2019
2.0.4 800 12/17/2019
2.0.3 771 12/6/2019
2.0.2 813 12/4/2019
1.4.3 1,467 3/15/2019
1.4.2 1,277 7/19/2018
1.4.1 1,246 6/11/2018
1.4.0 1,262 6/11/2018
1.3.9 1,308 5/28/2018
1.3.8 1,217 11/29/2017
1.3.7 1,223 11/29/2017
1.3.6 1,392 11/16/2017
1.3.5 1,405 10/23/2017
1.3.4 1,365 10/23/2017
1.3.2 1,378 10/23/2017
1.3.1 1,357 10/22/2017
1.3.0 1,388 10/22/2017
1.2.4 1,287 3/19/2017
1.2.3 1,294 3/19/2017
1.2.2 1,238 3/19/2017
1.2.1 1,208 3/19/2017
1.2.0 1,196 3/19/2017
1.1.2 1,286 1/7/2017
1.1.1 1,269 1/7/2017
1.1.0 1,271 1/7/2017
1.0.5 1,253 1/6/2017
1.0.4 1,254 1/3/2017
1.0.3 1,229 1/3/2017
1.0.2 1,246 1/3/2017
1.0.1 1,228 1/3/2017
1.0.0 1,227 1/3/2017