feat(surface): major work on implementing surface constraints in a presciption agnostic manner
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
module;
|
||||
#include <mfem.hpp>
|
||||
export module mean_field:model.structure.base;
|
||||
export import :eos.base;
|
||||
export import :eos.runtime;
|
||||
|
||||
export namespace mean_field::models::structure {
|
||||
struct StructureSeed {
|
||||
@@ -23,7 +23,7 @@ export namespace mean_field::models::structure {
|
||||
public:
|
||||
virtual ~StructureBase() = default;
|
||||
|
||||
[[nodiscard]] virtual const eos::EquationOfState &equationOfState() const noexcept = 0;
|
||||
[[nodiscard]] virtual eos::EquationOfStateView equationOfState() const noexcept = 0;
|
||||
|
||||
[[nodiscard]] virtual double targetMass() const noexcept = 0;
|
||||
|
||||
@@ -34,4 +34,4 @@ export namespace mean_field::models::structure {
|
||||
protected:
|
||||
StructureBase() = default;
|
||||
};
|
||||
} // namespace mean_field::models::structure
|
||||
} // namespace mean_field::models::structure
|
||||
|
||||
Reference in New Issue
Block a user