| 339 | |
| 340 | template <class T> |
| 341 | static Euler<T> * |
| 342 | eulerConstructor1d(const Euler<T>& e, int iorder) |
| 343 | { |
| 344 | typename Euler<T>::Order o = typename Euler<T>::Order (iorder); |
| 345 | return new Euler<T>(e, o); |
| 346 | } |
| 347 | |
| 348 | template <class T> |
| 349 | static Euler<T> * |
nothing calls this directly
no outgoing calls
no test coverage detected