2 次代碼提交 b1f5a4427b ... b890935181

作者 SHA1 備註 提交日期
  engineerper b890935181 commmit 1 年之前
  engineerper ead7bff64e commmit 1 年之前
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      eventServer/capacity.go

+ 1 - 1
eventServer/capacity.go

@@ -58,5 +58,5 @@ func CalculateMatchScore(constant, variable Constant) float64 {
 	//widthScore := math.Abs(float64(constant.Width - variable.Width))
 	//heightScore := math.Abs(float64(constant.Height - variable.Height))
 
-	return math.Abs(variable.Calc() - constant.Calc())
+	return math.Abs(constant.Calc() - variable.Calc())
 }