Files
Stockfish/src/learn/gensfen.h
2020-10-26 09:37:59 +09:00

14 lines
204 B
C++

#ifndef _GENSFEN_H_
#define _GENSFEN_H_
#include "position.h"
#include <sstream>
namespace Learner {
// Automatic generation of teacher position
void gensfen(std::istringstream& is);
}
#endif