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

minor but much clearer fix of buildbot error on solaris

git-svn-id: http://root.cern.ch/svn/root/trunk@39854 27541ba8-7e3a-0410-8455-c3a389f83636
parent f22f4b5e
No related branches found
No related tags found
No related merge requests found
...@@ -133,7 +133,7 @@ std::vector< int > TMVA::OptimizeConfigParameters::GetScanIndices( int val, std: ...@@ -133,7 +133,7 @@ std::vector< int > TMVA::OptimizeConfigParameters::GetScanIndices( int val, std:
std::vector < int > indices; std::vector < int > indices;
for (UInt_t i=0; i< base.size(); i++){ for (UInt_t i=0; i< base.size(); i++){
indices.push_back(val % base[i] ); indices.push_back(val % base[i] );
val = int( floor( float(val / base[i]) ) ); val = int( floor( float(val) / floor(base[i]) ) );
} }
return indices; return indices;
} }
......
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