20#ifndef OPM_KEYWORDS_HPP
21#define OPM_KEYWORDS_HPP
35 std::optional<std::string> unit = std::nullopt;
36 std::optional<T> scalar_init = std::nullopt;
37 bool multiplier =
false;
42 return this->unit == other.unit &&
43 this->scalar_init == other.scalar_init &&
44 this->multiplier == other.multiplier &&
45 this->top == other.top &&
46 this->global == other.global;
51 this->scalar_init = init_value;
56 this->unit = unit_string;
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition: Exceptions.hpp:29
Definition: Keywords.hpp:34