value changes
This commit is contained in:
@@ -25,7 +25,7 @@ pub struct Move {
|
||||
pub children: Vec<usize>,
|
||||
|
||||
/// Value of this move (including children)
|
||||
pub value: i64,
|
||||
pub value: i128,
|
||||
|
||||
pub self_value: i64,
|
||||
|
||||
@@ -61,7 +61,7 @@ impl Move {
|
||||
self_value: 0,
|
||||
};
|
||||
m.self_value = m.compute_self_value(agent_color);
|
||||
m.value = m.self_value;
|
||||
m.value = m.self_value as i128;
|
||||
m
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user