A boolean expression is an expression in a programming language that produces a boolean value when evaluated, i.e. one of true or false.

learn more… | top users | synonyms

1
vote
2answers
33 views

Priority of the logical statements NOT AND & OR in python

As far as I know, in C & C++, the priority sequence for NOT AND & OR is NOT>AND>OR. But this doesn't seem to work in a similar way in Python. I tried searching for it in the Python ...
4
votes
1answer
80 views

Is an if statement guaranteed to not be evaluated more than necessary? [duplicate]

Given two conditions with an && connection. I know that the order of evaluation is from left to right. But if the first condition resolves to false, it the second condition guaranteed to not ...
1
vote
0answers
64 views

Modify Quine Mccluskey algorithm

Anyone that is familiar with quine mccluskey would know that to get the implicants, we should compare the group with n number of 1s to the group with n+1 number of 1s. So my question is: Can there be ...
1
vote
1answer
49 views

Logical error in my Python program?

I am attempting to write a simple program that will simulate a number of rock paper scissors games, and return the number of wins each item has, based on a number of games the user puts in to ...
-1
votes
2answers
27 views

Programming issue boolean logic

I have an issue where I need to create some buttons depending on some boolean values. If button1 = true I should create button1, if button2 = true I should create button2 and if button3 = true I ...
0
votes
2answers
70 views

T-SQL - Tehnique for evaluation of boolean expression string

I need to populated the 'Value' field could be '0' or '1' (false or true) depending on the expression. The following is simple data: 1 1 * 1 + 1 NULL 2 0 + 0 NULL 3 1 + 0 * 0 NULL 4 ...
2
votes
1answer
55 views

How to incorporate Quine–McCluskey Algorithm with Composite Specification Pattern

I want to incorporate the Quine–McCluskey Algorithm with Composite Specification Pattern. First, let's consider the basics, the Specification pattern in C#: public interface ISpecification { ...
0
votes
2answers
37 views

What to do with an element in Karnaugh map that remains single?

Suppose I face a situation where I can neither form octect nor quad nor pair with an element and it remains single. What should I do with it ? Should I ignore it?
2
votes
1answer
46 views

Is there a way to say ∃! in prolog?

In prolog, is there a way to say "there exists exactly one" (∃!)? I was thinking about doing something like % a predicate which is proven true if there is only one tall person only_one_tall() :- ...
0
votes
2answers
63 views

How to evaluate an object directly in a boolean context?

I want to evaluate an instance of some class in a boolean context. Or to be clearer, i want to define how the object reacts if its used directly in a boolean context. Here an example: class Foo { ...
-1
votes
1answer
199 views

Why does the SimCity 2013 Always-Online source code use !0 and !1 instead of true and false? [closed]

Source code is here: http://pastebin.com/8NR1EdkN In multiple locations, the developer uses !0 and !1 to represent true and false, respectively. Why? The only reason I can think of is to save some ...
1
vote
1answer
173 views

How to convert boolean expression strings to objects? [duplicate]

How could I best evaluate user-given boolean expression strings like: A & B | (C & !D) What do I need this for? Example: Imagine we have a set of people, and the user has an input field ...
17
votes
5answers
557 views

Java boolean |= operator

Recently I saw a code using this: boolean val = something(); val |= somethingElse(); Interesting part is |= (binary like) operator made on boolean primitive type. It surprised me that |= exist for ...
1
vote
1answer
49 views

JavaFX - Methods creating a new BooleanExpression cause memory leaks

I have just noticed that methods not(), and(), or() from both classes BooleanExpression and Bindings create a new BooleanExpression which probably stays in memory even if it does not have any ...
0
votes
3answers
85 views

why assignment operators return non boolean value

I tested result this javascript expressions in chrome browser console (output result is bold): a = false false b = false false a||b false a|=b 0 why in the last expression (a|=b) does not return a ...
-4
votes
6answers
114 views

how can I simplify this expression [closed]

if (this.skills[i].isBasic() == true) how to simplify this expression ?
0
votes
2answers
117 views

How can I set up a boolean expression that can execute in both C# and SQL, without depending on libraries like EntityFramework?

I want to have an app where a user (typically a power user) can enter a boolean expression. I want to be able to execute the boolean expression in both .NET and in SQL. The expressions themselves ...
1
vote
2answers
57 views

Boolean Comparison

I'm doing a few exercises from HtDP (How to Design Programs) and I am kind of stuck on the Boolean comparison question. It goes like this. (define b1 true) (define b2 false) Write an ...
0
votes
1answer
86 views

Algorithm to Calculate Density of Boolean Function

I'm trying to write a program that requires the calculation of a specific value dealing with Boolean functions. Given a single-output Boolean function f, given by a cover F, let's say I define the ...
1
vote
3answers
216 views

JavaScript if statement always returns true

corresponding html: <html> <title></title> <head> </head> <body> <FORM NAME="Calculator"> <TABLE BORDER=4> <TR> <TD> <input type="text" ...
-1
votes
1answer
70 views

how to solve this boolean algrbra expression

I would like help simplifying this boolean algebra expression: B*C + ~A*~B + ~A*~C => A*B*C + ~A I need to know the steps of how to simplify it to the ABC + ~A '*' indicates "AND" '+' indicates ...
0
votes
1answer
76 views

Simplifying a Boolean expression

How would you simplify this boolean expression? I don't know how to apply the boolean laws with the implication sign. (pq -> r)' and (p -> (q'r))'
2
votes
2answers
1k views

Any good boolean expression simplifiers out there?

I was refactoring old code and encountered several IF conditions that were way too complex and long and I'm certain they can be simplified. My guess is that those conditions grew so much because of ...
33
votes
8answers
3k views

what is !! in c? [duplicate]

I have encountered the following snippet: pt->aa[!!(ts->flags & MASK)] = -val; What does !! stand for in c ? Isn't (!!NULL) == NULL ? Is it a gcc extension related syntax ?
-3
votes
1answer
149 views

Show that ~(A XOR B) is the same as (~A XOR B) using Boolean algebra [closed]

I need to show that the expression: ~(A XOR B) is equivilant to (~A XOR B) using boolean algebra. I really have no idea how to start, any help would be appreciated.
0
votes
2answers
54 views

How to understand this style of K-map

I have seen a different style of Karnaugh Map for logic design. This is the style they used: Anyone knows how this K-Map done? How to comprehend with this kind of map? Or how they derived from that ...
1
vote
2answers
642 views

Simplifying Boolean Expressions with DeMorgan’s law

I need help simplifying the following Boolean expressions using DeMorgan’s law: a) [ (AB)' + (CD)' ]' and b) [(X+Y)' + (X+Y') ]' Please show some steps so I can do the other ones myself
2
votes
2answers
237 views

Creating a Boolean function that determines if two arrays are shift equivalent

Two arrays: a[] = {1 2 3 4} b[] = {3 4 1 2} The bottom array is simply the top array shifted to the right two places. If the top array can be right shifted to create the bottom array, we call them ...
0
votes
2answers
46 views

Manually evaluating logical expressions

I'm not sure if this belongs here, but I was told to evaluate (00110101 ^ (10010101 v 10100000)) How is my answer suppose to look like? I was wondering how I would do this? I'm thinking of treating ...
3
votes
3answers
159 views

Evaluate many boolean expressions like Array#join in Ruby

In Ruby, you can use Array#join to simple join together multiple strings with an optional delimiter. [ "a", "b", "c" ].join #=> "abc" [ "a", "b", "c" ].join("-") #=> "a-b-c" I'm ...
1
vote
0answers
25 views

Boolean theorems: Specific cases and inverter placement questions (3)

If `D'=Z', then does D=Z? Does (A+B)' = A' + B? If an inverter is placed before the AND/OR then does it still act as a NOT/NAND?
3
votes
5answers
103 views

“true” evaluation running even when value is false

I have a very simple piece of jquery that needs to check a boolean value returned from an ajax call and set a checkbox to checked if it's true. console.log("loc: " + r.location.defaultLocation); if( ...
-1
votes
2answers
101 views

Combine 2 Boolean statements to make another one

I am trying to combine two boolean statements in order to validate a number. This is the code for the two functions: public boolean numberOne(String number) { int a = Integer.parseInt(number); ...
1
vote
4answers
210 views

int as boolean expressions Eclipse-Java

Why does Eclipse tell me int a = 4; if (a) { //do stuff } is wrong, or Cannot convert from integer to boolean? I'm used to writing things like that in C, C++, and thought Java was fine with ...
3
votes
1answer
173 views

Extending LINQ-based Specification Pattern to implement subsumption

There are a lot of LINQ-based implementations of the Composite Specification Pattern. I have not seen one that used Subsumption. Are there any such examples that have been documented (blogs, etc.) ...
0
votes
0answers
209 views

Expression parser for Predicates in JPA

In a command line based application I want to offer basic support for filtering database results. For this, I need to parse user input. I want to support these tokens: boolean (logical) operators ...
1
vote
3answers
89 views

Converting conditions with parentheses to equivalents with no parentheses

I am developing an app where a user is able to add conditions to certain tasks. For example he could have conditions a, b, c, d and combine them in a way where in the end it looks like : (a AND b) ...
1
vote
3answers
93 views

Convert function with only AND Boolean operations

I have some function like (A and ( B or c)) or (D and E and (F or H or R or P ))) and I want to convert that function to function with only and operations (of course if possible) I find that with ...
0
votes
2answers
136 views

Parallel Boolean Expression Evaluation in Java [duplicate]

Possible Duplicate: When Java evaluates a conjunction (<boolean exp1> && <boolean exp2>), does it eval exp2 if exp1 is false? If I have 2 condition say, A and B and I ...
0
votes
3answers
127 views

What's the difference between 'false === $var' and '$var === false'?

Is one more readable than the other? At first, I disliked the false === approach but as I see it more and more often, I'm warming up to it. I'm pretty sure they return identical results.
1
vote
1answer
85 views

Python : Why does False or 'name' returns 'name' and not False?

AFAIK : and, or are boolean operators and any boolean expression should return a boolean. So, why does this happens : False or 'name' returns 'name' and not True True and '' returns '' and not ...
0
votes
2answers
130 views

Boolean algebra simplification to lowest form [closed]

I am relearning Boolean algebra for a class, but I cant seem to simplify this expression any further. It is possible that its fully simplified but I wanted a second opinion. the expression: ...
1
vote
2answers
66 views

Boolean operation when assigning value in Ruby

I am new to Ruby and I did the following: c = {} # Some code in the middle c['a'] = c['a'] or 0 Now I would expect this to work like this: if c['a'] is nil, then c['a'] or 0 would return 0. So the ...
1
vote
2answers
55 views

Error in while((Status.health !0) && (Wolves.health !0) ) expected expression “)”

Hey i have an error in this: while((Status.health !0) && (Wolves.health !0) ) Can anyone see what is wrong with this ?
1
vote
5answers
226 views

Is there any reason for “Boolean.TRUE.equals(x)” in Java?

I've come across this code in one of the projects I'm working on (This is in Java) if (Boolean.TRUE.equals(foo.isBar())) Foo#isBar() is defined as boolean isBar(), so it can't return null Is ...
0
votes
1answer
240 views

boolean expression in sh script

I have this simple script, which wouldn't run because of the line with if [ ... ] Could anyone tell me what is wrong with this? #! /bin/sh if [ $# -ne 2 AND $# -ne 3 ] then echo "Usage $0 ...
0
votes
0answers
101 views

homework: number of canonical expressions

There is a question: What is The number of canonical expressions that can be developed over a 3-valued boolean algebra? I was trying to solve this. Canonical expression is the combination of ...
4
votes
1answer
106 views

Dynamically building a Boolean expression

I'm writing some code that increments the number at the end of a filename until it's no longer overwriting an existing file. I'm creating several files, all with the same base filename but different ...
2
votes
5answers
1k views

Boolean to integer conversion

I have 3 separate Boolean variables, bit1, bit2 & bit3 and I need to calculate the decimal integer equivalent in JavaScript?
0
votes
1answer
60 views

Where did I go wrong with the boolean logic?

For a small digital system, I am given the requirement that "The doors should not lock (a = doors lock) when the driver has got out of the car (b = driver in car) but the keys are still inside (c = ...

1 2 3 4