Browse Source

OR equation correction

Debashis Chandra Ray 7 năm trước cách đây
mục cha
commit
ababa15a2d
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      JavaScript/JavaScript_SDK/CertainTrust.js

+ 1 - 1
JavaScript/JavaScript_SDK/CertainTrust.js

@@ -277,7 +277,7 @@ CertainTrust.prototype._singleOR = function(arg) {
 
 	resF = f1 + f2 - f1*f2;
 
-	if (this._almostEqual(resF, 0)){ // Avoiding division by Zero
+	if (this._almostEqual(resF, 0)){
 		f1 = 0.99999;
 		f2 = 0.99999;
 		resF = f1 + f2 - f1*f2;