mirror of
https://github.com/correl/mage.git
synced 2025-04-02 17:00:11 -09:00
fixed monte carlo NPE's
This commit is contained in:
parent
ec297c243c
commit
c902998fa0
2 changed files with 1 additions and 1 deletions
Mage.Server.Plugins/Mage.Player.AIMCTS/src/mage/player/ai
Mage.Server/plugins
|
@ -271,7 +271,7 @@ public class MCTSNode {
|
|||
for (MCTSNode node: children) {
|
||||
// logger.info(state);
|
||||
// logger.info(node.stateValue);
|
||||
if (node.stateValue == state) {
|
||||
if (node.stateValue == state && node.action != null) {
|
||||
return node;
|
||||
}
|
||||
MCTSNode match = node.getMatchingState(state);
|
||||
|
|
Binary file not shown.
Loading…
Add table
Reference in a new issue