Files
Stockfish/src/learn/gensfen.h
T
2020-09-12 16:19:24 +02:00

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