future_move/move: remove usages of tried_children
This commit is contained in:
@@ -20,9 +20,6 @@ pub struct Move {
|
||||
// cascading effects though, something to think about
|
||||
pub children: Vec<usize>,
|
||||
|
||||
/// Has this [`Move`] already attempted to create children?
|
||||
pub tried_children: bool,
|
||||
|
||||
/// Value of this move (including children)
|
||||
pub value: Option<i32>,
|
||||
|
||||
@@ -47,7 +44,6 @@ impl Move {
|
||||
color,
|
||||
is_trimmed: false,
|
||||
self_value: 0,
|
||||
tried_children: false,
|
||||
};
|
||||
m.self_value = m.compute_self_value(agent_color, &board, true);
|
||||
m
|
||||
|
||||
Reference in New Issue
Block a user