mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-25 17:10:51 +00:00
19 lines
No EOL
490 B
Python
19 lines
No EOL
490 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 Curriculum classes
|
|
__all__ = []
|
|
for module in [
|
|
arithmetic,
|
|
algebra,
|
|
# algorithmic, arithmetic, code,
|
|
# cognition, games, geometry, graphs, logic
|
|
]:
|
|
__all__.extend([name for name in module.__all__ if name.endswith('Curriculum')]) |