try shorter decay rate

This commit is contained in:
Michael Q Larson
2015-03-21 00:47:21 -07:00
parent bc69233226
commit 9c5d9eea23

View File

@ -19,7 +19,7 @@ function hotRank(timeValue, rank) {
*/
var hotness;
var z = Math.log(rank) / Math.log(10);
hotness = z + (timeValue / 1728000000);
hotness = z + (timeValue / 115200000);
return hotness;
}