Skip to content

Commit bf5607f

Browse files
committed
NEM_SLICE: E_Type to ElementType and make enum class
1 parent 5fb4b0c commit bf5607f

File tree

8 files changed

+358
-351
lines changed

8 files changed

+358
-351
lines changed

packages/seacas/applications/nem_slice/elb.h

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -214,22 +214,22 @@ struct Weight_Description
214214
/* Structure used to store information about the FEM mesh */
215215
template <typename INT> struct Mesh_Description
216216
{
217-
size_t num_nodes{0};
218-
size_t num_elems{0};
219-
size_t num_dims{0};
220-
size_t num_el_blks{0};
221-
std::vector<INT> eb_cnts{};
222-
std::vector<INT> eb_ids{};
223-
std::vector<INT> eb_npe{};
224-
std::vector<E_Type> eb_type{};
225-
size_t num_node_sets{0};
226-
size_t num_side_sets{0};
227-
size_t max_np_elem{0};
228-
size_t ns_list_len{0};
229-
char title[MAX_LINE_LENGTH + 1]{};
230-
std::vector<float> coords{};
231-
std::vector<E_Type> elem_type{};
232-
INT **connect;
217+
size_t num_nodes{0};
218+
size_t num_elems{0};
219+
size_t num_dims{0};
220+
size_t num_el_blks{0};
221+
std::vector<INT> eb_cnts{};
222+
std::vector<INT> eb_ids{};
223+
std::vector<INT> eb_npe{};
224+
std::vector<ElementType> eb_type{};
225+
size_t num_node_sets{0};
226+
size_t num_side_sets{0};
227+
size_t max_np_elem{0};
228+
size_t ns_list_len{0};
229+
char title[MAX_LINE_LENGTH + 1]{};
230+
std::vector<float> coords{};
231+
std::vector<ElementType> elem_type{};
232+
INT **connect;
233233

234234
Mesh_Description() : connect(nullptr) {}
235235
};

0 commit comments

Comments
 (0)