20#ifndef OPM_KEYWORDS_HPP
21#define OPM_KEYWORDS_HPP
32 std::optional<std::string> unit = std::nullopt;
33 std::optional<T> scalar_init = std::nullopt;
34 bool multiplier =
false;
39 return this->unit == other.unit &&
40 this->scalar_init == other.scalar_init &&
41 this->multiplier == other.multiplier &&
42 this->top == other.top &&
43 this->global == other.global;
48 this->scalar_init = init_value;
53 this->unit = unit_string;
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition: Exceptions.hpp:30
Definition: Keywords.hpp:31