Skip to content

Commit eeea98c

Browse files
committed
refactor: remove ScipyBDFIntegrator, use BDFIntegrator everywhere
1 parent ff87795 commit eeea98c

File tree

2 files changed

+1
-422
lines changed

2 files changed

+1
-422
lines changed

examples/quick_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ int main() {
6565
try {
6666
std::cout << "BDF (stiff): ";
6767
auto y = y0;
68-
auto integrator = diffeq::ScipyBDFIntegrator<std::vector<double>>(exponential_decay, 1e-3, 1e-6);
68+
auto integrator = diffeq::BDFIntegrator<std::vector<double>>(exponential_decay, 1e-3, 1e-6);
6969
integrator.set_time(t_start);
7070
integrator.integrate(y, dt, t_end);
7171
std::cout << std::setprecision(6) << y[0] << std::endl;

0 commit comments

Comments
 (0)