blob: 5e3452ef0353c3c2027e4e9fbff4a90136bad250 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- src/UCTNode.cpp.orig 2025-08-23 18:43:12 UTC
+++ src/UCTNode.cpp
@@ -361,8 +361,7 @@ UCTNode* UCTNode::uct_select_child(const int color, co
return best->get();
}
-class NodeComp
- : public std::binary_function<UCTNodePointer&, UCTNodePointer&, bool> {
+class NodeComp {
public:
NodeComp(const int color, const float lcb_min_visits)
: m_color(color), m_lcb_min_visits(lcb_min_visits) {}
|