Hint.fromCStruct constructor

Hint.fromCStruct(
  1. Hint cHint
)

initialize from C struct

Implementation

Hint.fromCStruct(final bindings.Hint cHint)
  : depth = cHint.depth,
    selectivity = cHint.selectivity,
    move = cHint.move,
    score = cHint.score,
    upper = cHint.upper,
    lower = cHint.lower,
    isBookMove = cHint.book_move;