Skip to content

Commit

Permalink
Fix compile error (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
QueensGambit committed Oct 6, 2024
1 parent f984efa commit c045744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/src/agents/mctsagent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ void MCTSAgent::set_root_node_predictions()
}
nets[netIdx]->predict(inputPlanes, valueOutputs, probOutputs, auxiliaryOutputs);
size_t tbHits = 0;
fill_nn_results(0, nets[phaseToNetsIndex.at(currentPhase)]->is_policy_map(), valueOutputs, probOutputs, auxiliaryOutputs, rootNode.get(), tbHits,
fill_nn_results(0, nets[netIdx]->is_policy_map(), valueOutputs, probOutputs, auxiliaryOutputs, rootNode.get(), tbHits,
rootState->mirror_policy(state->side_to_move()), searchSettings, rootNode->is_tablebase());
}

Expand Down

0 comments on commit c045744

Please sign in to comment.