Skip to content

Commit 99d5c1c

Browse files
authored
numpy selectElements
1 parent e4eb130 commit 99d5c1c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

BinaryExpression.class

-289 Bytes
Binary file not shown.

BinaryExpression.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3758,15 +3758,15 @@ public boolean typeInference(final Vector types,
37583758
return true;
37593759
}
37603760

3761-
if ("->restrict".equals(operator) && left.isSequence())
3761+
/* if ("->restrict".equals(operator) && left.isSequence())
37623762
{ JOptionPane.showInputDialog("Converting Python expression " + this);
37633763
BinaryExpression pyexpr =
37643764
(BinaryExpression) transformPythonSelectExpressions();
37653765
operator = pyexpr.operator;
37663766
left = pyexpr.left;
37673767
right = pyexpr.right;
37683768
return true;
3769-
}
3769+
} */
37703770

37713771
if (operator.equals("->exists") ||
37723772
operator.equals("->exists1") ||
@@ -5159,6 +5159,7 @@ public boolean typeCheck(final Vector types,
51595159
return true;
51605160
}
51615161

5162+
/*
51625163
if ("->restrict".equals(operator) && left.isSequence())
51635164
{ BinaryExpression pyexpr =
51645165
(BinaryExpression) transformPythonSelectExpressions();
@@ -5167,7 +5168,7 @@ public boolean typeCheck(final Vector types,
51675168
left = pyexpr.left;
51685169
right = pyexpr.right;
51695170
return true;
5170-
}
5171+
} */
51715172

51725173
if (operator.equals("->iterate") &&
51735174
iteratorVariable != null &&

0 commit comments

Comments
 (0)