-
Notifications
You must be signed in to change notification settings - Fork 9
/
student.cpp
624 lines (500 loc) · 21.4 KB
/
student.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
#include "student.h"
extern std::map<GRADEABLE_ENUM,float> OVERALL_FAIL_CUTOFFS;
const std::string GradeColor(const std::string &grade);
std::vector<float> GLOBAL_earned_late_days;
// =============================================================================================
// =============================================================================================
// CONSTRUCTOR
Student::Student() {
// personal data
// (defaults to empty string)
lefty = false;
// registration status
section = "null";
audit = false;
withdraw = false;
independentstudy = false;
default_allowed_late_days = 0;
current_allowed_late_days = 0;
polls_correct = 0;
polls_incorrect = 0;
// grade data
for (unsigned int i = 0; i < ALL_GRADEABLES.size(); i++) {
GRADEABLE_ENUM g = ALL_GRADEABLES[i];
all_item_grades[g] = std::vector<ItemGrade>(GRADEABLES[g].getCount(),ItemGrade(0));
}
earn_late_days_from_polls = true; //TODO: Change this to false, make customization.json option
rotating_section = -1;
zones = std::vector<std::string>(GRADEABLES[GRADEABLE_ENUM::TEST].getCount(),"");
academic_sanction_penalty = 0;
cached_hw = -1;
// other grade-like data
numeric_id = "";
academic_integrity_form = false;
participation = 0;
understanding = 0;
// info about exam assignments
// (defaults to empty string)
// per student notes
// (defaults to empty string)
}
// lookup a student by username
Student* GetStudent(const std::vector<Student*> &students, const std::string& username) {
for (unsigned int i = 0; i < students.size(); i++) {
if (students[i]->getUserName() == username) return students[i];
}
return NULL;
}
// =============================================================================================
// =============================================================================================
// accessor & modifier for grade data
const ItemGrade& Student::getGradeableItemGrade(GRADEABLE_ENUM g, int i) const {
static ItemGrade emptyItemGrade(0);
//std::cout << "i " << i << " count " << GRADEABLES[g].getCount() << std::endl;
if (i >= GRADEABLES[g].getCount()) {
return emptyItemGrade;
}
assert (i >= 0 && i < GRADEABLES[g].getCount());
std::map<GRADEABLE_ENUM,std::vector<ItemGrade> >::const_iterator itr = all_item_grades.find(g);
assert (itr != all_item_grades.end());
assert (int(itr->second.size()) > i);
return itr->second[i]; //return value;
}
void Student::setGradeableItemGrade(GRADEABLE_ENUM g, int i, float value,
int late_days_used, const std::string ¬e, const std::string &status) {
assert (i >= 0 && i < GRADEABLES[g].getCount());
std::map<GRADEABLE_ENUM,std::vector<ItemGrade> >::iterator itr = all_item_grades.find(g);
assert (itr != all_item_grades.end());
assert (int(itr->second.size()) > i);
itr->second[i] = ItemGrade(value,late_days_used,note,status);
}
void Student::setGradeableItemGrade_AcademicIntegrity(GRADEABLE_ENUM g, int i, float value, bool academic_integrity,
int late_days_used, const std::string ¬e, const std::string &status) {
assert (i >= 0 && i < GRADEABLES[g].getCount());
std::map<GRADEABLE_ENUM,std::vector<ItemGrade> >::iterator itr = all_item_grades.find(g);
assert (itr != all_item_grades.end());
assert (int(itr->second.size()) > i);
std::string temp = "";
itr->second[i] = ItemGrade(value,late_days_used,note,status,temp,academic_integrity);
}
void Student::setGradeableItemGrade_border(GRADEABLE_ENUM g, int i, float value, const std::string &event,
int late_days_used, const std::string ¬e, const std::string &status, int exceptions, const std::string &reason) {
assert (i >= 0 && i < GRADEABLES[g].getCount());
std::map<GRADEABLE_ENUM,std::vector<ItemGrade> >::iterator itr = all_item_grades.find(g);
assert (itr != all_item_grades.end());
assert (int(itr->second.size()) > i);
bool academic_integrity = false;
itr->second[i] = ItemGrade(value,late_days_used,note,status,event,academic_integrity,exceptions,reason);
}
// =============================================================================================
// GRADER CALCULATION HELPER FUNCTIONS
class score_object {
public:
score_object(float s,float m,float p,float sm):score(s),max(m),percentage(p),scale_max(sm){}
float score;
float max;
float percentage;
float scale_max;
};
bool operator<(const score_object &a, const score_object &b) {
float s1 = a.score;
float m1 = a.max;
float p1 = a.percentage;
float sm1 = a.scale_max;
float my_max1 = std::max(m1,sm1);
float s2 = b.score;
float m2 = b.max;
float p2 = b.percentage;
float sm2 = b.scale_max;
float my_max2 = std::max(m2,sm2);
// Grades should be compared by the normalized grade only, not normalized grade multiplied by percentages. Otherwise, a grade of 90 for the gradeable
// with percentage 0.1 will always be considered lower than a grade of 60 for the gradeable with percentage 0.2, since 0.1 * 0.9 < 0.2 * 0.6
bool result;
// If any of the two scores has a max of 0 (but not both of them), it means it is extra credit, so it will always be considered larger, so that we do not
// remove extra credit assignment scores under the "drop the lowest" rule
if (((m1 == 0.0) && (m2 != 0.0)) || ((m1 != 0.0) && (m2 == 0.0))) {
result = (m1 == 0.0) ? false : true;
}
else if (std::abs(s1 / my_max1 - s2 / my_max2) > 0.001) {
result = (s1 / my_max1 < s2 / my_max2);
}
// otherwise, order by percentage decreasing, so that if two scores are equal, the gradable with the higher percentage is considered smaller.
// For example, for p1==0.1, s1/my_max1 == 0.9 and p2==0.2, s2/my_max2 == 0.9, the operator would return false.
else result = (p1 > p2);
return result;
}
float Student::GradeablePercent(GRADEABLE_ENUM g) const {
if (GRADEABLES[g].getCount() == 0) return 0;
assert (GRADEABLES[g].getPercent() >= 0);
// special rules for tests
if (g == GRADEABLE_ENUM::TEST && TEST_IMPROVEMENT_AVERAGING_ADJUSTMENT) {
return adjusted_test_pct();
}
// normalize & drop lowest #
if (g == GRADEABLE_ENUM::QUIZ && QUIZ_NORMALIZE_AND_DROP > 0) {
return quiz_normalize_and_drop(QUIZ_NORMALIZE_AND_DROP);
}
if (g == GRADEABLE_ENUM::TEST && LOWEST_TEST_COUNTS_HALF) {
return lowest_test_counts_half_pct();
}
//Do one pass to get the defined item scores
float nonzero_sum = 0;
int nonzero_count = 0;
int non_extra_credit_count = 0;
for (int i = 0; i < GRADEABLES[g].getCount(); i++) {
//float s = getGradeableItemGrade(g,i).getValue();
std::string id = GRADEABLES[g].getID(i);
if(!id.empty()){
if (GRADEABLES[g].getItemMaximum(id) > 0) {
non_extra_credit_count++;
}
float m = std::max(GRADEABLES[g].getItemMaximum(id),GRADEABLES[g].getScaleMaximum(id));
if(m > 0){
nonzero_sum += m;
nonzero_count++;
}
}
}
//If there are no gradeables with a max >0, bucket is 0% anyway
if(nonzero_count == 0){
return 0.0;
}
// collect the scores in a vector
std::vector<score_object> scores;
for (int i = 0; i < GRADEABLES[g].getCount(); i++) {
float s = getGradeableItemGrade(g,i).getValue();
std::string id = GRADEABLES[g].getID(i);
float m = nonzero_sum/nonzero_count;
//if(!id.empty() && GRADEABLES[g].isReleased(id)){
if(!id.empty()){
m = GRADEABLES[g].getItemMaximum(id);
// std::cout << "m" << m << std::endl;
}
float p = GRADEABLES[g].getItemPercentage(id);
float sm = GRADEABLES[g].getScaleMaximum(id);
scores.push_back(score_object(s,m,p,sm));
}
// sort the scores (smallest first)
std::sort(scores.begin(),scores.end());
//to check that the number of "drop the lowest" is less than the number of non extra credit gradeables,
// i.e., it is not allowed to drop all non extra credit gradeables
assert (GRADEABLES[g].getRemoveLowest() >= 0 && (
(non_extra_credit_count > 0 && GRADEABLES[g].getRemoveLowest() < non_extra_credit_count)) ||
(GRADEABLES[g].getRemoveLowest() == 0));
// sum the remaining (higher) scores
float sum_max = 0;
for (int i = GRADEABLES[g].getRemoveLowest(); i < GRADEABLES[g].getCount(); i++) {
float m = scores[i].max;
sum_max += m;
}
float sum_scaled_max = 0;
for (int i = GRADEABLES[g].getRemoveLowest(); i < GRADEABLES[g].getCount(); i++) {
if(scores[i].max > 0){
continue;
}
float m = scores[i].scale_max;
sum_scaled_max += m;
}
// sum the remaining (higher) scores
float sum = 0;
// to also sum the remaining (higher) percentages
float sum_percentage = 0;
for (int i = GRADEABLES[g].getRemoveLowest(); i < GRADEABLES[g].getCount(); i++) {
float s = scores[i].score;
float m = scores[i].max;
float p = scores[i].percentage;
float sm = scores[i].scale_max;
float my_max = std::max(m,sm);
if (p < 0) {
if (sum_max > 0) {
p = std::max(m,sm) / sum_max;
if(GRADEABLES[g].hasSortedWeight()){
p = GRADEABLES[g].getSortedWeight(i);
}
} else {
// pure extra credit category
p = std::max(m,sm) / sum_scaled_max;
}
}
if (my_max > 0) {
sum += p * s / my_max;
}
// to add percentages only for non-extra credit gradeables
if (m != 0.0) {
sum_percentage += p;
}
}
const float tolerance = 0.000001;
assert(sum_percentage <= 1.0 + tolerance);
if (sum_max == 0) { // pure extra credit category
sum_percentage = 1.0;
}
//float percentage = GRADEABLES[g].hasSortedWeight() ? sum : GRADEABLES[g].getPercent() * sum;
float percentage = GRADEABLES[g].hasSortedWeight() ? sum : GRADEABLES[g].getPercent() * sum / sum_percentage;
// std::cout << "sum: " << sum << "; GRADEABLES[g].getPercent() * sum / sum_percentage: " << (GRADEABLES[g].getPercent() * sum / sum_percentage) << "; sum_percentage: " << sum_percentage << std::endl;
float percentage_upper_clamp = GRADEABLES[g].getBucketPercentageUpperClamp();
// 1 line added by Konstantin Kuzmin 20230823T181400
// std::cout << "percentage: " << percentage << "; percentage_upper_clamp: " << (percentage_upper_clamp) << "; GRADEABLES[g].hasSortedWeight():" << GRADEABLES[g].hasSortedWeight() << std::endl;
if (percentage_upper_clamp > 0) {
percentage = std::min(percentage, percentage_upper_clamp);
}
return 100 * percentage;
}
float Student::adjusted_test(int i) const {
assert (i >= 0 && i < GRADEABLES[GRADEABLE_ENUM::TEST].getCount());
float a = getGradeableItemGrade(GRADEABLE_ENUM::TEST,i).getValue();
float b;
if (i+1 < GRADEABLES[GRADEABLE_ENUM::TEST].getCount()) {
b = getGradeableItemGrade(GRADEABLE_ENUM::TEST,i+1).getValue();
} else {
assert (GRADEABLES[GRADEABLE_ENUM::EXAM].getCount() == 1);
b = getGradeableItemGrade(GRADEABLE_ENUM::EXAM,0).getValue();
// HACK need to scale the final exam!
b *= 0.6667;
}
if (a > b) return a;
return (a+b) * 0.5;
}
float Student::adjusted_test_pct() const {
float sum = 0;
for (int i = 0; i < GRADEABLES[GRADEABLE_ENUM::TEST].getCount(); i++) {
sum += adjusted_test(i);
}
float answer = 100 * GRADEABLES[GRADEABLE_ENUM::TEST].getPercent() * sum / float (GRADEABLES[GRADEABLE_ENUM::TEST].getMaximum());
return answer;
}
float Student::quiz_normalize_and_drop(int num) const {
assert (num > 0);
// collect the normalized quiz scores in a vector
std::vector<float> scores;
for (int i = 0; i < GRADEABLES[GRADEABLE_ENUM::QUIZ].getCount(); i++) {
// the max for this quiz
float p = PERFECT_STUDENT_POINTER->getGradeableItemGrade(GRADEABLE_ENUM::QUIZ,i).getValue();
// this students score
float v = getGradeableItemGrade(GRADEABLE_ENUM::QUIZ,i).getValue();
scores.push_back(v/p);
}
assert (scores.size() > std::size_t(num)); //Relies on the assert(num > 0) at the top of this function.
// sort the scores
sort(scores.begin(),scores.end());
// sum up all but the lowest "num" scores
float sum = 0;
for (std::size_t i = num; i < scores.size(); i++) {
sum += scores[i];
}
// the overall percent of the final grade for quizzes
return 100 * GRADEABLES[GRADEABLE_ENUM::QUIZ].getPercent() * sum / float (scores.size()-num);
}
float Student::lowest_test_counts_half_pct() const {
int num_tests = GRADEABLES[GRADEABLE_ENUM::TEST].getCount();
assert (num_tests > 0);
// first, collect & sort the scores
std::vector<float> scores;
for (int i = 0; i < num_tests; i++) {
scores.push_back(getGradeableItemGrade(GRADEABLE_ENUM::TEST,i).getValue());
}
std::sort(scores.begin(),scores.end());
// then sum the scores
float sum = 0.5 * scores[0];
float weight_total = 0.5;
for (int i = 1; i < num_tests; i++) {
sum += scores[i];
weight_total += 1.0;
}
// renormalize!
sum *= float(num_tests) / weight_total;
// scale to percent;
return 100 * GRADEABLES[GRADEABLE_ENUM::TEST].getPercent() * sum / float (GRADEABLES[GRADEABLE_ENUM::TEST].getMaximum());
}
// =============================================================================================
// =============================================================================================
int Student::getAllowedLateDays(int which_lecture) const {
if (getSection() == "null") return 0;
//int answer = 2;
int answer = default_allowed_late_days;
// average 4 questions per lecture 2-28 ~= 112 clicker questions
// 30 questions => 3 late days
// 60 questions => 4 late days
// 90 qustions => 5 late days
float total = 0;
//TODO: Condition may need to change to use a global depending on how we do it in customization.json
if(earn_late_days_from_polls){
total = getPollPoints();
}
for (unsigned int i = 0; i < GLOBAL_earned_late_days.size(); i++) {
if (total >= GLOBAL_earned_late_days[i]) {
answer++;
}
}
for (unsigned int i = 0; i < bonus_late_days_which_lecture.size(); i++) {
if (bonus_late_days_which_lecture[i] <= which_lecture) {
answer++;
}
}
return std::max(current_allowed_late_days,answer);
}
// get the total used late days
int Student::getUsedLateDays() const {
int answer = 0;
for (std::map<GRADEABLE_ENUM,std::vector<ItemGrade> >::const_iterator itr = all_item_grades.begin(); itr != all_item_grades.end(); itr++) {
for (std::size_t i = 0; i < itr->second.size(); i++) {
answer += itr->second[i].getLateDaysUsed();
}
}
return answer;
}
int Student::getLateDayExceptions() const {
int answer = 0;
for (std::map<GRADEABLE_ENUM,std::vector<ItemGrade> >::const_iterator itr = all_item_grades.begin(); itr != all_item_grades.end(); itr++) {
for (std::size_t i = 0; i < itr->second.size(); i++) {
answer += itr->second[i].getLateDayExceptions();
}
}
return answer;
}
std::vector<std::tuple<ItemGrade,std::tuple<GRADEABLE_ENUM,int> > > Student::getItemsWithExceptions() const {
std::vector<std::tuple<ItemGrade,std::tuple<GRADEABLE_ENUM,int> > > result;
for (std::map<GRADEABLE_ENUM,std::vector<ItemGrade> >::const_iterator itr = all_item_grades.begin(); itr != all_item_grades.end(); itr++) {
for (std::size_t i = 0; i < itr->second.size(); i++) {
if (itr->second[i].getLateDayExceptions()>0) {
std::tuple<GRADEABLE_ENUM,int> indexes{itr->first,i};
std::tuple<ItemGrade,std::tuple<GRADEABLE_ENUM,int> > itemInfo{itr->second[i],indexes};
result.push_back(itemInfo);
}
}
}
return result;
}
// =============================================================================================
float Student::overall_b4_academic_sanction() const {
float answer = 0;
for (unsigned int i = 0; i < ALL_GRADEABLES.size(); i++) {
GRADEABLE_ENUM g = ALL_GRADEABLES[i];
answer += GradeablePercent(g);
}
return answer;
}
std::string Student::grade(bool flag_b4_academic_sanction, Student *lowest_d) const {
if (section == "null") return "";
if (!flag_b4_academic_sanction && manual_grade != "") return manual_grade;
float over = overall();
if (flag_b4_academic_sanction) {
over = overall_b4_academic_sanction();
}
// some criteria that might indicate automatic failure of course
// (instructor can override with manual grade)
// 14 lines commented out by Konstantin Kuzmin to prevent Rainbow Grades from auto failing anyone 20230505T090900
//Old (pre Su2019) DS method
/*int failed_lab = (GradeablePercent(GRADEABLE_ENUM::LAB) < 1.01 * lowest_d->GradeablePercent(GRADEABLE_ENUM::LAB) ) ? true : false;
int failed_hw = (GradeablePercent(GRADEABLE_ENUM::HOMEWORK) < 0.95 * lowest_d->GradeablePercent(GRADEABLE_ENUM::HOMEWORK) ) ? true : false;
int failed_testA = (GradeablePercent(GRADEABLE_ENUM::TEST) < 0.90 * lowest_d->GradeablePercent(GRADEABLE_ENUM::TEST) ) ? true : false;
int failed_testB = (GradeablePercent(GRADEABLE_ENUM::EXAM) < 0.90 * lowest_d->GradeablePercent(GRADEABLE_ENUM::EXAM) ) ? true : false;
int failed_testC = (GradeablePercent(GRADEABLE_ENUM::TEST) + GradeablePercent(GRADEABLE_ENUM::EXAM) <
0.90 * lowest_d->GradeablePercent(GRADEABLE_ENUM::TEST) + lowest_d->GradeablePercent(GRADEABLE_ENUM::EXAM) ) ? true : false;
if (failed_lab || failed_hw ||
( failed_testA +
failed_testB +
failed_testC ) > 1) {
std::cout << "SHOULD AUTO FAIL";
((Student*)this)->other_note += "SHOULD AUTO FAIL";
return "F";
}*/
/*
for(std::map<GRADEABLE_ENUM,float>::const_iterator it=OVERALL_FAIL_CUTOFFS.begin(); it != OVERALL_FAIL_CUTOFFS.end(); it++){
if(GradeablePercent(it->first)/100.0 < GRADEABLES[it->first].getPercent() * it->second){
std::cerr << "Failing student " << this->getUserName() << " due to low " << gradeable_to_string(it->first)
<< " grade of " << GradeablePercent(it->first)/100.0 << " < "
<< GRADEABLES[it->first].getPercent() * it->second << " max is "
<< GRADEABLES[it->first].getPercent() << std::endl;
return "F";
}
}
*/
// otherwise apply the cutoffs
if (over >= CUTOFFS["A"]) return "A";
if (over >= CUTOFFS["A-"]) return "A-";
if (over >= CUTOFFS["B+"]) return "B+";
if (over >= CUTOFFS["B"]) return "B";
if (over >= CUTOFFS["B-"]) return "B-";
if (over >= CUTOFFS["C+"]) return "C+";
if (over >= CUTOFFS["C"]) return "C";
if (over >= CUTOFFS["C-"]) return "C-";
if (over >= CUTOFFS["D+"]) return "D+";
if (over >= CUTOFFS["D"]) return "D";
else return "F";
return "?";
}
void Student::academic_sanction(const std::string &gradeable, float penalty) {
// if the penalty is "a whole or partial letter grade"....
float average_letter_grade = (CUTOFFS["A"]-CUTOFFS["B"] +
CUTOFFS["B"]-CUTOFFS["C"] +
CUTOFFS["C"]-CUTOFFS["D"]) / 3.0;
GRADEABLE_ENUM g;
int item;
LookupGradeable(gradeable,g,item);
if (!GRADEABLES[g].hasCorrespondence(gradeable)) {
std::cerr << "WARNING -- NO GRADEABLE TO ACADEMIC SANCTION" << std::endl;
} else {
int which = GRADEABLES[g].getCorrespondence(gradeable).first;
if (!(getGradeableItemGrade(g,which).getValue() > 0)) {
std::cerr << "WARNING: the grade for this " <<gradeable_to_string(g)<<" is already 0, academic sanction penalty error?" << std::endl;
}
setGradeableItemGrade_AcademicIntegrity(g,which,0, true);
}
// the penalty is positive
// but it will be multiplied by a negative and added to the total;
assert (penalty >= 0);
academic_sanction_penalty += -0.0000002;
academic_sanction_penalty += -average_letter_grade * penalty;
std::stringstream foo;
foo << std::setprecision(2) << std::fixed << penalty;
addWarning("[PLAGIARISM " + gradeable + " " + foo.str() + "]<br>");
}
void Student::ManualGrade(const std::string &grade, const std::string &message) {
assert (grade == "A" ||
grade == "A-" ||
grade == "B+" ||
grade == "B" ||
grade == "B-" ||
grade == "C+" ||
grade == "C" ||
grade == "C-" ||
grade == "D+" ||
grade == "D" ||
grade == "F");
manual_grade = grade;
other_note += "awarding a " + grade + " because " + message;
}
void Student::outputgrade(std::ostream &ostr,bool flag_b4_academic_sanction,Student *lowest_d) const {
std::string g = grade(flag_b4_academic_sanction,lowest_d);
std::string color = GradeColor(g);
if (academic_sanction_penalty < -0.01) {
ostr << "<td align=center bgcolor=" << color << ">" << g << " @</td>";
} else {
ostr << "<td align=center bgcolor=" << color << ">" << g << "</td>";
}
}
// =============================================================================================
// zones for exams...
//const std::string& Student::getZone(int i) const {
std::string Student::getZone(int i) const {
assert (i >= 0 && i < GRADEABLES[GRADEABLE_ENUM::TEST].getCount()); return zones[i];
}
int Student::getPollsCorrect() const{
return polls_correct;
}
int Student::getPollsIncorrect() const{
return polls_incorrect;
}
//TODO: In the future if we allow custom correct/incorrect weights, this calculation will need changing
float Student::getPollPoints() const {
return float(getPollsCorrect()) + 0.5 * float(getPollsIncorrect());
}
// =============================================================================================
void Student::incrementPollsCorrect(unsigned int amount=1){
polls_correct += amount;
}
void Student::incrementPollsIncorrect(unsigned int amount=1){
polls_incorrect += amount;
}
// =============================================================================================