Remove surface-based neighbor lists

This commit is contained in:
Sterling Harper 2018-12-18 15:06:22 -05:00
parent 35238259c0
commit e6466e9867
5 changed files with 2 additions and 49 deletions

View file

@ -32,12 +32,6 @@ extern "C" void assign_temperatures();
extern "C" int32_t find_root_universe();
//!=============================================================================
//! Build a list of neighboring cells to each surface to speed up tracking.
//!=============================================================================
extern "C" void neighbor_lists();
//==============================================================================
//! Populate all data structures needed for distribcells.
//==============================================================================

View file

@ -66,9 +66,6 @@ public:
int bc_; //!< Boundary condition
std::string name_; //!< User-defined name
std::vector<int> neighbor_pos_; //!< List of cells on positive side
std::vector<int> neighbor_neg_; //!< List of cells on negative side
explicit Surface(pugi::xml_node surf_node);
Surface();