Skip to content

Commit

Permalink
Removing integrator warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
nandantumu committed Dec 19, 2023
1 parent a1f4cb4 commit 60b7758
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions gym/f110_gym/envs/integrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ class IntegratorType(Enum):
@staticmethod
def from_string(integrator: str):
if integrator == "rk4":
warnings.warn(
"Chosen integrator is RK4. This is different from previous versions of the gym."
)
return RK4Integrator()
elif integrator == "euler":
return EulerIntegrator()
Expand Down

0 comments on commit 60b7758

Please sign in to comment.