Skip to content

Commit

Permalink
Add missing commit
Browse files Browse the repository at this point in the history
  • Loading branch information
anoek committed Jun 3, 2024
1 parent 7e776c4 commit 2dab8fc
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/GoEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2800,8 +2800,16 @@ export class GoEngine extends EventEmitter<Events> {
trials: number,
tolerance: number,
prefer_remote: boolean = false,
autoscore: boolean = false,
): ScoreEstimator {
const se = new ScoreEstimator(this.goban_callback, this, trials, tolerance, prefer_remote);
const se = new ScoreEstimator(
this.goban_callback,
this,
trials,
tolerance,
prefer_remote,
autoscore,
);
return se.score();
}
public getMoveByLocation(x: number, y: number): MoveTree | null {
Expand Down

0 comments on commit 2dab8fc

Please sign in to comment.