mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-27 17:23:19 +00:00
Refactor CaesarCipher
This commit is contained in:
parent
23aa6ca7e7
commit
5279ccf7e1
8 changed files with 513 additions and 159 deletions
|
|
@ -1,5 +1,5 @@
|
|||
from .algebra import *
|
||||
# from .algorithmic import *
|
||||
from .algorithmic import *
|
||||
from .arithmetic import *
|
||||
# from .code import *
|
||||
# from .cognition import *
|
||||
|
|
@ -11,9 +11,7 @@ from .arithmetic import *
|
|||
# Re-export all Curriculum classes
|
||||
__all__ = []
|
||||
for module in [
|
||||
arithmetic,
|
||||
algebra,
|
||||
# algorithmic, arithmetic, code,
|
||||
# cognition, games, geometry, graphs, logic
|
||||
algebra, algorithmic, arithmetic,
|
||||
# code, cognition, games, geometry, graphs, logic
|
||||
]:
|
||||
__all__.extend([name for name in module.__all__ if name.endswith('Curriculum')])
|
||||
Loading…
Add table
Add a link
Reference in a new issue