// Copyright(C) 1999-2020, 2022 National Technology & Engineering Solutions // of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with // NTESS, the U.S. Government retains certain rights in this software. // // See packages/seacas/LICENSE for details #pragma once #include "EJ_CodeTypes.h" template void eliminate_omitted_nodes(RegionVector &part_mesh, std::vector &global_node_map, std::vector &local_node_map, bool fill_global); template void build_reverse_node_map(Ioss::Region &output_region, RegionVector &part_mesh, std::vector &global_node_map, std::vector &local_node_map); template void build_local_element_map(RegionVector &part_mesh, std::vector &local_element_map); template void generate_element_ids(RegionVector &part_mesh, const std::vector &local_element_map, std::vector &global_element_map);