future_move/move: remove usages of tried_children

This commit is contained in:
2025-03-25 15:50:03 -04:00
parent 0fb6003f38
commit 10e0770c4f
2 changed files with 1 additions and 6 deletions

View File

@@ -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