Tagged Questions
7
votes
4answers
1k views
Boolean expression order of evaluation in Java?
Suppose I have the following expression
String myString = getStringFromSomeExternalSource();
if (myString != null && myString.trim().length() != 0) {
...
}
Eclipse warns me that myString ...
2
votes
4answers
630 views
Boolean expressions optimizations in Java
Consider the following method in Java:
public static boolean expensiveComputation() {
for (int i = 0; i < Integer.MAX_VALUE; ++i);
return false;
}
And the following main method:
public static ...
1
vote
4answers
602 views
evaluate boolean expression in java generate at runtime
How to evaluate complex boolean expressions generated at runtime in a Java program?
Example:
(x and y or z) and s
with x, y, z boolean variables ...
Thanks
1
vote
6answers
204 views
Would Java interpret this boolean expression in the way I wanted it to?
This is what I want: !A || (A && B && C) Is this equivalent to the original? !A || A && B && C why or why not?
0
votes
3answers
39 views
Java: Library for expression parsing & evaluation with identifiers not known in advance
I need to evaluate a boolean expression.
The purpose is to filter a set of tagged items.
Tag can be any name (let's say, like Java identifier).
For example:
foo OR (bar AND !baz)
This would be ...
0
votes
2answers
79 views
How do I obtain the result of a boolean XPath expression (e.g. 'false')?
I would like to have Java generate a '0' in case an XPath expression evaluates to 'false'.
I have this Java code:
//Read the input XML document
private SAXBuilder parser = new SAXBuilder();
...
0
votes
1answer
499 views
Simplification of Boolean Expression in java
Is there any tool or library in java which simplifies a boolean expression formula and gives result.
when inputs are like that,
exp = (a || a' ) result = 1
exp = ( a || b ) && ( a' || b ) ...
0
votes
1answer
645 views
how to convert boolean expression to cnf file?
i need to use sat solver for checking satisfiability of boolean expressions..
I have complex boolean expression like this
is there any automatic cnf file converter so that i can give it straight ...