From 2bfdcefcf67027d174d31f29d7d5eb28dac8b232 Mon Sep 17 00:00:00 2001 From: NybergWISC Date: Mon, 15 Aug 2022 13:04:47 -0500 Subject: [PATCH] Remove second volume method from mesh header file --- include/openmc/mesh.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/openmc/mesh.h b/include/openmc/mesh.h index 8015d2e4c..310320486 100644 --- a/include/openmc/mesh.h +++ b/include/openmc/mesh.h @@ -483,8 +483,6 @@ public: void to_hdf5(hid_t group) const override; - virtual double volume(int bin) const = 0; - std::string bin_label(int bin) const override; // Methods @@ -528,10 +526,6 @@ public: //! \return element connectivity as IDs of the vertices virtual std::vector connectivity(int id) const = 0; - //! Get the volume of a mesh bin - // - //! \param[in] bin Bin to return the volume for - //! \return Volume of the bin virtual double volume(int bin) const = 0; //! Get the library used for this unstructured mesh