chore: sync project state and current artifacts
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
//! - AC #4: DoF validation correctly handles multiple linked variables
|
||||
|
||||
use entropyk_components::{
|
||||
Component, ComponentError, ConnectedPort, JacobianBuilder, ResidualVector, SystemState,
|
||||
Component, ComponentError, ConnectedPort, JacobianBuilder, ResidualVector, StateSlice,
|
||||
};
|
||||
use entropyk_solver::{
|
||||
inverse::{BoundedVariable, BoundedVariableId, ComponentOutput, Constraint, ConstraintId},
|
||||
@@ -26,7 +26,7 @@ struct MockPassThrough {
|
||||
impl Component for MockPassThrough {
|
||||
fn compute_residuals(
|
||||
&self,
|
||||
_state: &SystemState,
|
||||
_state: &StateSlice,
|
||||
residuals: &mut ResidualVector,
|
||||
) -> Result<(), ComponentError> {
|
||||
for r in residuals.iter_mut().take(self.n_eq) {
|
||||
@@ -37,7 +37,7 @@ impl Component for MockPassThrough {
|
||||
|
||||
fn jacobian_entries(
|
||||
&self,
|
||||
_state: &SystemState,
|
||||
_state: &StateSlice,
|
||||
jacobian: &mut JacobianBuilder,
|
||||
) -> Result<(), ComponentError> {
|
||||
for i in 0..self.n_eq {
|
||||
|
||||
Reference in New Issue
Block a user