UNPKG

goban

Version:

[![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

7 lines (6 loc) 298 B
/** * This estimator simply marks territory for whichever color has a * closer stone (Manhattan distance). See discussion at * https://forums.online-go.com/t/weak-score-estimator-and-japanese-rules/41041/70 */ export declare function voronoi_estimate_ownership(board: number[][]): number[][];