mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-26 12:06:22 +08:00
14 lines
204 B
C++
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 |