|
Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
|
Cached adversarial-search entry stored in transposition tables. More...
#include <Negamax.H>
Public Types | |
| using | Move_Type = Move |
| using | Score_Type = Score |
Public Attributes | |
| Score | value = Score{} |
| Cached search value. | |
| size_t | depth = 0 |
| Remaining depth searched for this entry. | |
| TranspositionBound | bound = TranspositionBound::Exact |
| Bound classification. | |
| SearchPath< Move > | principal_variation |
| Best line known for this entry. | |
Cached adversarial-search entry stored in transposition tables.
| using Aleph::AdversarialTranspositionEntry< Move, Score >::Move_Type = Move |
| using Aleph::AdversarialTranspositionEntry< Move, Score >::Score_Type = Score |
| TranspositionBound Aleph::AdversarialTranspositionEntry< Move, Score >::bound = TranspositionBound::Exact |
Bound classification.
Definition at line 89 of file Negamax.H.
Referenced by Aleph::adversarial_search_detail::store_adversarial_transposition().
| size_t Aleph::AdversarialTranspositionEntry< Move, Score >::depth = 0 |
Remaining depth searched for this entry.
Definition at line 88 of file Negamax.H.
Referenced by Aleph::adversarial_search_detail::store_adversarial_transposition().
| SearchPath<Move> Aleph::AdversarialTranspositionEntry< Move, Score >::principal_variation |
Best line known for this entry.
Definition at line 90 of file Negamax.H.
Referenced by Aleph::adversarial_search_detail::store_adversarial_transposition().
| Score Aleph::AdversarialTranspositionEntry< Move, Score >::value = Score{} |
Cached search value.
Definition at line 87 of file Negamax.H.
Referenced by Aleph::adversarial_search_detail::store_adversarial_transposition().