mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
* init * fix tests * unify codeio * filtered for libraries not present in reasoning-gym * fix more bounds * puzzle24 * knight swap curriculum * fix number sorting * fix attributes * add validation of config in creation of dataset * dry run for instantiating and validating the datasets * remove unused imports * fix curriculum tests to reference newly updated attribute names
169 lines
5.1 KiB
Python
169 lines
5.1 KiB
Python
"""Tests for Rotate Matrix questions generation"""
|
|
|
|
import pytest
|
|
|
|
from reasoning_gym.algorithmic.rotate_matrix import RotateMatrixConfig, RotateMatrixCurriculum, RotateMatrixDataset
|
|
|
|
|
|
def test_rotate_matrix_config_validation():
|
|
"""Test that invalid configs raise appropriate errors"""
|
|
with pytest.raises(AssertionError):
|
|
config = RotateMatrixConfig(max_n=-1) # Negative not allowed
|
|
config.validate()
|
|
|
|
with pytest.raises(AssertionError):
|
|
config = RotateMatrixConfig(max_n=0) # Zero not allowed
|
|
config.validate()
|
|
|
|
with pytest.raises(AssertionError):
|
|
config = RotateMatrixConfig(max_rotations=-1) # Negative not allowed
|
|
config.validate()
|
|
|
|
|
|
def test_rotate_matrix_dataset_deterministic():
|
|
"""Test that dataset generates same items with same seed"""
|
|
config = RotateMatrixConfig(seed=42, size=10)
|
|
dataset1 = RotateMatrixDataset(config)
|
|
dataset2 = RotateMatrixDataset(config)
|
|
|
|
for i in range(len(dataset1)):
|
|
assert dataset1[i] == dataset2[i]
|
|
|
|
|
|
def test_rotate_matrix_dataset_items():
|
|
"""Test basic properties of generated items"""
|
|
config = RotateMatrixConfig(max_n=7, size=10, seed=42)
|
|
dataset = RotateMatrixDataset(config)
|
|
|
|
for i in range(len(dataset)):
|
|
item = dataset[i]
|
|
# Check item structure
|
|
assert isinstance(item, dict)
|
|
assert "question" in item
|
|
assert "answer" in item
|
|
assert "metadata" in item
|
|
|
|
# Check metadata
|
|
assert "matrix" in item["metadata"]
|
|
assert "solution" in item["metadata"]
|
|
|
|
matrix = item["metadata"]["matrix"]
|
|
solution = item["metadata"]["solution"]
|
|
num_rotations = item["metadata"]["num_rotations"]
|
|
|
|
# Verify matrix dimensions
|
|
assert len(matrix) <= config.max_n
|
|
assert all(len(row) <= config.max_n for row in matrix)
|
|
assert len(solution) <= config.max_n
|
|
assert all(len(row) <= config.max_n for row in solution)
|
|
assert set(e for row in matrix for e in row) == set(e for row in solution for e in row)
|
|
assert num_rotations <= config.max_rotations
|
|
|
|
|
|
def test_rotate_matrix_dataset_iteration():
|
|
"""Test that iteration respects dataset size"""
|
|
config = RotateMatrixConfig(size=5, seed=42)
|
|
dataset = RotateMatrixDataset(config)
|
|
|
|
items = list(dataset)
|
|
assert len(items) == config.size
|
|
|
|
# Test multiple iterations yield same items
|
|
assert items == list(dataset)
|
|
|
|
|
|
def test_rotate_matrix_answer():
|
|
"""Test the _get_rotated method"""
|
|
config = RotateMatrixConfig(seed=42)
|
|
dataset = RotateMatrixDataset(config)
|
|
|
|
# n = 1, num_rotations = 1
|
|
matrix = [[8]]
|
|
expected = [[8]]
|
|
assert dataset._get_rotated(matrix, num_rotations=1) == expected
|
|
|
|
# n = 3, num_rotations = 0 (no rotation)
|
|
matrix = [
|
|
[0, 1, 2],
|
|
[3, 4, 5],
|
|
[6, 7, 8],
|
|
]
|
|
expected = [
|
|
[0, 1, 2],
|
|
[3, 4, 5],
|
|
[6, 7, 8],
|
|
]
|
|
assert dataset._get_rotated(matrix, num_rotations=0) == expected
|
|
|
|
# n = 3, num_rotations = 1 (90 degrees clockwise)
|
|
matrix = [
|
|
[0, 1, 2],
|
|
[3, 4, 5],
|
|
[6, 7, 8],
|
|
]
|
|
expected = [
|
|
[6, 3, 0],
|
|
[7, 4, 1],
|
|
[8, 5, 2],
|
|
]
|
|
assert dataset._get_rotated(matrix, num_rotations=1) == expected
|
|
|
|
# n = 3, num_rotations = 2 (180 degrees clockwise)
|
|
matrix = [
|
|
[0, 1, 2],
|
|
[3, 4, 5],
|
|
[6, 7, 8],
|
|
]
|
|
expected = [
|
|
[8, 7, 6],
|
|
[5, 4, 3],
|
|
[2, 1, 0],
|
|
]
|
|
assert dataset._get_rotated(matrix, num_rotations=2) == expected
|
|
|
|
# n = 3, num_rotations = 3 (270 degrees clockwise)
|
|
matrix = [
|
|
[0, 1, 2],
|
|
[3, 4, 5],
|
|
[6, 7, 8],
|
|
]
|
|
expected = [[2, 5, 8], [1, 4, 7], [0, 3, 6]]
|
|
assert dataset._get_rotated(matrix, num_rotations=3) == expected
|
|
|
|
# n = 4, num_rotations = 4 (360 degrees clockwise == 0 degrees)
|
|
matrix = [
|
|
[0, 1, 2],
|
|
[3, 4, 5],
|
|
[6, 7, 8],
|
|
]
|
|
expected = [
|
|
[0, 1, 2],
|
|
[3, 4, 5],
|
|
[6, 7, 8],
|
|
]
|
|
assert dataset._get_rotated(matrix, num_rotations=4) == expected
|
|
|
|
|
|
def test_rotate_matrix_curriculum():
|
|
curriculum = RotateMatrixCurriculum()
|
|
|
|
base_value = {"size": 150, "seed": 1}
|
|
|
|
base_cfg: RotateMatrixConfig = curriculum.generate_configuration(base_value)
|
|
assert base_cfg.seed == 1
|
|
assert base_cfg.size == 150
|
|
assert base_cfg.min_n == 10 and base_cfg.max_n == 10
|
|
assert base_cfg.min_rotations == 1 and base_cfg.max_rotations == 5
|
|
|
|
# test incrementing attribute levels
|
|
curriculum.increment_attr_level("n")
|
|
curriculum.increment_attr_level("num_rotations")
|
|
increased_cfg = curriculum.generate_configuration(base_value)
|
|
assert increased_cfg.min_n == 10 and increased_cfg.max_n == 25
|
|
assert increased_cfg.min_rotations == 1 and increased_cfg.max_rotations == 10
|
|
|
|
# test decrementing attribute level for n again
|
|
curriculum.decrement_attr_level("n")
|
|
partially_decreased_cfg = curriculum.generate_configuration(base_value)
|
|
assert partially_decreased_cfg.min_n == 10 and partially_decreased_cfg.max_n == 10
|
|
assert partially_decreased_cfg.min_rotations == 1 and partially_decreased_cfg.max_rotations == 10
|