Skip to content

Commit

Permalink
float -> double
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipDeegan committed Oct 16, 2024
1 parent 8c4fa42 commit 618e31d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ void loadCell(ParticleArray<dimension>& particles, int iCellX, int iCellY, int i
{
std::array<int, 3> const _3diCell = {iCellX, iCellY, iCellZ};

float const middle = 0.5;
float const delta = 0.30f;
double const middle = 0.5;
double const delta = 0.30;

Particle<dimension> particle;

Expand Down

0 comments on commit 618e31d

Please sign in to comment.