mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 15:37:47 +00:00
23 lines
314 B
C++
23 lines
314 B
C++
#include "learning_tools.h"
|
|
|
|
#if defined (EVAL_LEARN)
|
|
|
|
#include "misc.h"
|
|
|
|
using namespace Eval;
|
|
|
|
namespace EvalLearningTools
|
|
{
|
|
|
|
// --- static variables
|
|
|
|
double Weight::eta;
|
|
double Weight::eta1;
|
|
double Weight::eta2;
|
|
double Weight::eta3;
|
|
uint64_t Weight::eta1_epoch;
|
|
uint64_t Weight::eta2_epoch;
|
|
}
|
|
|
|
#endif
|