#include <Source.h>
|
| | VectorSource (std::vector< VectorXd > &&, std::vector< MatrixXd > &&={}) |
| virtual VectorXd | at (size_t index) const override |
| virtual MatrixXd | matrix_at (size_t index) const override |
Definition at line 25 of file Source.h.
◆ VectorSource()
| lwtDev::VectorSource::VectorSource |
( |
std::vector< VectorXd > && | vv, |
|
|
std::vector< MatrixXd > && | mm = {} ) |
Definition at line 15 of file Graph.cxx.
16 :
19 {
20 }
std::vector< VectorXd > m_inputs
std::vector< MatrixXd > m_matrix_inputs
◆ at()
| VectorXd lwtDev::VectorSource::at |
( |
size_t | index | ) |
const |
|
overridevirtual |
Implements lwtDev::ISource.
Definition at line 21 of file Graph.cxx.
21 {
23 throw NNEvaluationException(
24 "VectorSource: no source vector defined at " + std::to_string(index));
25 }
27 }
◆ matrix_at()
| MatrixXd lwtDev::VectorSource::matrix_at |
( |
size_t | index | ) |
const |
|
overridevirtual |
Implements lwtDev::ISource.
Definition at line 28 of file Graph.cxx.
28 {
30 throw NNEvaluationException(
31 "VectorSource: no source matrix defined at " + std::to_string(index));
32 }
34 }
◆ m_inputs
| std::vector<VectorXd> lwtDev::VectorSource::m_inputs |
|
private |
◆ m_matrix_inputs
| std::vector<MatrixXd> lwtDev::VectorSource::m_matrix_inputs |
|
private |
The documentation for this class was generated from the following files: