Skip to content

Commit

Permalink
Code review: update filenames to better match new class name
Browse files Browse the repository at this point in the history
  • Loading branch information
fmahebert authored and wdeconinck committed May 22, 2023
1 parent f4dab26 commit 14dc611
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions src/atlas/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,6 @@ endif()

list( APPEND atlas_mesh_srcs
mesh.h
mesh/BuildMeshFromConnectivities.cc
mesh/BuildMeshFromConnectivities.h
mesh/Connectivity.cc
mesh/Connectivity.h
mesh/ElementType.cc
Expand All @@ -325,6 +323,8 @@ mesh/HybridElements.cc
mesh/HybridElements.h
mesh/Mesh.cc
mesh/Mesh.h
mesh/MeshBuilder.cc
mesh/MeshBuilder.h
mesh/Nodes.cc
mesh/Nodes.h
mesh/PartitionPolygon.cc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
*/

#include "atlas/mesh/BuildMeshFromConnectivities.h"
#include "atlas/mesh/MeshBuilder.h"

#include "atlas/array/MakeView.h"
#include "atlas/mesh/ElementType.h"
Expand Down
File renamed without changes.
8 changes: 4 additions & 4 deletions src/tests/mesh/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -114,16 +114,16 @@ if( TEST atlas_test_cubedsphere_meshgen )
set_tests_properties( atlas_test_cubedsphere_meshgen PROPERTIES TIMEOUT 30 )
endif()

ecbuild_add_test( TARGET atlas_test_build_mesh_from_connectivities
SOURCES test_build_mesh_from_connectivities.cc
ecbuild_add_test( TARGET atlas_test_mesh_builder
SOURCES test_mesh_builder.cc
LIBS atlas
ENVIRONMENT ${ATLAS_TEST_ENVIRONMENT}
)

ecbuild_add_test( TARGET atlas_test_build_mesh_from_connectivities_parallel
ecbuild_add_test( TARGET atlas_test_mesh_builder_parallel
MPI 6
CONDITION eckit_HAVE_MPI AND MPI_SLOTS GREATER_EQUAL 6
SOURCES test_build_mesh_from_connectivities_parallel.cc
SOURCES test_mesh_builder_parallel.cc
LIBS atlas
ENVIRONMENT ${ATLAS_TEST_ENVIRONMENT}
)
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
#include <vector>

#include "atlas/array/MakeView.h"
#include "atlas/mesh/BuildMeshFromConnectivities.h"
#include "atlas/mesh/Elements.h"
#include "atlas/mesh/HybridElements.h"
#include "atlas/mesh/Mesh.h"
#include "atlas/mesh/MeshBuilder.h"
#include "atlas/mesh/Nodes.h"

#include "tests/AtlasTestEnvironment.h"
#include "tests/mesh/helper_build_mesh_from_connectivities.h"
#include "tests/mesh/helper_mesh_builder.h"

//#include "atlas/output/Gmsh.h"
//using namespace atlas::output;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
#include <vector>

#include "atlas/array/MakeView.h"
#include "atlas/mesh/BuildMeshFromConnectivities.h"
#include "atlas/mesh/Elements.h"
#include "atlas/mesh/HybridElements.h"
#include "atlas/mesh/Mesh.h"
#include "atlas/mesh/MeshBuilder.h"
#include "atlas/mesh/Nodes.h"
#include "atlas/parallel/mpi/mpi.h"

#include "tests/AtlasTestEnvironment.h"
#include "tests/mesh/helper_build_mesh_from_connectivities.h"
#include "tests/mesh/helper_mesh_builder.h"

//#include "atlas/output/Gmsh.h"
//using namespace atlas::output;
Expand Down

0 comments on commit 14dc611

Please sign in to comment.