Added proactive dynamic capping (FCFS and Rank based). Also added a primitive readme file.

This commit is contained in:
Pradyumna Kaushik 2016-10-31 21:38:40 -04:00 committed by Renan DelValle
parent 86790133e1
commit 353439464e
7 changed files with 466 additions and 0 deletions

View file

@ -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)
}