mirror of
https://github.com/sockspls/badfish
synced 2025-04-29 16:23:09 +00:00
Prefix abs with std::
This commit is contained in:
parent
f09adaa4a4
commit
7c5e3f2865
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ static bool write_parameters(std::ostream& stream, NetSize netSize) {
|
|||
void hint_common_parent_position(const Position& pos) {
|
||||
|
||||
int simpleEval = simple_eval(pos, pos.side_to_move());
|
||||
if (abs(simpleEval) > 1050)
|
||||
if (std::abs(simpleEval) > 1050)
|
||||
featureTransformerSmall->hint_common_access(pos);
|
||||
else
|
||||
featureTransformerBig->hint_common_access(pos);
|
||||
|
|
Loading…
Add table
Reference in a new issue