RungeKuttaUtils : Add const to the remaining functions and for some local variables
RungeKuttaUtils.h
- Add
const
for a couple of functions declared asnon-const
. In principle this class has no state , so all function can be const. - A bit of indentation changes
RungeKuttaUtils.cxx
- Add the const for the above function as needed here
- Make a few local variables that can be const, const
Edited by Christos Anastopoulos