Commit ·
3e2db72
1
Parent(s): 1ac045c
Add __all__ export to task_graders.py for proper validator discovery of graders
Browse files- task_graders.py +14 -0
task_graders.py
CHANGED
|
@@ -21,6 +21,20 @@ from typing import Callable, Dict, Any
|
|
| 21 |
from models import EnergyOptimizationObservation
|
| 22 |
|
| 23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
# ============================================================================
|
| 25 |
# TASK 1: Basic RAM Reduction (Easy Level - Difficulty 1)
|
| 26 |
# ============================================================================
|
|
|
|
| 21 |
from models import EnergyOptimizationObservation
|
| 22 |
|
| 23 |
|
| 24 |
+
# Explicit exports for validator tool discovery
|
| 25 |
+
__all__ = [
|
| 26 |
+
'task_1_basic_ram_reduction_grader',
|
| 27 |
+
'task_2_energy_optimization_grader',
|
| 28 |
+
'task_3_balanced_optimization_grader',
|
| 29 |
+
'task_4_advanced_efficiency_grader',
|
| 30 |
+
'task_5_expert_optimization_grader',
|
| 31 |
+
'TASK_GRADERS',
|
| 32 |
+
'get_grader',
|
| 33 |
+
'get_all_graders',
|
| 34 |
+
'get_grader_metadata',
|
| 35 |
+
]
|
| 36 |
+
|
| 37 |
+
|
| 38 |
# ============================================================================
|
| 39 |
# TASK 1: Basic RAM Reduction (Easy Level - Difficulty 1)
|
| 40 |
# ============================================================================
|