Skip to content

[FEATURE] Add a probe function for our transposition table #70

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
DeveloperPaul123 opened this issue Mar 25, 2025 · 0 comments · Fixed by #84
Closed

[FEATURE] Add a probe function for our transposition table #70

DeveloperPaul123 opened this issue Mar 25, 2025 · 0 comments · Fixed by #84
Assignees
Labels
feature:dev Feature for developers
Milestone

Comments

@DeveloperPaul123
Copy link
Owner

Search is going to get really complicated - would be nice to move the tt entry search code to the ttable itself and create a new probe function that returns a ProbeResult enum:

enum ProbeResult {
  CuttOff,
  Hit,
  Empty
};

fn probe(&self, depth: i16, key: u64) -> ProbeResult {
}
@DeveloperPaul123 DeveloperPaul123 added the feature:dev Feature for developers label Mar 25, 2025
@DeveloperPaul123 DeveloperPaul123 added this to the v2.0.0 milestone Mar 25, 2025
@DeveloperPaul123 DeveloperPaul123 self-assigned this Mar 25, 2025
@DeveloperPaul123 DeveloperPaul123 modified the milestones: v2.0.0, v3.0.0 Mar 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature:dev Feature for developers
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant