Package sudoku
Class TableOffer
- java.lang.Object
-
- sudoku.TableOffer
-
public class TableOffer extends Object
-
-
Field Summary
Fields Modifier and Type Field Description int
_digit
Value of a digit offered by a Player.boolean[]
_weightFlags
Flags indicating whether _weights value for the _digit is known for a specific Player.float[]
_weights
Weights of the _digit given by different Players.
-
Constructor Summary
Constructors Constructor Description TableOffer(int digit)
-
-
-
Field Detail
-
_digit
public int _digit
Value of a digit offered by a Player.
-
_weights
public final float[] _weights
Weights of the _digit given by different Players. Valid only when _weightFlags is true.
-
_weightFlags
public final boolean[] _weightFlags
Flags indicating whether _weights value for the _digit is known for a specific Player.
-
-