diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2023-05-13 10:43:21 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2023-05-13 10:43:21 +0200 |
| commit | 617f2b01b2679ec43330ea6fb5f25f4137565b6a (patch) | |
| tree | f6d102da10821fb04f6184499e8a17cdb96472ad /src/game_tab/right_panel/LiveEngineDialog.hpp | |
| parent | 055410c0e0c1297612ce9677331d012af2226fac (diff) | |
Improve documentation
Diffstat (limited to 'src/game_tab/right_panel/LiveEngineDialog.hpp')
| -rw-r--r-- | src/game_tab/right_panel/LiveEngineDialog.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/game_tab/right_panel/LiveEngineDialog.hpp b/src/game_tab/right_panel/LiveEngineDialog.hpp index a74a2d6..8975ed2 100644 --- a/src/game_tab/right_panel/LiveEngineDialog.hpp +++ b/src/game_tab/right_panel/LiveEngineDialog.hpp @@ -7,11 +7,16 @@ wxDECLARE_EVENT(SHOW_ENGINE_EVALUATION, wxCommandEvent); +/// @brief Contains the current engine evaluation (sorted vector of best lines + position score in cp) typedef struct EngineEvaluation { std::vector<std::string> best_lines; float eval=0; } EngineEvaluation; +/** + * @brief Dialog to control the current running engine on the game tab + * + */ class LiveEngineDialog : public DialogLiveEngine { uciadapter::UCI *engine; std::string engine_name; |
