Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Class: PuzzleSolvers.IndirectSumConstraint

Summary

Describes a constraint in which a specific region of cells must sum up to the value in another cell. In a variant Sudoku, this is often represented as an arrow coming out of a circle, and hence, the variant is known as “Arrow Sudoku”.

Constructors

IndirectSumConstraint(int sumCell, IEnumerable<int> region)
Describes a constraint in which a specific region of cells must sum up to the value in another cell. In a variant Sudoku, this is often represented as an arrow coming out of a circle, and hence, the variant is known as “Arrow Sudoku”.

Instance methods

ConstraintResultRefer to the documentation for Constraint.Process.

Instance properties

boolRefer to the documentation for Constraint.CanReevaluate.
int[]The set of cells that must sum up to the value in IndirectSumConstraint.SumCell.
intThe cell that must contain the desired sum.