Skip to content

Commit 02dcad5

Browse files
committed
Update CMakeLists.txt
1 parent fc924ac commit 02dcad5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.13)
22

33
project(
44
rk4_solver
5-
VERSION 1.0.8
5+
VERSION 1.0.9
66
LANGUAGES CXX
77
)
88

matlab/test/test__step_rk4__oscillator.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
x_arr(i + 1, :) = step_rk4(t, x, h, f_0).';
3838
end
3939

40-
% verify
40+
%* verify
4141
ode_fun = @(t, x) A*x + B*sin(pi*w_u*t);
4242
[ode.t_arr, ode.x_arr] = ode45(ode_fun, t_arr, x_init);
4343

0 commit comments

Comments
 (0)