Page MenuHomec4science

RungeKuttaSolver.hpp
No OneTemporary

File Metadata

Created
Mon, Feb 24, 22:33

RungeKuttaSolver.hpp

/*
* RungeKuttaSolver.hpp
*
* Created on: Oct 25, 2012
* Author: rpopescu
*/
#ifndef RUNGEKUTTASOLVER_HPP_
#define RUNGEKUTTASOLVER_HPP_
#include "AbstractOdeSolver.hpp"
class RungeKuttaSolver: public AbstractOdeSolver {
public:
RungeKuttaSolver();
virtual ~RungeKuttaSolver();
virtual void SolveEquation(std::ostream& stream);
};
#endif /* RUNGEKUTTASOLVER_HPP_ */

Event Timeline