mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 16:53:09 +00:00
Sync variable names in decl vs def
This commit is contained in:
parent
c43146edb7
commit
f3cd7002aa
3 changed files with 4 additions and 4 deletions
|
@ -128,9 +128,9 @@ public:
|
|||
bool opposite_bishops() const;
|
||||
|
||||
// Doing and undoing moves
|
||||
void do_move(Move m, StateInfo& st, bool givesCheck);
|
||||
void do_move(Move m, StateInfo& newSt, bool givesCheck);
|
||||
void undo_move(Move m);
|
||||
void do_null_move(StateInfo& st);
|
||||
void do_null_move(StateInfo& newSt);
|
||||
void undo_null_move();
|
||||
|
||||
// Static Exchange Evaluation
|
||||
|
|
|
@ -55,7 +55,7 @@ public:
|
|||
void idle_loop();
|
||||
void start_searching(bool resume = false);
|
||||
void wait_for_search_finished();
|
||||
void wait(std::atomic_bool& b);
|
||||
void wait(std::atomic_bool& condition);
|
||||
|
||||
Pawns::Table pawnsTable;
|
||||
Material::Table materialTable;
|
||||
|
|
|
@ -49,7 +49,7 @@ public:
|
|||
Option(OnChange = nullptr);
|
||||
Option(bool v, OnChange = nullptr);
|
||||
Option(const char* v, OnChange = nullptr);
|
||||
Option(int v, int min, int max, OnChange = nullptr);
|
||||
Option(int v, int minv, int maxv, OnChange = nullptr);
|
||||
|
||||
Option& operator=(const std::string&);
|
||||
void operator<<(const Option&);
|
||||
|
|
Loading…
Add table
Reference in a new issue