feat(python): implement python bindings for all components and solvers
This commit is contained in:
@@ -542,6 +542,15 @@ pub trait Component {
|
||||
fn internal_state_len(&self) -> usize {
|
||||
0
|
||||
}
|
||||
|
||||
/// Injects control variable indices for calibration parameters into a component.
|
||||
///
|
||||
/// Called by the solver (e.g. `System::finalize()`) after matching `BoundedVariable`s
|
||||
/// to components, so the component can read calibration factors dynamically from
|
||||
/// the system state vector.
|
||||
fn set_calib_indices(&mut self, _indices: entropyk_core::CalibIndices) {
|
||||
// Default: no-op for components that don't support inverse calibration
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
|
||||
Reference in New Issue
Block a user