Skip to content

Commit

Permalink
merge mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
pseyfert committed Aug 16, 2017
1 parent c4c3e50 commit f2f2ceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmva/tmva/src/MethodANNBase.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1117,7 +1117,7 @@ void TMVA::MethodANNBase::MakeClassSpecific( std::ostream& fout, const TString&
fout << " buffer[i] = fWeightMatrix" << i << "to" << i + 1 << "[o][i] * inputValues[i];" << std::endl;
fout << " } // loop over i" << std::endl;
fout << " buffer.back() = fWeightMatrix" << i << "to" << i + 1 << "[o]["
<< ((TObjArray *)fNetwork->At(i))->GetEntries() - 1 << "];"
<< ((TObjArray *)fNetwork->At(i))->GetEntries() - 1 << "];";
} else {
fout << " std::array<double, " << ((TObjArray *)fNetwork->At(i))->GetEntries()
<< "> buffer; // no need to initialise" << std::endl;
Expand Down

0 comments on commit f2f2ceb

Please sign in to comment.