mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-23 16:55:05 +00:00
Refactor PolynomialEquations
This commit is contained in:
parent
9a5841c6c2
commit
e320ba66dd
9 changed files with 919 additions and 232 deletions
|
|
@ -1,4 +1,4 @@
|
|||
# from .algebra import *
|
||||
from .algebra import *
|
||||
# from .algorithmic import *
|
||||
from .arithmetic import *
|
||||
# from .code import *
|
||||
|
|
@ -11,8 +11,9 @@ from .arithmetic import *
|
|||
# Re-export all Curriculum classes
|
||||
__all__ = []
|
||||
for module in [
|
||||
arithmetic
|
||||
# algebra, algorithmic, arithmetic, code,
|
||||
arithmetic,
|
||||
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