decimal arithmetic fix

This commit is contained in:
Oliver 2025-04-22 21:20:40 +01:00
parent f8a0997226
commit 14717d9cd5

View file

@ -237,7 +237,7 @@ class DecimalArithmeticCurriculum(BaseCurriculum):
self._define_attributes(
RangeAttributeDefinition(
name="decimal_places",
levels=[2, 4, 7, 9],
levels=[2, 4, 6, 8],
description="Number of decimal places of the numbers in problem",
lower_field_name="min_num_decimal_places",
upper_field_name="max_num_decimal_places",
@ -247,7 +247,7 @@ class DecimalArithmeticCurriculum(BaseCurriculum):
name="precision",
field_name="precision",
description="Precision of the Decimal arithmetic operations",
levels=[5, 7, 10, 12],
levels=[6, 8, 10, 12],
),
RangeAttributeDefinition(
name="num_terms",