Skip to content
Snippets Groups Projects
Commit b3538c05 authored by Xavier Valls Pla's avatar Xavier Valls Pla
Browse files

Clean unnecessary parameter

parent 83236b57
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@ Double_t TMVA::HuberLossFunction::CalculateSumOfWeights(const std::vector<LossFu
auto redFunc = [](const std::vector<Double_t> &a) { return std::accumulate(a.begin(), a.end(), 0.0); };
return TMVA::Config::Instance().GetThreadExecutor().MapReduce(
mapFunc, ROOT::TSeqU(0u, evs.size()), redFunc, TMVA::Config::Instance().GetThreadExecutor().GetPoolSize());
mapFunc, ROOT::TSeqU(evs.size()), redFunc, TMVA::Config::Instance().GetThreadExecutor().GetPoolSize());
}
// Standard version of HuberLossFunction::CalculateSumOfWeights
......
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