Update copyright info
This commit is contained in:
parent
201c511d83
commit
892f9152cf
|
@ -0,0 +1,18 @@
|
||||||
|
# List of authors for Sanmill, as of December 14, 2020
|
||||||
|
|
||||||
|
# Founders of the Sanmill project
|
||||||
|
Calcitem (calcitem)
|
||||||
|
|
||||||
|
# Additionally, Sanmill is derived from Stockfish, NineChess and ChessRoad.
|
||||||
|
|
||||||
|
# Authors of Stockfish
|
||||||
|
Tord Romstad (romstad)
|
||||||
|
Marco Costalba (mcostalba)
|
||||||
|
Joona Kiiski (zamar)
|
||||||
|
Gary Linscott (glinscott)
|
||||||
|
|
||||||
|
# Authors of NineChess
|
||||||
|
Liu Wei (liuweilhy)
|
||||||
|
|
||||||
|
# Authors of ChessRoad
|
||||||
|
He Zhaoyun (hezhaoyun)
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/*
|
||||||
|
This file is part of Sanmill.
|
||||||
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef HASH_NODE_H_
|
#ifndef HASH_NODE_H_
|
||||||
#define HASH_NODE_H_
|
#define HASH_NODE_H_
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
# Sanmill, a UCI Mill Game playing engine derived from Stockfish
|
# This file is part of Sanmill.
|
||||||
# Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
# Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
# Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad (Stockfish author)
|
|
||||||
# Copyright (C) 2015-2019 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad (Stockfish author)
|
|
||||||
# Copyright (C) 2020 Calcitem <calcitem@outlook.com>
|
|
||||||
#
|
#
|
||||||
# Sanmill is free software: you can redistribute it and/or modify
|
# Sanmill is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a UCI Mill Game playing engine derived from Stockfish
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2020 Calcitem <calcitem@outlook.com>
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2020 Calcitem <calcitem@outlook.com>
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/*
|
||||||
|
This file is part of Sanmill.
|
||||||
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef HASH_MAP_H_
|
#ifndef HASH_MAP_H_
|
||||||
#define HASH_MAP_H_
|
#define HASH_MAP_H_
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a UCI Mill Game playing engine derived from Stockfish
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a UCI Mill Game playing engine derived from Stockfish
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a UCI Mill Game playing engine derived from Stockfish
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -1230,26 +1229,6 @@ Key Position::update_key_misc()
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
/*
|
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
Sanmill is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
#include "movegen.h"
|
#include "movegen.h"
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill state playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,4 +1,22 @@
|
||||||
#ifndef STOPWATCH_H_
|
/*
|
||||||
|
This file is part of Sanmill.
|
||||||
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef STOPWATCH_H_
|
||||||
#define STOPWATCH_H_
|
#define STOPWATCH_H_
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a UCI Mill Game playing engine derived from Stockfish
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a UCI Mill Game playing engine derived from Stockfish
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
5
src/tt.h
5
src/tt.h
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a UCI Mill Game playing engine derived from Stockfish
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a UCI Mill Game playing engine derived from Stockfish
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a UCI Mill Game playing engine derived from Stockfish
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2015-2020 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad (Stockfish author)
|
|
||||||
Copyright (C) 2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
@ -18,8 +17,8 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:sanmill/style/colors.dart';
|
|
||||||
import 'package:sanmill/generated/l10n.dart';
|
import 'package:sanmill/generated/l10n.dart';
|
||||||
|
import 'package:sanmill/style/colors.dart';
|
||||||
|
|
||||||
class EditPage extends StatefulWidget {
|
class EditPage extends StatefulWidget {
|
||||||
//
|
//
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
/*
|
/*
|
||||||
FlutterMill, a mill game playing frontend derived from ChessRoad
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2019 He Zhaoyun (ChessRoad author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
FlutterMill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
FlutterMill is distributed in the hope that it will be useful,
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/*
|
||||||
|
This file is part of Sanmill.
|
||||||
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
|
|
||||||
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
Sanmill is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
// This is a basic Flutter widget test.
|
// This is a basic Flutter widget test.
|
||||||
//
|
//
|
||||||
// To perform an interaction with a widget in your test, use the WidgetTester
|
// To perform an interaction with a widget in your test, use the WidgetTester
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Sanmill, a mill game playing engine derived from NineChess 1.5
|
This file is part of Sanmill.
|
||||||
Copyright (C) 2015-2018 liuweilhy (NineChess author)
|
Copyright (C) 2019-2021 The Sanmill developers (see AUTHORS file)
|
||||||
Copyright (C) 2019-2020 Calcitem <calcitem@outlook.com>
|
|
||||||
|
|
||||||
Sanmill is free software: you can redistribute it and/or modify
|
Sanmill is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue