Skip to content

Commit

Permalink
Updated Odeint Keller-Miksis computation
Browse files Browse the repository at this point in the history
  • Loading branch information
plaveczlambert committed Sep 13, 2020
1 parent d0d8abf commit bbd6a94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Keller_Miksis_RK45/GPU_odeint/keller_miksis_thrust.cu
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const double theta = 0.0;
typedef double value_type;
typedef thrust::device_vector< value_type > state_type;

const int num = 12;
int num = 12;

string file_name = "kellermiksis_thrust_output.txt";

Expand Down Expand Up @@ -270,7 +270,7 @@ int main() {

typedef runge_kutta_cash_karp54< state_type , value_type , state_type , value_type > stepper_type;

for(int jj=12; jj < 18;jj++){ //parameter loop
for(int jj=0; jj < 12;jj++){ //parameter loop

num = nums[jj];
cout << num << endl;
Expand Down

0 comments on commit bbd6a94

Please sign in to comment.