mirror of
https://github.com/official-stockfish/Stockfish.git
synced 2026-07-23 13:17:12 +00:00
20 lines
350 B
C++
20 lines
350 B
C++
#ifndef _SFEN_PACKER_H_
|
|
#define _SFEN_PACKER_H_
|
|
|
|
#include "types.h"
|
|
|
|
#include "learn/packed_sfen.h"
|
|
|
|
#include <cstdint>
|
|
|
|
class Position;
|
|
struct StateInfo;
|
|
class Thread;
|
|
|
|
namespace Learner {
|
|
|
|
int set_from_packed_sfen(Position& pos, const PackedSfen& sfen, StateInfo* si, Thread* th, bool mirror);
|
|
PackedSfen sfen_pack(Position& pos);
|
|
}
|
|
|
|
#endif |