changing limiter from minmod to koren
- 
Thanks for the comment, @domcha. I think the way to go is to implement the flux limiter as a choice in the FV solver section in the toolkit, and to call a solvermethod right in thekernels::finitevolumes::musclhancock::c::solutionUpdatein place of the formerminmodfunction. Choices would be then:minmod,koren,user-defined, where the latter creates a function stub in the generated user FV solver. Toolkit code generation as usual.I will implement this in a seperate feature branch and merge it then into various branches (such as master, as well as Lukes current working branch, i.e. theminmodbranch).One principal thing is that this function is scalar, while it probably should be vectorized. That is easily possible with inlinefunctions, but not any more withuser-definedones. But I don't think there is an urgent need foruser-definedanyway. Maybe we can just offer a choice. Adding another one should then be an easy task.
- 
mentioned in issue #274 (closed) 
- 
mentioned in commit 6ddca16a 
- 
Since Luke now uses the master branch, I implemented these features in the toolkit in 6ddca16a in the master branch, independently from this branch (and the associated one-month-old fork from master). 
