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):
"min_count": 12,
"drop_count": 2,
"short_label": "HW",
"weight": 0.15
"weight": 15
},
{
"type": "Lab",
"min_count": 12,
"drop_count": 2,
"weight": 0.15
"weight": 15
},
{
"type": "Midterm Exam",
"short_label": "Midterm",
"min_count": 1,
"drop_count": 0,
"weight": 0.3
"weight": 30
},
{
"type": "Final Exam",
"short_label": "Final",
"min_count": 1,
"drop_count": 0,
"weight": 0.4
"weight": 40
}
],
"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