OpenLB 1.8.1
Loading...
Searching...
No Matches
olb::concepts::BaseType Concept Reference

Foundational arithmetic type for all computations. More...

#include <concepts.h>

Concept definition

template<typename T>
concept olb::concepts::BaseType = requires(T x, T y) {
x + y; x - y; x * y; x / y;
x += y; x -= y; x *= y; x /= y;
}
Foundational arithmetic type for all computations.
Definition concepts.h:47
Expr sqrt(Expr x)
Definition expr.cpp:225

Detailed Description

Foundational arithmetic type for all computations.

Definition at line 47 of file concepts.h.