Tagged Questions

0
votes
2answers
34 views

Bind Image.Source according to Boolean without a converter?

Hi I want to have an image bound to a boolean and have the source of the image to depend on the boolean value i.e. true source="image1" false source="image2" I was wondering if …
2
votes
4answers
210 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 me …
1
vote
10answers
167 views

Is it possible to make an object return false by default?

Hey Stackfolk, I tried to ask this before, and messed up the question, so I'll try again. Is it possible to make an object return false by default when put in an if statement? W …
0
votes
4answers
127 views

How can I make a custom exception object evaluate to false in an if condition?

Hey there SO, I was just wondering if there was any way to make my object return false if placed in an if statement. The reason is I'm making a custom exception class. I would l …
1
vote
10answers
315 views

How to write the following boolean expression?

I've got three boolean values A, B and C. I need to write an IF statement which will execute if and only if no more than one of these values is True. In other words, here is the tr …
2
votes
5answers
591 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 …
2
votes
6answers
218 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 ){ // …
3
votes
6answers
261 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 activ …
3
votes
1answer
159 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 …
2
votes
6answers
222 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 whol …