mirror of
https://github.com/official-stockfish/Stockfish.git
synced 2026-07-24 13:47:13 +00:00
16 lines
251 B
C++
16 lines
251 B
C++
#ifndef _GENSFEN_H_
|
|
#define _GENSFEN_H_
|
|
|
|
#include "position.h"
|
|
|
|
#include <sstream>
|
|
|
|
#if defined(EVAL_LEARN)
|
|
namespace Learner {
|
|
|
|
// Automatic generation of teacher position
|
|
void gen_sfen(Position& pos, std::istringstream& is);
|
|
}
|
|
#endif
|
|
|
|
#endif |