parent
c43c360bf4
commit
3d5d9f27cf
|
@ -295,7 +295,7 @@ cpu = resourceScoringFunction((2+1),8)
|
|||
= rawScoringFunction(37.5)
|
||||
= 3 # floor(37.5/10)
|
||||
|
||||
NodeScore = (7 * 5) + (5 * 1) + (3 * 3) / (5 + 1 + 3)
|
||||
NodeScore = ((7 * 5) + (5 * 1) + (3 * 3)) / (5 + 1 + 3)
|
||||
= 5
|
||||
```
|
||||
|
||||
|
@ -341,7 +341,7 @@ cpu = resourceScoringFunction((2+6),8)
|
|||
= rawScoringFunction(100)
|
||||
= 10
|
||||
|
||||
NodeScore = (5 * 5) + (7 * 1) + (10 * 3) / (5 + 1 + 3)
|
||||
NodeScore = ((5 * 5) + (7 * 1) + (10 * 3)) / (5 + 1 + 3)
|
||||
= 7
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue