瀏覽代碼

OR equation corrected

Debashis Chandra Ray 7 年之前
父節點
當前提交
83132e0010
共有 1 個文件被更改,包括 1 次插入1 次删除
  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)){
+	if (this._almostEqual(resF, 0)){ // avoid divide by zero
 		f1 = 0.99999;
 		f2 = 0.99999;
 		resF = f1 + f2 - f1*f2;