2cf9048b3ad830261d6d1938025b96565f492953
1 import GoRules
from "/variants/Go/class.js";
2 import Move
from "/utils/Move.js";
3 import PiPo
from "/utils/PiPo.js";
4 import {ArrayFun
} from "/utils/array.js";
6 export default class AtarigoRules
extends GoRules
{
9 let input
= GoRules
.Options
.input
;
11 return {input: input
};
14 getCurrentScore(move_s
) {
15 if (move_s
[0].vanish
.length
> 0)
16 return (this.turn
== 'w' ? "0-1" : "1-0");