Struct representing the gradient of a symbolic expression.
More...
#include <type.h>
|
std::unordered_map< int, float > | val |
|
Struct representing the gradient of a symbolic expression.
◆ Grad()
gymbo::Grad::Grad |
( |
std::unordered_map< int, float > |
val | ) |
|
|
inline |
Constructor for the gradient.
- Parameters
-
val | Map of variable indices to gradient values. |
◆ abs()
Grad gymbo::Grad::abs |
( |
| ) |
|
|
inline |
Compute the absolute values of the gradient.
- Returns
- The gradient with absolute values.
◆ operator*()
Grad gymbo::Grad::operator* |
( |
float |
w | ) |
|
|
inline |
Overloaded multiplication operator for multiplying the gradient by a constant.
- Parameters
-
w | The constant to multiply by. |
- Returns
- The result of multiplying the gradient by the constant.
◆ operator+() [1/2]
Grad gymbo::Grad::operator+ |
( |
const Grad & |
other | ) |
|
|
inline |
Overloaded addition operator for adding two gradients.
- Parameters
-
other | The gradient to add. |
- Returns
- The sum of the two gradients.
◆ operator+() [2/2]
Grad gymbo::Grad::operator+ |
( |
float |
w | ) |
|
|
inline |
Overloaded addition operator for adding a constant to the gradient.
- Parameters
-
- Returns
- The sum of the gradient and the constant.
◆ operator-()
Grad gymbo::Grad::operator- |
( |
const Grad & |
other | ) |
|
|
inline |
Overloaded subtraction operator for subtracting two gradients.
- Parameters
-
other | The gradient to subtract. |
- Returns
- The result of subtracting the second gradient from the first.
◆ val
std::unordered_map<int, float> gymbo::Grad::val |
Map of variable indices to gradient values.
The documentation for this struct was generated from the following file: