-
Notifications
You must be signed in to change notification settings - Fork 0
/
temp2.cc
34 lines (27 loc) · 810 Bytes
/
temp2.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// Created by qzz on 2023/12/22.
//
#include <iostream>
#include <algorithm>
#include <vector>
#include "absl/strings/str_format.h"
#include "absl/strings/str_cat.h"
#include "playcc/bridge_state_without_hidden_info.h"
#include "bridge_lib/bridge_state.h"
#include "playcc/pimc.h"
#include "playcc/transposition_table.h"
#include "playcc/deal_analyzer.h"
#include "playcc/play_bot.h"
const ble::GameParameters params = {};
const auto game = std::make_shared<ble::BridgeGame>(params);
// REGISTER_PLAY_BOT("alpha_mu", AlphaMuFactory);
int main() {
for(const auto& bot_name:RegisteredBots()) {
std::cout << bot_name << std::endl;
}
// std::cout << RegisteredBots().size() << std::endl;
//
// std::cout << __COUNTER__ << std::endl;
auto bot = LoadBot("alpha_mu", game, 0);
return 0;
}