Tagged Questions
The boolean-expression tag has no wiki summary.
33
votes
6answers
11k views
Python `if x is not None` or `if not x is None`?
I've always thought of the if not x is None version to be more clear, but Google's style guide implies (based on this excerpt) that they use if x is not None. Is there any minor performance difference ...
13
votes
11answers
2k views
In C++, why does true && true || false && false == true?
I'd like to know if someone knows the way a compiler would interpret the following code:
#include <iostream>
using namespace std;
int main() {
cout << (true && true || false ...
10
votes
5answers
460 views
XOR of three values
What is the simplest way to do a three-way exclusive OR?
In other words, I have three values, and I want a statement that evaluates to true IFF only one of the three values is true.
So far, this is ...
9
votes
4answers
631 views
Why does Perl use the empty string to represent the boolean false value?
When evaluating an expression in a scalar (boolean) context, Perl uses the explicit value 1 as a result if the expression evaluates to true and the empty string if the expression evaluates to false.
...
9
votes
4answers
408 views
Python boolean expression and or
In python if you write something like
foo==bar and spam or eggs
python appears to return spam if the boolean statement is true and eggs otherwise. Could someone explain this behaviour? Why is the ...
8
votes
6answers
338 views
Is (x == x + 1) always return false for integer x?
I saw this in an interview preparation book - Algorithms for Interviews. It dd not say what the answer was. Based on my knowledge it does return false. Am I missing something ?
7
votes
10answers
463 views
How do I translate a simple boolean statement to SQL?
I have the following database table with information about people, diseases, and drugs:
PERSON_T DISEASE_T DRUG_T
========= ========== ========
...
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 ...
6
votes
5answers
275 views
When to prefer `and` over `andalso` in guard tests
I am curious why the comma ‹,› is a shortcut for and and not andalso in guard tests.
Since I'd call myself a “C native” I fail to see any shortcomings of short-circuit boolean evaluation.
I compiled ...
5
votes
4answers
124 views
How do i say is not, is not
i don't want to say:
(trsaz != v1) && (trsaz != v2) && ...
i want something like:
trsaz != (v1, v4, v7, v11)
Is this possible or is there also something else besides !=.
5
votes
8answers
176 views
Not able to figure out the logical error in C program
A program that prints its input one word per line.
int main() {
int c;
while ((c=getchar()) != EOF) {
if (c== ' ' || c== '\n' ||c == '\t')
putchar('\n');
...
5
votes
7answers
317 views
Python: multiple possible values for function arguments
I've inherited some Python code that looks like this:
name = 'London'
code = '0.1'
notes = 'Capital of England'
ev = model.City(key=key, code=code, name=name or code, notes=notes)
In the spirit of ...
5
votes
5answers
236 views
Difference between these two statements? - C++
I'm a programming student trying to better understand pointers, one of the things I learned is that you can set a pointer to NULL. My question is, what's the difference between these two statements? ...
4
votes
2answers
83 views
Unfamiliar notation found in a computer science book [closed]
I'm reading through this computer science book and throughout the book I see a number of things written like so:
and then there's this:
and then this:
What kind of notation is the "Boolean ...
4
votes
6answers
2k views
Is this the proper way to do boolean test in SQL?
Assume active is a "boolean field" (tiny int, with 0 or 1)
# Find all active users
select * from users where active
# Find all inactive users
select * from users where NOT active
In words, can ...
4
votes
2answers
472 views
Tool to refactor boolean expressions
I'm looking for a tool to refactor boolean expression. I've got expressions like
a1 => (b1 <=> c or d) AND
a2 => (b2 <=> c or d) AND
a2 => (b2 <=> c or d)
The tool ...
3
votes
1answer
111 views
Parenthesizing a string so that expression takes a given value
The following problem is from the chapter on Dynamic Programming by Vazirani et. al.
[6.6]Let us define a multiplication operation(×) on three symbols a; b; c according to the following table:
...
3
votes
4answers
183 views
C# resolve “(tru and true) or (true or false)”
C#: I have a string variable that looks like this:
string a = "(true and true) or (true or false)";
This can be anything, it can get more complex, like:
string b = "((true and false) or (true or ...
3
votes
6answers
464 views
Merge lists that share common elements
My input is a list of lists. Some of them share common elements, eg.
l = [['a','b','c'],['b','d','e'],['k'],['o','p'],['e','f'],['p','a'],['d','g']]
I need to merge all lists, that share a common ...
3
votes
4answers
283 views
“Boolean” operations in Python (ie: the and/or operators)
This method searches for the first group of word characters (ie: [a-zA-Z0-9_]), returning the first matched group or None in case of failure.
def test(str):
m = re.search(r'(\w+)', str)
if m:
...
3
votes
4answers
243 views
Why do I have to typecast an int in a ternary expression? [closed]
Possible Duplicate:
Conditional operator cannot cast implicitly?
I have run into a peculiar situation and want to know why I have to do it. I'm using .net 3.5.
This works:
short foo;
if ...
3
votes
2answers
524 views
Equivalence of boolean expressions
I have a problem that consist in comparing boolean expressions ( OR is +, AND is * ). To be more precise here is an example:
I have the following expression: "A+B+C" and I want to compare it with ...
3
votes
2answers
828 views
Prolog First Order Logic - Printing a Truth Table
I have to write program that prints a truth table of expressions.
So, I wrote the following function:
bool(true).
bool(fail).
tableBody(A,B,E) :-
bool(A),
bool(B) ,
write(A) ,
...
3
votes
4answers
2k views
Generating truth tables for logic expressions in Haskell
I completely forgot about my Haskell project which is due in a couple of hours, any help would be appreciated.
The first part is an evaluation function that has the following type signature:
...
3
votes
6answers
306 views
Is “boolean short circuiting” dictated by standard or just mostly used as optimization? [closed]
EDIT: Found duplicate once I learned the term for this behaviour. Close as duplicate please.
Consider this
Class* p = NULL;
if( p != NULL && p->Method() == OK ){
// stuff
}
On all ...
2
votes
1answer
61 views
LPeg grammar oddity
Part of a Lua application of mine is a search bar, and I'm trying to make it understand boolean expressions. I'm using LPeg, but the current grammar gives a strange result:
> re, yajl = ...
2
votes
3answers
86 views
Why is it important to express code in Disjunctive Normal Form?
At the company I work for, there has recently been a mandate that all 'highly visibile' boolean logic must be expressed in Disjunctive Normal Form.
So for instance (though the concept is language ...
2
votes
2answers
163 views
How to understand De Morgan Laws Boolean Expression
I got screwed when trying to understand this expression. I've thought several times but I cant get the meaning.
! (p || q) is equivalent to !p && !q
For this one, somehow I can comprehend a ...
2
votes
3answers
326 views
boolean variable values in PHP to javascript implementation
I've run into an odd issue in a PHP script that I'm writing-- I'm sure there's an easy answer but I'm not seeing it.
I'm pulling some vars from a DB using PHP, then passing those values into a ...
2
votes
4answers
789 views
Simplify boolean expression algorithm
Anybody knows of an algorithm to simplify boolean expressions?
I remember the boolean algebra and Karnaught maps, but this is meant for digital hardware where EVERITHING is boolean. I would like ...
2
votes
3answers
230 views
0.1 + 0.7 != 0.8 [closed]
Possible Duplicate:
Is JavaScript's Math broken?
Why in some programming languages the expression in title evaluates to true? I've tried it in php, ruby and python.
2
votes
3answers
299 views
Can someone please help me with some basic boolean minimization?
Sorry to be annoying, but I am doing a little bit of work at the moment, and am trying to simplify the following piece of boolean algebra so that I can construct the circuit :
A'.B'.C.D + A'.B.C.D' ...
2
votes
8answers
284 views
boolean expressions, why just two terms?
Given that it's valid to write
a = b = c = 2;
It would also be nice, rather than
bool allTwo = a == 2 && b == 2 && c == 2;
to instead write
bool allTwo = a == b == c == 2;
...
2
votes
5answers
363 views
Database model for saving random boolean expressions
I have expressions like this:
(cat OR cats OR kitten OR kitty) AND (dog OR dogs) NOT (pigeon OR firefly)
Anyone having idea how to make tables to save those?
Before I got request for usage of ...
2
votes
4answers
220 views
I cant really wrap my head around BOOLEAN logic when I use NOT together with AND and OR
Im trying to understand how boolean logic works when I use NOT. To give an example using awk
I have a text file containing
CORE
PORT
CORE
PORT
COREPORT
CORE
COREPORT
And I would like to remove ...
2
votes
4answers
629 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 ...
2
votes
7answers
768 views
Data Model for Boolean Expressions
Do you know a way to organize boolean expressions in a database while allowing infinite nesting of the expressions?
Example:
a = 1 AND (b = 1 OR b = 2)
The expression as a whole shouldn't be ...
1
vote
3answers
96 views
Is it possible to find optimal solution for a boolean formula by SMT solvers?
I have a big boolean formula to solve, due to the reason of the redaction, I have to paste an image here:
Also, I have already a function area to measure the dimension of 4 integers: ...
1
vote
1answer
101 views
Where might I find a method to convert an arbitrary boolean expression into conjunctive or disjunctive normal form?
I've written a little app that parses expressions into abstract syntax trees. Right now, I use a bunch of heuristics against the expression in order to decide how to best evaluate the query. ...
1
vote
1answer
140 views
Defining constants and operators in Irony
I'm new to Irony and the whole language implementation shebang, so I've been playing around with the ExpressionEvaluator sample that comes with the Irony source, which seems to (almost) suit my needs ...
1
vote
1answer
192 views
Decimal to Binary Conversion
I was writing a function for conversion between Decimal and Binary base number systems and here's my original code:
void binary(int number)
{
vector<int> binary;
while (number == true)
...
1
vote
4answers
60 views
PHP and fancy boolean
Having some problems with booleans in php, would be very grateful if anyone could explain why the following doesnt work
$var = "asdas";
// or this if(!isset($var) || ($var && !$var)){
...
1
vote
1answer
165 views
Boolean Logic Design - Reduction
I have the following function to be reduced/simplified.
F(A,B,C,D) = BC + (A + C'D') where ' denotes the complement
Here's my solution:
= BC + (A + C'D')'
= BC + (A + (C+D)
= BC + (A + C + D)
= ...
1
vote
1answer
1k views
JPQL/HQL and JPA/Hibernate: boolean expression in select constructor expression not working (unexpected AST node: AND, NPE, HqlSqlWalker.setAlias)?
I have a JPQL statement to return a schedule of sports games:
SELECT NEW com.kawoolutions.bbstats.view.ScheduleGameLine(
ga.id ...
1
vote
4answers
599 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
2answers
488 views
Digital Logic - truth tables
I am trying to solve these problems with truth tables using the formulas below. I am having a problem with the NOT to NAND
I think i got the first 2 problems correct using: AND is equivalent to NOR, ...
1
vote
4answers
512 views
boolean algebra - build a OR gate as an NAND gate
I am trying to wrap my mind around how to do this.
For what i understand is that a set of logic gates is called "functionally complete" if some combination of the gates can be used to do each of the ...
1
vote
2answers
188 views
What is wrong with this if-elsif-else block in my Perl script?
I'm trying to write a condition for a nested if statement, but haven't found a good example of using or in if statements. The following elsif condition fails and allows the code nested beneath it to ...
1
vote
6answers
203 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?
1
vote
0answers
256 views
SOLR AND+OR Query - how to do?
In Nutch I'm using Solr as a search server.
I would like to perform something query like
(hillary AND clinton) OR (barack AND obama) OR (..)
How to do it?
For me single OR query works, like
india ...