reasoning-gym/reasoning_gym/exercises/__init__.py
2025-02-09 08:44:54 +00:00

17 lines
No EOL
461 B
Python

from .algebra import *
from .algorithmic import *
from .arithmetic import *
# from .code import *
# from .cognition import *
# from .games import *
# from .geometry import *
# from .graphs import *
# from .logic import *
# Re-export all Dataset classes
__all__ = []
for module in [
algebra, algorithmic, arithmetic,
# code, cognition, games, geometry, graphs, logic
]:
__all__.extend([name for name in module.__all__ if name.endswith('Exercise')])