PFASST++
sdc.hpp
Go to the documentation of this file.
1 
5 #ifndef _PFASST__CONTROLLER__SDC_HPP_
6 #define _PFASST__CONTROLLER__SDC_HPP_
7 
9 
10 
11 namespace pfasst
12 {
23  template<typename time = time_precision>
24  class SDC
25  : public Controller<time>
26  {
27  public:
31  virtual void run();
32  };
33 } // ::pfasst
34 
36 
37 #endif // _PFASST__CONTROLLER__SDC_HPP_
virtual void run()
Run vanilla SDC.
Definition: sdc_impl.hpp:22
Base SDC/MLSDC/PFASST controller.
Definition: interface.hpp:31
Vanilla SDC controller.
Definition: sdc.hpp:24