1
vote
1answer
75 views
Create smaller instruction set from x86 assembly
I have a sort of simulator for x86 assembly instructions, but the thing is it doesn't accept the full instruction set. For instance if given an INT command it will terminate. It is …
1
vote
5answers
187 views
Can this boolean expression be simplified?
(A Or B) And Not (A And B)
4
votes
6answers
85 views
How can I implement user-friendly boolean logic in a web form GUI?
Currently I have a web application where a user can use dropdown lists to generate SQL SELECT statements like so:
Column Select Dropdown | Operator Dropdown (= != > < <= >=) …
0
votes
1answer
53 views
Algorithms for optimizing conjunctive normal form expressions for particular instruction sets?
I'm using Espresso to produce a minimized form of a set of boolean equations. However rather than generating logic for a programmable array logic (which is what Espresso is normall …
2
votes
4answers
207 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 …
4
votes
4answers
977 views
How can I build a Truth Table Generator?
I'm looking to write a Truth Table Generator as a personal project.
There are several web-based online ones here and here.
(Example screenshot of an existing Truth Table Generat …
1
vote
3answers
198 views
How to do true==false or true!=true in your language? [closed]
Booleans seem to be the most primitive building blocks of programming languages, because they can actually take only two (or in some cases three) "singleton" values: true, false (a …
0
votes
5answers
151 views
PHP Logic - Return False of one or two out of three are not set
Hi all,
I have a form that collects information, one piece of which is a phone number. The phone number data comes from three fields, one for an area code, for the first 3 digits, …
0
votes
1answer
219 views
boolean equation [closed]
Can someone check if this is the right equation for the diagram:
C = (Not A) AND B
1
vote
8answers
715 views
sql query - true => true, false => true or false
Hi,
Simple query, possibly impossible but I know there are some clever people out there :)
Given a boolean parameter, I wish to define my where clause to either limit a certain c …
2
votes
5answers
587 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
2answers
136 views
Why can’t I do boolean logic on bytes?
In C# (3.5) I try the following:
byte byte1 = 0x00;
byte byte2 = 0x00;
byte byte3 = byte1 & byte2;
and I get Error 132: "Cannot implicitly convert type 'int' to 'byte'. An e …
6
votes
15answers
673 views
Is it useful in C# to apply DeMorgan’s theorem to manually optimize boolean expressions in conditional statements (e.g. if conditions)
Back in the day when I did most of my work in C and C++, as a matter of course, I would manually apply deMorgan's theorem to optimize any non-trivial boolean expressions.
Is it us …
4
votes
7answers
613 views
Creating a logic gate simulator
I need to make an application for creating logic ciruits and seeing the results. This is primarily for use in A-Level (UK, 16-18 year olds generally) computting courses.
Ive never …
2
votes
8answers
187 views
What advantages are there to using either AND or &&?
Currently, I'm using && and || instead of AND and OR because that's how I was taught. In most languages, however, both are valid syntax. Are there any advantages to one or …
