Commit a39d607a by Calen Pennington

Make default course grading weights integers, to minimize floating point variation

parent 4cea094f
...@@ -256,27 +256,27 @@ class CourseDescriptor(SequenceDescriptor): ...@@ -256,27 +256,27 @@ class CourseDescriptor(SequenceDescriptor):
"min_count": 12, "min_count": 12,
"drop_count": 2, "drop_count": 2,
"short_label": "HW", "short_label": "HW",
"weight": 0.15 "weight": 15
}, },
{ {
"type": "Lab", "type": "Lab",
"min_count": 12, "min_count": 12,
"drop_count": 2, "drop_count": 2,
"weight": 0.15 "weight": 15
}, },
{ {
"type": "Midterm Exam", "type": "Midterm Exam",
"short_label": "Midterm", "short_label": "Midterm",
"min_count": 1, "min_count": 1,
"drop_count": 0, "drop_count": 0,
"weight": 0.3 "weight": 30
}, },
{ {
"type": "Final Exam", "type": "Final Exam",
"short_label": "Final", "short_label": "Final",
"min_count": 1, "min_count": 1,
"drop_count": 0, "drop_count": 0,
"weight": 0.4 "weight": 40
} }
], ],
"GRADE_CUTOFFS": { "GRADE_CUTOFFS": {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment