Deuces.DotNet 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Deuces.DotNet --version 1.0.1
NuGet\Install-Package Deuces.DotNet -Version 1.0.1
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="Deuces.DotNet" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Deuces.DotNet --version 1.0.1
#r "nuget: Deuces.DotNet, 1.0.1"
#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 Deuces.DotNet as a Cake Addin
#addin nuget:?package=Deuces.DotNet&version=1.0.1

// Install Deuces.DotNet as a Cake Tool
#tool nuget:?package=Deuces.DotNet&version=1.0.1

Deuces.DotNet

A C# port of deuces poker evaluation library

[ 2 ❤ ] , [ 2 ♠ ]


Installation

This package is distributed via Nuget and can be downloaded via Nuget Packet Manager or running dotnet add package Deuces.DotNet


Usage

Deces.DotNet is ported to C# so that it can be used the same as with python with a C# naming conventions:

using Deuces;

int card = Card.New("Qh");

int[] board = {
    Card.New("Ah"),
    Card.New("Kd"),
    Card.New("Jc"),
};
int[] hand =
{
    Card.New("Qs"),
    Card.New("Th")
};

Console.WriteLine(Card.IntsToPrettyStr(hand));
// [ Q ♠ ],[ T ♥ ]
var deck = new Deck();
var board = deck.Draw(5);
var hand = deck.Draw(2);

var evaluator = new Evaluator();
var rank = evaluator.Evaluate(hand, board);
Console.WriteLine(rank);
// 6330

Console.WriteLine(Card.IntsToPrettyStr(board));
// [ 4 ♣ ] , [ A ♠ ] , [ 5 ♦ ] , [ K ♣ ] , [ 2 ♠ ]
Console.WriteLine(Card.IntsToPrettyStr(hand));
// [ 6 ♣ ] , [ 7 ❤ ] 

var rankClass = evaluator.GetRankClass(rank);
var classString = evaluator.ClassToString(rankClass);

Console.WriteLine(rankClass);
// 9
Console.WriteLine(classString);
// High Card

Performance

Performance of Deuces.DotNet is measured with BenchmarkDotNet.


BenchmarkDotNet=v0.13.5, OS=Windows 11 (10.0.22621.1265/22H2/2022Update/SunValley2)
AMD Ryzen 9 3900X, 1 CPU, 24 logical and 12 physical cores
.NET SDK=7.0.200
  [Host] : .NET 7.0.3 (7.0.323.6910), X64 RyuJIT AVX2

Job=MediumRun  Toolchain=InProcessNoEmitToolchain  IterationCount=15  
LaunchCount=2  WarmupCount=10  

Method Mean Error StdDev
EvaluateFiveFlush 65.66 ns 0.822 ns 1.230 ns
EvaluateFiveNonFlush 53.63 ns 0.841 ns 1.206 ns
EvaluateSixFlush 265.68 ns 3.530 ns 4.832 ns
EvaluateSixNonFlush 262.61 ns 5.639 ns 8.441 ns
EvaluateSevenFlush 1,106.48 ns 9.437 ns 14.125 ns
EvaluateSevenNonFlush 1,077.44 ns 7.904 ns 11.080 ns


To compare against python implementation, here's the performance with Deuces:

Trey performace


As a conclusion: | Method | Avg | Evaluations per second | |---------------------- |------------:|--------------------------:| | Deuces 5 | 1 000 ns | 909 137 | | Deuces.DotNet 5 | 60 ns | 16 765 864 | | Deuces 6 | 5 000 ns | 185 185 | | Deuces.DotNet 6 | 264 ns | 3 785 799 | | Deuces 7 | 18 000 ns | 56 179 | | Deuces.DotNet 7 | 1 077 ns | 915 784 |

Creating a LookUp table taks about 0.0002883 Seconds


License

MIT License

Copyright (c) 2023 NutCr4cker12

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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.
  • net7.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.3 168 5/25/2023
1.0.2 135 4/28/2023
1.0.1 144 4/26/2023
1.0.0 168 4/25/2023