From 7563c9af602e3919553f3f4b3c285f577c01e263 Mon Sep 17 00:00:00 2001 From: ianfab Date: Wed, 8 Aug 2018 22:37:31 +0200 Subject: [PATCH] Update name and author --- src/misc.cpp | 4 ++-- src/variant.cpp | 10 ++++------ src/variant.h | 10 ++++------ 3 files changed, 10 insertions(+), 14 deletions(-) diff --git a/src/misc.cpp b/src/misc.cpp index 4e2d405..1bdb5a8 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -127,7 +127,7 @@ const string engine_info(bool to_uci) { string month, day, year; stringstream ss, date(__DATE__); // From compiler, format is "Sep 21 2008" - ss << "Stockfish " << Version << setfill('0'); + ss << "Fairy-Stockfish " << Version << setfill('0'); if (Version.empty()) { @@ -138,7 +138,7 @@ const string engine_info(bool to_uci) { ss << (Is64Bit ? " 64" : "") << (HasPext ? " BMI2" : (HasPopCnt ? " POPCNT" : "")) << (to_uci ? "\nid author ": " by ") - << "T. Romstad, M. Costalba, J. Kiiski, G. Linscott"; + << "F. Fichter"; return ss.str(); } diff --git a/src/variant.cpp b/src/variant.cpp index eaf02a6..991618f 100644 --- a/src/variant.cpp +++ b/src/variant.cpp @@ -1,15 +1,13 @@ /* - Stockfish, a UCI chess playing engine derived from Glaurung 2.1 - Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad - Copyright (C) 2015-2018 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad + Fairy-Stockfish, a UCI chess variant playing engine derived from Stockfish + Copyright (C) 2018 Fabian Fichter - Stockfish is free software: you can redistribute it and/or modify + Fairy-Stockfish 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. - Stockfish is distributed in the hope that it will be useful, + Fairy-Stockfish 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/variant.h b/src/variant.h index 4f751d0..2c93f5a 100644 --- a/src/variant.h +++ b/src/variant.h @@ -1,15 +1,13 @@ /* - Stockfish, a UCI chess playing engine derived from Glaurung 2.1 - Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad - Copyright (C) 2015-2018 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad + Fairy-Stockfish, a UCI chess variant playing engine derived from Stockfish + Copyright (C) 2018 Fabian Fichter - Stockfish is free software: you can redistribute it and/or modify + Fairy-Stockfish 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. - Stockfish is distributed in the hope that it will be useful, + Fairy-Stockfish 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. -- 1.7.0.4