|
| constexpr Element | operator+ (const Element &a, const Element &b) |
| | Addition, a+b.
|
| |
| constexpr Element | operator- (const Element &a, const Element &b) |
| | Subtraction, a-b.
|
| |
| constexpr Element | operator* (const Element &a, const Value &C) |
| | Multiplication, C*a.
|
| |
| constexpr Element | fma (const Element &a, const Value &C, const Element &b) |
| | Fused Multiply and Add, C*a+b.
|
| |
| SVector | fma (const SVector &a, const Value &C, const SVector &b) |
| | Fused Multiply and Add, C*a+b.
|
| |
| SVector | operator/ (const SVector &a, const Value &C) |
| | Division, a/C.
|
| |
| SVector | operator* (const SVector &a, const Value &C) |
| | Multiplication, a*C.
|
| |
For sparse vector containers and operations.