Skip to content

Commit

Permalink
remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
cz4rs committed Sep 9, 2024
1 parent 6093894 commit bf9fd60
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/integrator_nve_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,8 @@ void Integrator<t_System>::initial_integrate( t_System *system )
f = system->f;
type = system->type;

static int step = 1;
Kokkos::parallel_for( "IntegratorNVE::initial_integrate",
t_policy_initial( 0, system->N_local ), *this );
step++;
}

template <class t_System>
Expand All @@ -80,10 +78,8 @@ void Integrator<t_System>::final_integrate( t_System *system )
f = system->f;
type = system->type;

static int step = 1;
Kokkos::parallel_for( "IntegratorNVE::final_integrate",
t_policy_final( 0, system->N_local ), *this );
step++;
}

template <class t_System>
Expand Down

0 comments on commit bf9fd60

Please sign in to comment.