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.
<PackageVersion Include="deiruch.SATInterface" Version="4.8.4" />
                    
Directory.Packages.props
<PackageReference Include="deiruch.SATInterface" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version 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.
#addin nuget:?package=deiruch.SATInterface&version=4.8.4
                    
Install as a Cake Addin
#tool nuget:?package=deiruch.SATInterface&version=4.8.4
                    
Install as a Cake Tool

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 312 2/23/2024
5.1.3 305 2/3/2024
5.1.2 389 1/14/2024
5.1.1 363 1/12/2024
5.1.0 449 11/21/2023
4.13.0 516 7/18/2023
4.12.0 413 7/14/2023
4.11.0 412 7/13/2023
4.10.0 445 7/3/2023
4.9.0 527 3/4/2023
4.8.4 648 11/18/2022
4.8.3 731 6/29/2022
4.8.2 721 6/23/2022
4.8.1 708 6/1/2022
4.8.0 749 5/25/2022
4.7.2 722 5/18/2022
4.7.1 721 5/18/2022
4.7.0 741 5/13/2022
4.6.0 753 5/9/2022
4.5.0 783 5/1/2022
4.4.0 778 3/24/2022
4.3.1 745 3/6/2022
4.3.0 759 3/6/2022
4.2.6 735 3/3/2022
4.2.5 787 3/3/2022
4.2.4 797 2/25/2022
4.2.3 733 2/20/2022
4.2.2 781 2/20/2022
4.2.1 749 2/20/2022
4.2.0 753 2/20/2022
4.1.0 609 12/8/2021
4.0.1 667 11/1/2021
4.0.0 746 6/11/2021
3.4.5 694 5/6/2021
3.4.4 749 2/22/2021
3.4.3 814 12/4/2020
3.4.2 795 12/4/2020
3.4.1 789 11/23/2020
3.4.0 846 8/20/2020
3.3.2 845 7/29/2020
3.3.1 893 6/14/2020
3.3.0 887 3/23/2020
3.2.2 948 3/6/2020
3.2.1 965 2/25/2020
3.2.0 933 2/21/2020
3.1.0 923 2/12/2020
3.0.0 915 2/4/2020
2.1.11 930 1/17/2020
2.1.10 911 1/14/2020
2.1.9 924 1/10/2020
2.1.8 896 1/9/2020
2.1.7 892 1/3/2020
2.1.6 1,013 12/30/2019
2.1.4 976 12/30/2019
2.1.3 967 12/30/2019
2.1.2 985 12/29/2019
2.1.1 1,002 12/29/2019
2.1.0 1,022 12/28/2019
2.0.5 903 12/25/2019
2.0.4 876 12/17/2019
2.0.3 843 12/6/2019
2.0.2 888 12/4/2019
1.4.3 2,031 3/15/2019
1.4.2 1,512 7/19/2018
1.4.1 1,484 6/11/2018
1.4.0 1,512 6/11/2018
1.3.9 1,548 5/28/2018
1.3.8 1,385 11/29/2017
1.3.7 1,391 11/29/2017
1.3.6 1,565 11/16/2017
1.3.5 1,576 10/23/2017
1.3.4 1,540 10/23/2017
1.3.2 1,550 10/23/2017
1.3.1 1,527 10/22/2017
1.3.0 1,560 10/22/2017
1.2.4 1,457 3/19/2017
1.2.3 1,468 3/19/2017
1.2.2 1,410 3/19/2017
1.2.1 1,381 3/19/2017
1.2.0 1,368 3/19/2017
1.1.2 1,462 1/7/2017
1.1.1 1,441 1/7/2017
1.1.0 1,443 1/7/2017
1.0.5 1,428 1/6/2017
1.0.4 1,425 1/3/2017
1.0.3 1,402 1/3/2017
1.0.2 1,419 1/3/2017
1.0.1 1,403 1/3/2017
1.0.0 1,403 1/3/2017