mirror of
https://github.com/chesskit-app/chesskit-engine.git
synced 2026-05-19 15:50:35 +00:00
21 lines
344 B
C++
21 lines
344 B
C++
//
|
|
// lc0+engine.m
|
|
// ChessKitEngine
|
|
//
|
|
|
|
#ifndef lc0_engine_h
|
|
#define lc0_engine_h
|
|
|
|
#include "engine.h"
|
|
#include <string>
|
|
|
|
/// LeelaChessZero (Lc0) implementation of `Engine`.
|
|
class Lc0Engine: public Engine {
|
|
public:
|
|
void initialize();
|
|
void deinitialize();
|
|
void send_command(const std::string &cmd);
|
|
};
|
|
|
|
#endif /* lc0_engine_h */
|