The logical-operators tag has no wiki summary.
2
votes
3answers
102 views
Are there compilers capable of suggesting optimizations that would absolutely require programmer approval?
Can compilers do more than strict semantically-equivalent optimizations, if we keep the human in the loop?
There are some potential optimizations that are dismissed outright by compilers, because ...
1
vote
2answers
106 views
Unit Testing in PHPUnit - Handling Multiple Conditions
I want to write a test using PHPUnit which includes a check to make sure that a value is either a string or NULL.
AFAIK, I can write such a test like so:
if (is_string($value) || is_null($value)) {
...
1
vote
2answers
159 views
How can I determine if overflow occured using AND OR NOT and XOR?
I'm trying to use only AND OR XOR and NOT to determine whether adding 2 binary number made of 4 bits will overflow.
I know, for example, that something like 1100 + 0100 will wind up as 1 | 0000. But ...
0
votes
2answers
384 views
Implementing assembly logical 'not' instruction
So I have run into a problem in assembly language. I need a way to get the same desired result from the 'not' instruction by only using the 'and' and 'or' instructions. So if I have:
AL = 1011000
...
1
vote
1answer
33 views
Assigning Values Using Logical Operators
I am trying to code weekends and weekdays using numeric values, such that "Monday","Tuesday",..."Friday" = 0 and "Saturday"/"Sunday" = 1. I presently have the following data:
head(bike.d)
...
1
vote
1answer
128 views
How to convert a QuadTree Cell's Spatial Index (Binary Index) to Position and Dimension values?
Sorry in advance for miss-using any terminology in this question, but basically I'm looking into creating a QuadTree that makes use of Binary Indexing, like this:
As you can see in the two ...
0
votes
1answer
207 views
Hibernate empty NOT expression
I need to convert my IConditionTree representation into Criterion.
Currently I have implemented logical operator AND and OR and now I need to add also NOT. But this type of criterion is not ...
1
vote
0answers
52 views
Does order of parameters in logical operators matters equality?
I'm constructing some class that will contains a logical expression:
public enum LogicalOperator { And, Or };
public class LogicalExpression
{
public LogicalOperator Operator { get; private set; ...
1
vote
0answers
100 views
Logical Operators in Java Properties File
Are there any recommendation for design patterns for using logical operators in conjunction with values generated from Java properties file (the number of values not known in advance)?
0
votes
0answers
60 views
Combine two Binary images
I have obtained two individual segmentations - initial and the one after splitting clumps of cells .
(Original image - Initial segmentation)
I'm stuck up now as I am unable to combine these two ...
0
votes
0answers
39 views
“Combine” logical expression and return the subexpressions
I need to write an algorithm that takes a logical expression as input, combines its operators and returns the subexpressions.
Some examples of what I need:
foo -> ["foo"]
foo bar -> ...
0
votes
0answers
52 views
MS Excel - obtaining and presenting results by combining logical operators, sums, pivot tables, and forms
Before I present the question, I would like to state that I have spent time researching for a solution for this problem, with partial luck.
So, here's the scenario:
There are X number of users, using ...
0
votes
0answers
35 views
Work Item Alert - Remaining Work > 0
I'm trying to create an alert in Team Foundation Server that sends an email if a work item state changes to Done but the Remaining Work is greater than 0.
I would want the Remaining Work operator to ...
0
votes
0answers
149 views
Logical Comparison of Vectors in R
First I will post my code then explain it a little bit so everyone knows what is going on.
# load library
library(VIM)
# set directory
setwd("U:/Actclosures")
# load data
data <- ...