Commit a28936f1 authored by Adam Blank's avatar Adam Blank
Browse files

Updates

parent 20d955aa
No related merge requests found
Pipeline #19471 failed with stage
Showing with 4 additions and 3 deletions
+4 -3
......@@ -45,7 +45,7 @@
* Students can get more points for building faster allocators, up to
* this point (in ops / sec)
*/
#define MAX_SPEED 42000E3
#define MAX_SPEED 40000E3
/*
* Students get 0 points for this allocation fraction or below
......
......@@ -429,8 +429,9 @@ int main(int argc, char **argv)
p2*100,
perfindex);
const double BUMP = 30;
double perfscore = perfindex - BUMP;
const double BUMP = 40;
const double SCALE = 1;
double perfscore = perfindex - BUMP + SCALE;
if (perfscore <= 0) {
perfscore = 0;
}
......
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