add path-star task environment (#499)

* draft path-star task

* typos

* fix for paper spec

* rm teacherless mode

* add imports

* fixes

* validation tweak

* test tweak
This commit is contained in:
Oliver Stanley 2026-03-28 00:07:49 +00:00 committed by GitHub
parent d26663fb3f
commit 21e6d2a9a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 360 additions and 0 deletions

View file

@ -1,6 +1,7 @@
from .course_schedule import CourseScheduleConfig, CourseScheduleCurriculum, CourseScheduleDataset
from .family_relationships import FamilyRelationshipsConfig, FamilyRelationshipsCurriculum, FamilyRelationshipsDataset
from .largest_island import LargestIslandConfig, LargestIslandCurriculum, LargestIslandDataset
from .path_star import PathStarConfig, PathStarCurriculum, PathStarDataset
from .quantum_lock import QuantumLockConfig, QuantumLockCurriculum, QuantumLockDataset
from .shortest_path import ShortestPathConfig, ShortestPathCurriculum, ShortestPathDataset
@ -14,6 +15,9 @@ __all__ = [
"LargestIslandDataset",
"LargestIslandConfig",
"LargestIslandCurriculum",
"PathStarConfig",
"PathStarDataset",
"PathStarCurriculum",
"CourseScheduleDataset",
"CourseScheduleConfig",
"CourseScheduleCurriculum",