30 enum class DepthCorrection {
38 PAvg(
double inner_weight,
double conn_weight, DepthCorrection depth_correction,
bool use_open_connections);
40 double inner_weight()
const;
41 double conn_weight()
const;
42 bool use_porv()
const;
43 bool open_connections()
const;
44 DepthCorrection depth_correction()
const;
47 template<
class Serializer>
49 serializer(m_inner_weight);
50 serializer(m_conn_weight);
51 serializer(m_depth_correction);
52 serializer(m_open_connections);
55 static PAvg serializationTestObject();
57 bool operator==(
const PAvg& other)
const;
58 bool operator!=(
const PAvg& other)
const;
61 double m_inner_weight;
63 DepthCorrection m_depth_correction;
64 bool m_open_connections;
Definition: DeckRecord.hpp:32
Class for (de-)serializing.
Definition: Serializer.hpp:84
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition: Exceptions.hpp:30