@@ -19,7 +19,7 @@ class RungeKuttaIntegratorTest : public ::testing::Test {
19
19
cudensitymatHandle_t handle_;
20
20
cudensitymatOperator_t liouvillian_;
21
21
std::shared_ptr<cudm_time_stepper> time_stepper_;
22
- std::unique_ptr<runge_kutta_integrator<void >> integrator_;
22
+ std::unique_ptr<runge_kutta_integrator<std::complex< double > >> integrator_;
23
23
std::unique_ptr<cudm_state> state_;
24
24
25
25
void SetUp () override {
@@ -41,9 +41,10 @@ class RungeKuttaIntegratorTest : public ::testing::Test {
41
41
42
42
double t0 = 0.0 ;
43
43
// Initialize the integrator (using substeps = 4, for Runge-Kutta method)
44
- ASSERT_NO_THROW (integrator_ =
45
- std::make_unique<runge_kutta_integrator<void >>(
46
- std::move (*state_), t0, time_stepper_, 4 ));
44
+ ASSERT_NO_THROW (
45
+ integrator_ =
46
+ std::make_unique<runge_kutta_integrator<std::complex<double >>>(
47
+ std::move (*state_), t0, time_stepper_, 4 ));
47
48
ASSERT_NE (integrator_, nullptr );
48
49
}
49
50
@@ -61,18 +62,22 @@ TEST_F(RungeKuttaIntegratorTest, Initialization) {
61
62
62
63
// Integration with Euler Method (substeps = 1)
63
64
TEST_F (RungeKuttaIntegratorTest, EulerIntegration) {
64
- auto eulerIntegrator = std::make_unique<runge_kutta_integrator<void >>(
65
- cudm_state (handle_, mock_initial_state_data (), mock_hilbert_space_dims ()),
66
- 0.0 , time_stepper_, 1 );
65
+ auto eulerIntegrator =
66
+ std::make_unique<runge_kutta_integrator<std::complex<double >>>(
67
+ cudm_state (handle_, mock_initial_state_data (),
68
+ mock_hilbert_space_dims ()),
69
+ 0.0 , time_stepper_, 1 );
67
70
eulerIntegrator->set_option (" dt" , 0.1 );
68
71
EXPECT_NO_THROW (eulerIntegrator->integrate (1.0 ));
69
72
}
70
73
71
74
// Integration with Midpoint Rule (substeps = 2)
72
75
TEST_F (RungeKuttaIntegratorTest, MidpointIntegration) {
73
- auto midpointIntegrator = std::make_unique<runge_kutta_integrator<void >>(
74
- cudm_state (handle_, mock_initial_state_data (), mock_hilbert_space_dims ()),
75
- 0.0 , time_stepper_, 2 );
76
+ auto midpointIntegrator =
77
+ std::make_unique<runge_kutta_integrator<std::complex<double >>>(
78
+ cudm_state (handle_, mock_initial_state_data (),
79
+ mock_hilbert_space_dims ()),
80
+ 0.0 , time_stepper_, 2 );
76
81
midpointIntegrator->set_option (" dt" , 0.1 );
77
82
EXPECT_NO_THROW (midpointIntegrator->integrate (1.0 ));
78
83
}
@@ -110,9 +115,11 @@ TEST_F(RungeKuttaIntegratorTest, MultipleIntegrationSteps) {
110
115
111
116
// Missing Time Step (dt)
112
117
TEST_F (RungeKuttaIntegratorTest, MissingTimeStepOption) {
113
- auto integrator_missing_dt = std::make_unique<runge_kutta_integrator<void >>(
114
- cudm_state (handle_, mock_initial_state_data (), mock_hilbert_space_dims ()),
115
- 0.0 , time_stepper_, 2 );
118
+ auto integrator_missing_dt =
119
+ std::make_unique<runge_kutta_integrator<std::complex<double >>>(
120
+ cudm_state (handle_, mock_initial_state_data (),
121
+ mock_hilbert_space_dims ()),
122
+ 0.0 , time_stepper_, 2 );
116
123
117
124
EXPECT_THROW (integrator_missing_dt->integrate (1.0 ), std::invalid_argument);
118
125
}
@@ -142,7 +149,7 @@ TEST_F(RungeKuttaIntegratorTest, LargeTimeStep) {
142
149
143
150
// Invalid Substeps
144
151
TEST_F (RungeKuttaIntegratorTest, InvalidSubsteps) {
145
- EXPECT_THROW (std::make_unique<runge_kutta_integrator<void >>(
152
+ EXPECT_THROW (std::make_unique<runge_kutta_integrator<std::complex< double > >>(
146
153
cudm_state (handle_, mock_initial_state_data (),
147
154
mock_hilbert_space_dims ()),
148
155
0.0 , time_stepper_, 3 ),
0 commit comments