Skip to content
Snippets Groups Projects
Commit c0f7b468 authored by Eckhard von Toerne's avatar Eckhard von Toerne
Browse files

fix for build error on solaris

git-svn-id: http://root.cern.ch/svn/root/trunk@39855 27541ba8-7e3a-0410-8455-c3a389f83636
parent d9e775fc
Branches
Tags
No related merge requests found
......@@ -133,7 +133,7 @@ std::vector< int > TMVA::OptimizeConfigParameters::GetScanIndices( int val, std:
std::vector < int > indices;
for (UInt_t i=0; i< base.size(); i++){
indices.push_back(val % base[i] );
val = int( floor( float(val) / floor(base[i]) ) );
val = int( floor( float( float(val) / floor(base[i]) ) ) );
}
return indices;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment