mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 09:47:46 +00:00
14 lines
220 B
C++
14 lines
220 B
C++
#ifndef _GENSFEN_H_
|
|
#define _GENSFEN_H_
|
|
|
|
#include "position.h"
|
|
|
|
#include <sstream>
|
|
|
|
namespace Learner {
|
|
|
|
// Automatic generation of teacher position
|
|
void gen_sfen(Position& pos, std::istringstream& is);
|
|
}
|
|
|
|
#endif |