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 985ebdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions tests/amr/data/particles/refine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,4 @@ target_link_libraries(${PROJECT_NAME} PRIVATE
${GTEST_LIBS})


add_phare_test(${PROJECT_NAME} ${CMAKE_CURRENT_BINARY_DIR})


add_no_mpi_phare_test(${PROJECT_NAME} ${CMAKE_CURRENT_BINARY_DIR})
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 985ebdb

Please sign in to comment.