We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 934f5d5 commit a1dce82Copy full SHA for a1dce82
java/toolgood.algorithm/src/main/java/toolgood/algorithm/internals/MathVisitor.java
@@ -365,17 +365,6 @@ public Operand visitJudge_fun(final Judge_funContext context) {
365
return Operand.Create(r != 0);
366
}
367
368
- private int Compare(final double t1, final double t2) {
369
-
370
- final double b = round(t1 - t2, 12);
371
- if (b == 0) {
372
- return 0;
373
- } else if (b > 0) {
374
- return 1;
375
- }
376
- return -1;
377
378
379
public Operand visitAndOr_fun(final AndOr_funContext context) {
380
// 程序 && and || or 与 excel的 AND(x,y) OR(x,y) 有区别
381
// 在excel内 AND(x,y) OR(x,y) 先报错,
0 commit comments