From f812da366abefe2301ce4e47dd8b3074b7552ab6 Mon Sep 17 00:00:00 2001 From: Calcitem Date: Sun, 29 Nov 2020 19:47:38 +0800 Subject: [PATCH] copyright Rename Application Name from Fishmill to Sanmill --- src/Makefile | 6 +++--- src/benchmark.cpp | 6 +++--- src/main.cpp | 6 +++--- src/misc.cpp | 16 ++++++++-------- src/misc.h | 6 +++--- src/thread.h | 6 +++--- src/thread_win32_osx.h | 6 +++--- src/uci.cpp | 6 +++--- src/uci.h | 6 +++--- src/ucioption.cpp | 6 +++--- 10 files changed, 35 insertions(+), 35 deletions(-) diff --git a/src/Makefile b/src/Makefile index c0303847..b93702a1 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,15 +1,15 @@ -# Fishmill, a UCI Mill Game playing engine derived from Stockfish +# Sanmill, a UCI Mill Game playing engine derived from Stockfish # Copyright (C) 2004-2008 Tord Romstad (Glaurung author) # 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 # -# Fishmill 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 # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# Fishmill 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 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. diff --git a/src/benchmark.cpp b/src/benchmark.cpp index d4b68a42..64d20a85 100644 --- a/src/benchmark.cpp +++ b/src/benchmark.cpp @@ -1,16 +1,16 @@ /* - Fishmill, a UCI Mill Game playing engine derived from Stockfish + Sanmill, a UCI Mill Game playing engine derived from Stockfish Copyright (C) 2004-2008 Tord Romstad (Glaurung author) 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 - Fishmill 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 the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - Fishmill 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 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. diff --git a/src/main.cpp b/src/main.cpp index 114b64f6..00d26d92 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,16 +1,16 @@ /* - Fishmill, a UCI Mill Game playing engine derived from Stockfish + Sanmill, a UCI Mill Game playing engine derived from Stockfish Copyright (C) 2004-2008 Tord Romstad (Glaurung author) 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 - Fishmill 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 the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - Fishmill 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 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. diff --git a/src/misc.cpp b/src/misc.cpp index 1575849d..9bcfb701 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -1,16 +1,16 @@ /* - Fishmill, a UCI Mill Game playing engine derived from Stockfish + Sanmill, a UCI Mill Game playing engine derived from Stockfish Copyright (C) 2004-2008 Tord Romstad (Glaurung author) 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 - Fishmill 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 the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - Fishmill 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 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. @@ -149,9 +149,9 @@ public: } // namespace -/// engine_info() returns the full name of the current Fishmill version. This -/// will be either "Fishmill DD-MM-YY" (where DD-MM-YY is the date when -/// the program was compiled) or "Fishmill ", depending on whether +/// engine_info() returns the full name of the current Sanmill version. This +/// will be either "Sanmill DD-MM-YY" (where DD-MM-YY is the date when +/// the program was compiled) or "Sanmill ", depending on whether /// Version is empty. const string engine_info(bool to_uci) @@ -160,7 +160,7 @@ const string engine_info(bool to_uci) string month, day, year; stringstream ss, date(__DATE__); // From compiler, format is "Sep 21 2008" - ss << "Fishmill " << Version << setfill('0'); + ss << "Sanmill " << Version << setfill('0'); if (Version.empty()) { date >> month >> day >> year; @@ -170,7 +170,7 @@ const string engine_info(bool to_uci) ss << (Is64Bit ? " 64" : "") << (HasPext ? " BMI2" : (HasPopCnt ? " POPCNT" : "")) << (to_uci ? "\nid author " : " by ") - << "Calcitem Team, T. Romstad, M. Costalba, J. Kiiski, G. Linscott"; + << "The Sanmill Authors"; return ss.str(); } diff --git a/src/misc.h b/src/misc.h index 9d878b4e..ed5dbec1 100644 --- a/src/misc.h +++ b/src/misc.h @@ -1,16 +1,16 @@ /* - Fishmill, a UCI Mill Game playing engine derived from Stockfish + Sanmill, a UCI Mill Game playing engine derived from Stockfish Copyright (C) 2004-2008 Tord Romstad (Glaurung author) 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 - Fishmill 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 the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - Fishmill 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 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. diff --git a/src/thread.h b/src/thread.h index 027cf99f..8aa9a061 100644 --- a/src/thread.h +++ b/src/thread.h @@ -1,16 +1,16 @@ /* - Fishmill, a UCI Mill Game playing engine derived from Stockfish + Sanmill, a UCI Mill Game playing engine derived from Stockfish Copyright (C) 2004-2008 Tord Romstad (Glaurung author) 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 - Fishmill 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 the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - Fishmill 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 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. diff --git a/src/thread_win32_osx.h b/src/thread_win32_osx.h index 57ae98c9..f1751ee0 100644 --- a/src/thread_win32_osx.h +++ b/src/thread_win32_osx.h @@ -1,16 +1,16 @@ /* - Fishmill, a UCI Mill Game playing engine derived from Stockfish + Sanmill, a UCI Mill Game playing engine derived from Stockfish Copyright (C) 2004-2008 Tord Romstad (Glaurung author) 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 - Fishmill 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 the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - Fishmill 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 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. diff --git a/src/uci.cpp b/src/uci.cpp index a81c22dc..5d11e864 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -1,16 +1,16 @@ /* - Fishmill, a UCI Mill Game playing engine derived from Stockfish + Sanmill, a UCI Mill Game playing engine derived from Stockfish Copyright (C) 2004-2008 Tord Romstad (Glaurung author) 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 - Fishmill 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 the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - Fishmill 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 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. diff --git a/src/uci.h b/src/uci.h index a8e835e1..5fe0d1ea 100644 --- a/src/uci.h +++ b/src/uci.h @@ -1,16 +1,16 @@ /* - Fishmill, a UCI Mill Game playing engine derived from Stockfish + Sanmill, a UCI Mill Game playing engine derived from Stockfish Copyright (C) 2004-2008 Tord Romstad (Glaurung author) 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 - Fishmill 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 the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - Fishmill 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 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. diff --git a/src/ucioption.cpp b/src/ucioption.cpp index 40c55591..0c7230cd 100644 --- a/src/ucioption.cpp +++ b/src/ucioption.cpp @@ -1,16 +1,16 @@ /* - Fishmill, a UCI Mill Game playing engine derived from Stockfish + Sanmill, a UCI Mill Game playing engine derived from Stockfish Copyright (C) 2004-2008 Tord Romstad (Glaurung author) 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 - Fishmill 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 the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - Fishmill 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 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.