Commit eae3caf9 authored by Davis King's avatar Davis King
Browse files

Fixed function_evaluation_request::set() invalidating function_evaluation_request::x()

parent a53354eb
......@@ -584,7 +584,7 @@ namespace dlib
info->radius = 0;
}
info->best_objective_value = y;
info->best_x = std::move(req.x);
info->best_x = req.x;
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment