mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 08:37:44 +00:00
22 lines
476 B
C++
22 lines
476 B
C++
#ifndef _EVALUATE_COMMON_H_
|
|
#define _EVALUATE_COMMON_H_
|
|
|
|
// A common header-like function for modern evaluation functions.
|
|
#include <string>
|
|
|
|
namespace Eval
|
|
{
|
|
// --------------------------
|
|
// for learning
|
|
// --------------------------
|
|
|
|
// Save the evaluation function parameters to a file.
|
|
// You can specify the extension added to the end of the file.
|
|
void save_eval(std::string suffix);
|
|
|
|
// Get the current eta.
|
|
double get_eta();
|
|
}
|
|
|
|
#endif // _EVALUATE_COMMON_H_
|