Skip to content

Commit

Permalink
Add reference sources and update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
flferretti committed Sep 13, 2024
1 parent a09bc0d commit 42aed4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jaxsim/rbda/contacts/relaxed_rigid.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class RelaxedRigidContactsParams(ContactsParams):
default_factory=lambda: jnp.array(50, dtype=int)
)

# Solver Tolerance
# Solver tolerance
tolerance: jtp.Float = dataclasses.field(
default_factory=lambda: jnp.array(1e-6, dtype=float)
)
Expand Down Expand Up @@ -172,7 +172,7 @@ def valid(self, model: js.model.JaxSimModel) -> bool:

@jax_dataclasses.pytree_dataclass
class RelaxedRigidContacts(ContactModel):
"""Rigid contacts model."""
"""Relaxed rigid contacts model."""

parameters: RelaxedRigidContactsParams = dataclasses.field(
default_factory=RelaxedRigidContactsParams
Expand Down

0 comments on commit 42aed4b

Please sign in to comment.