這是在下面的代碼已知的錯誤:「controlled_runge_kutta」不是類模板
「controlled_runge_kutta」不是類模板
在以下代碼:
template<
class ErrorStepper ,
class ErrorChecker ,
class Resizer
>
class controlled_runge_kutta< ErrorStepper , ErrorChecker , Resizer , explicit_error_stepper_tag >
{
public:
};
int main()
{
return 0;
}
我知道爲什麼我得到這個錯誤。但我的問題是,它是如何工作在第146行的github的原始提升庫中?
謝謝。