Skip to content
Snippets Groups Projects
Commit 5479e469 authored by Salard Xavier's avatar Salard Xavier
Browse files

Little debug of the points heuristic

parent 4f18ca3c
No related branches found
No related tags found
No related merge requests found
......@@ -18,11 +18,11 @@ namespace mcts
old_score = old_state.score_blue;
new_score = new_state.score_blue;
}
return (-2.f + (new_score - old_score));
return (2.f - (new_score - old_score));
}
int points_heuristic::get_count(const game::penguin& game, uint8_t move) const
{
return 100; ;
return 100000; ;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment