Added proactive dynamic capping (FCFS and Rank based). Also added a primitive readme file.
This commit is contained in:
parent
86790133e1
commit
353439464e
7 changed files with 466 additions and 0 deletions
|
@ -0,0 +1,9 @@
|
|||
package utils
|
||||
|
||||
import "strconv"
|
||||
|
||||
// Convert float64 to string
|
||||
func FloatToString(input float64) string {
|
||||
// Precision is 2, Base is 64
|
||||
return strconv.FormatFloat(input, 'f', 2, 64)
|
||||
}
|
Reference in a new issue