feat: Add SimpleEquationsDataset to algebra module

Developed together with Benjamin Rio (benjamrio)
This commit is contained in:
Andreas Koepf (aider) 2025-01-24 15:50:27 +01:00 committed by Andreas Koepf
parent 853777c290
commit b66b1c09b9
5 changed files with 59 additions and 23 deletions

View file

@ -2,7 +2,7 @@
Reasoning Gym - A library of procedural dataset generators for training reasoning models
"""
from . import algorithmic, arithmetic, cognition, data, games, logic
from . import algorithmic, algebra, arithmetic, cognition, data, games, logic
__version__ = "0.1.0"
__all__ = ["arithmetic", "algorithmic", "cognition", "data", "games", "logic"]
__version__ = "0.1.1"
__all__ = ["arithmetic", "algorithmic", "algebra", "cognition", "data", "games", "logic"]