Return the directory that stores converted assets (same as evaluation path).
(self, evaluation_path: str)
| 83 | return dimension_categories[dimension] |
| 84 | |
| 85 | def _get_mbench_dir(self, evaluation_path: str) -> Path: |
| 86 | """Return the directory that stores converted assets (same as evaluation path).""" |
| 87 | mbench_dir = Path(evaluation_path) |
| 88 | mbench_dir.mkdir(parents=True, exist_ok=True) |
| 89 | return mbench_dir |
| 90 | |
| 91 | def _motion_candidates(self, evaluation_path: Path, motion_id: int) -> List[Path]: |
| 92 | """Return ordered candidate motion file paths to probe.""" |
no outgoing calls
no test coverage detected