1
0

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