Skip to content

Commit

Permalink
Dummy commit to trigger CI
Browse files Browse the repository at this point in the history
  • Loading branch information
flferretti committed Jul 5, 2024
1 parent 5380f40 commit edbbd96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/jaxsim/math/adjoint.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import jax.numpy as jnp
import jaxlie

import jaxlie # dummy double import
import jaxsim.typing as jtp

from .quaternion import Quaternion
Expand Down
4 changes: 1 addition & 3 deletions src/jaxsim/math/joint_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,7 @@ def build(description: ModelDescription) -> JointModel:
λ_H_pre = λ_H_pre.at[joint.index].set(
fk.relative_transform(relative_to=joint.parent.name, name=joint.name)
)
suc_H_i = suc_H_i.at[joint.index].set(
fk.relative_transform(relative_to=joint.name, name=joint.child.name)
)
suc_H_i = suc_H_i.at[joint.index].set(fk.relative_transform(relative_to=joint.name, name=joint.child.name))

# Define the DoFs of the base link.
base_dofs = 0 if description.fixed_base else 6
Expand Down

0 comments on commit edbbd96

Please sign in to comment.