Skip to content

Commit

Permalink
Update src/jaxsim/simulation/integrators.py
Browse files Browse the repository at this point in the history
Co-authored-by: Diego Ferigo <[email protected]>
  • Loading branch information
flferretti and diegoferigo authored Feb 12, 2024
1 parent 410bf16 commit a225c87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jaxsim/simulation/integrators.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def integrator_fixed_single_step(
sub_step_dt = dt / num_sub_steps

# Initialize the carry
Carry = Tuple[State, Time]
Carry = Tuple[State | ODEState, Time]
carry_init: Carry = (x0, t0)

def forward_euler_body_fun(carry: Carry, xs: None) -> Tuple[Carry, None]:
Expand Down

0 comments on commit a225c87

Please sign in to comment.