mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 15:37:47 +00:00
Introduce notation.h
And group there all the formatting functions but uci_pv() that requires access to search.cpp variables. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -37,11 +37,6 @@ extern void dbg_hit_on_c(bool c, bool b);
|
||||
extern void dbg_mean_of(int v);
|
||||
extern void dbg_print();
|
||||
|
||||
class Position;
|
||||
extern Move move_from_uci(const Position& pos, std::string& str);
|
||||
extern const std::string move_to_uci(Move m, bool chess960);
|
||||
extern const std::string move_to_san(Position& pos, Move m);
|
||||
|
||||
|
||||
struct Log : public std::ofstream {
|
||||
Log(const std::string& f = "log.txt") : std::ofstream(f.c_str(), std::ios::out | std::ios::app) {}
|
||||
|
||||
Reference in New Issue
Block a user