Skip to content

Commit

Permalink
🎮 Refactor simulator folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Skylark0924 committed Sep 27, 2023
1 parent 7c6a02c commit 10d7067
Show file tree
Hide file tree
Showing 21 changed files with 84 additions and 434 deletions.
2 changes: 1 addition & 1 deletion examples/simulator/example_curi_apply_force.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from isaacgym import gymutil
import torch

from rofunc.simulator.base.base_sim import init_sim, init_env
from rofunc.simulator.base_sim import init_sim, init_env
from rofunc.utils.oslab import get_rofunc_path

# TODO: Reformat
Expand Down
2 changes: 1 addition & 1 deletion rofunc/simulator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .base import RobotSim
from .base_sim import RobotSim
from .baxter_sim import BaxterSim
from .curimini_sim import CURIminiSim
from .curi_sim import CURISim
Expand Down
3 changes: 0 additions & 3 deletions rofunc/simulator/base/__init__.py

This file was deleted.

67 changes: 0 additions & 67 deletions rofunc/simulator/base/config.yaml

This file was deleted.

24 changes: 0 additions & 24 deletions rofunc/simulator/base/test_config.ini

This file was deleted.

File renamed without changes.
2 changes: 1 addition & 1 deletion rofunc/simulator/baxter_sim.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from rofunc.simulator.base.base_sim import RobotSim
from rofunc.simulator.base_sim import RobotSim


class BaxterSim(RobotSim):
Expand Down
2 changes: 1 addition & 1 deletion rofunc/simulator/curi_sim.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from typing import List
import numpy as np
from rofunc.simulator.base.base_sim import RobotSim
from rofunc.simulator.base_sim import RobotSim
from rofunc.utils.logger.beauty_logger import beauty_print


Expand Down
2 changes: 1 addition & 1 deletion rofunc/simulator/curimini_sim.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from rofunc.simulator.base.base_sim import RobotSim
from rofunc.simulator.base_sim import RobotSim


class CURIminiSim(RobotSim):
Expand Down
96 changes: 0 additions & 96 deletions rofunc/simulator/doc/D4RL.md

This file was deleted.

43 changes: 0 additions & 43 deletions rofunc/simulator/doc/IsaacGym.md

This file was deleted.

111 changes: 0 additions & 111 deletions rofunc/simulator/doc/PlasticineLab.md

This file was deleted.

Loading

0 comments on commit 10d7067

Please sign in to comment.