Logic is about reasoning. This tag is appropriate for such things as logic programming, programming problems involving a logical system, or basic questions about the logical systems used in programming.

learn more… | top users | synonyms

4
votes
0answers
753 views

Visual Studio Project/Item Template Parameter Logic

Since I have only seen a few posts on the topic but no in-depth explanation of the logic for parameters in templates for Visual Studio, I figured I'd post this here. Following the MSDN article you ...
2
votes
0answers
87 views

Interesting overlapping UIScrollView conundrum

Say you have two scrollviews, one vertical and one horizontal, that intersect in a "plus sign" pattern. Say you have one object (a UIImageView for example) in the center of the plus. If you touch the ...
2
votes
0answers
84 views

Converting to conjunctive normal form

I'm trying to convert this to conjunctive normal form: ∧0≤i<n ∨0≤j1,j2<n (Ci,j1 ∧ Ci,j2) which is proving a lot more difficult than I expected. I can't seem to get rid of the AND nested the ...
1
vote
0answers
53 views

jquery append element xml logic (infinite scroll like)

I have a script that allows to append some data from an xml file. This script append element, for example 8 elements on click, then on next click 8 other elements. To do this I implemented a ...
1
vote
0answers
64 views

parsing and look -ahead tokens misunderstanding

I have some question that make me go crazy, please help me to understand them: 1.in LR(1) does the parser looks for the input in a given time and looks for the next input and then decides to make a ...
1
vote
0answers
53 views

Sequential circuit design

A sequential circuit has two inputs, x1 and x2. Five-bit sequences representing decimal digits coded in the 2-out-of-5 code appear from time to time on line a:,, synchronized with a clock pulse on a ...
1
vote
0answers
71 views

Modifying Quine-McCluskey Algorithm for Different Cost Function

The standard cost function for Quine-McCluskey seems to involve minimizing the number of AND gates. For my purposes, I need to minimize the number of literals instead of the number of AND gates (for ...
1
vote
0answers
12 views

need help distinguishing between users and tests

I am building an app for online tests. These tests can be sent by companies to individual users. My problem is distinguising between users and tests... where should i put the login? I want the users ...
1
vote
0answers
28 views

Shift, Rotate and Rotate All: What are they used for and do I need them all?

My question: What exactly is the Rotate All function used for and can it be implemented another way in software if needed? Why? I'm trying to build a CPU out of discrete logic chips, similar to what ...
1
vote
0answers
38 views

Lost behind the logic of making a stats graphics from a mysql log

Thanks for reading. This is not a coding question as much as it is a logic one. But if my current logic is wrong, some coding help would be appreciated. I have made a table on my database which is a ...
1
vote
0answers
204 views

VSTi envelope implementation

For a university assignment I have to write a simple VSTi additive synth. I have most of the work done, I just cannot get my ADSR envelope to do anything. I think (and am definitely not sure) that ...
1
vote
0answers
60 views

Android logic for special calculator

I was trying to make a calculator that takes a input of number of panels from user. Then it will show some options based on the combination of different panel sizes- 3, 5, 7, 11, 13. The combined ...
1
vote
0answers
261 views

Trying to code a craps game and having trouble with logic

I have everything except the actual gameplay coded. I can't think of how to code the logic. I know the rules of craps, but I cannot (for the life of me) think of how to code it. Would I use a switch ...
1
vote
0answers
229 views

simplfy and apply Demorgan law to the f(a , b,c)

given this function F(a,b,c) = aba + c’ab + c’b’ + c’b + b’cb + abc ask as to simplfy it .. Use DeMorgan’s law to find the complement F’(a,b,c) of F(a,b,c)? I simplfy it and get this answer ...
1
vote
0answers
29 views

BAN logic - deriving freshness of a message

A quick question regarding BAN logic. Say I have derived that A believes B said {Kr}Ka I already know that fresh(Ka). Can I then conclude that as fresh(Ka) then {Kr}Ka is also fresh. In a nutshell ...
1
vote
0answers
32 views

What is the purpose of adding an Enable input when designing a decoder or encoder?

I understand the purpose of encoding (4 to 2, 8 to 3, etc) and decoders, but we covered adding an enable input in class. which, if I understand right, needs to be true in order for the output to be ...
1
vote
0answers
157 views

How to do simplify and normalize logic expression using clojure.core.logic?

all I got something like this: (x < 1 and y < 7) and (x == 0 and y < 5) I want something like this: x == 0 and y < 5 I'm new to clojure. Any idea? thanks!
1
vote
0answers
143 views

C# redrawing rectangles logic

this may be more of a question of logic than of syntax so i dont know if anyone would be willing to help but I have a list of type Rectangle that i need to loop back and forwards through. the list ...
1
vote
0answers
167 views

Interesting XHTML/JSTL validation issue

I'm using Emacs' nxhtml-mode and mumamo (multi-major-mode) to validate (and use auto-completion etc.) in real-time on an XHTML page containing some JSTL code. It's working and I really like what I'm ...
1
vote
0answers
237 views

How to best implement DPLL in C++?

I am trying to implement DPLL algorithm in C++, I am wondering what kind of data structure would be best for solving this type of recursion problem. Right now I am using vectors, but the code is long ...
1
vote
0answers
107 views

LOGIC ON MySQL, DATE RANGES, inserting Items into null fields

Ok so starting under select date range, I have a question regarding the logic on how this should come out. I have to check that all members of my enrollmenthistory table are active for a certain ...
1
vote
0answers
303 views

need help with implementing facebook's “load more” functionality on multiple pages

if you don't know what i mean it's when u scroll down on facebook more content keeps loading i'm building a music facebook iframe app that has multiple tabs / pages newest releases has the newest ...
1
vote
0answers
265 views

Searching for a rule engine with fuzzy logic abilities

I am looking for a rule engine with fuzzy logic abilities. I wanted to use Jess but unfortunately it's fuzzy logic plugin is out of date, it's not supported any more and I was unable to download it ...
0
votes
0answers
27 views

Expression evaluation and optimization

I was given the following function h = A.B' + C + B.C'.D + B.E + B'.C.D'.F and was told to construct it in the most optimal way using only any size NOR gate and also by applying distributive law. ...
0
votes
0answers
14 views

Collision Detection Kit Faulting

I'm quite new to AS3. I'm using the CollisionDetectionKit rather than the hitTest methods because it's more accurate. I've implemented the library. I don't think I understand its concept of degrees ...
0
votes
0answers
11 views

ANFIS membership functions

I'm creating some ANFIS via the ANFIS MATLAB Toolbox. I have time series of inputs and target values. The if-then structure identification is done in one case using Grid Partitioning, in the other ...
0
votes
0answers
31 views

A-star logic has its own mind

So I got help earlier for this program crashing, however the cost function has a mind of its own. Its supposed to go through areas that have cost 1, and avoid cost 5 areas as much as possible. It ...
0
votes
0answers
21 views

Creating a Malayalam Calendar

I am wondering how to create a Malayalam Calender using php? The malayalam calendar is seems to be changing each and every year. So, is there any possible ways to do this in php. This are some ...
0
votes
0answers
20 views

Some doubts about Prolog implementation of 2-3 Dictionary

I am learning Prolog using SWI Prolog and I have some doubts about how work this implementation of the 2-3 dictionary in Prolog. I know the theory of the 2-3 dictionary that are trees whose internal ...
0
votes
0answers
16 views

Cinema 4d Xpresso Logic. Switch between objects and turn everything off with a master switch?

I have this user data setup where I can switch between 2 two objects using a checkbox (making one of them visible and hide the other) and I now I want to make a "master switch" where I can turn both ...
0
votes
0answers
24 views

Boolean Logic & gate delays

Assuming 2 gate-delays for a Sum or Carry function, estimate the time for ripple-through carry addition for adders with the following word lengths:- i) 4-bit ii) 8-bit iii) 16-bit In my notes I ...
0
votes
0answers
37 views

Is the following knowledge base Unsatisfiable, Satisfiable or Valid ? Using PL-resolution

( OR ( NOT a ) b ) ( OR c ( OR ( NOT a ) d ) ) ( OR ( NOT ( NOT a ) ) ( NOT c ) ) ( OR ( NOT c ) ( NOT d ) ) ( NOT d ) ( OR ( NOT b ) ( NOT c ) ) ( OR e b ) ( OR c ( NOT c ) ) ( ...
0
votes
0answers
42 views

Fuzzy Logic / matching on Company Name (leads)

I need some help I have looked at conventional methods of using De-Duping tools however because i work for an organisation which is multi alliance the de-duping tool looks at the entire database, ...
0
votes
0answers
7 views

FInd the set variable type

Lets say there are three variables a,b,c the return type of a method should be in the following manner a) if a is only true return 1; b) if b is only true return 2; c) if c is only true return 3; ...
0
votes
0answers
154 views

Codingbat Python Logic-2 Make_Chocolate

I understand the logic of the problem (I had already completed it in the Java section) but whenever I try to run it, I get a Timed Out exception. So can anyone tell me what I'm doing wrong? We want ...
0
votes
0answers
30 views

How to Write Wordpress Query that Detects if There Are Sub-Categories?

I have a Custom Post Type of "projects", that is categorized by a Custom Taxonomy of "industry", which is heirarchical. Projects & sub-projects are assigned to the industries. For Example, the ...
0
votes
0answers
30 views

Multidimensional Arrays and JTextArea

I am fairly new here and I have a quick question. Before I ask it, heres my code: TestGame testObj = new TestGame(); dialogArray = testObj.showDialog(); messageDialog = new ...
0
votes
0answers
45 views

Coding Logic for a Daily Scheduler

I want to create a daily scheduler for my employees to visually see their workday. A table would be fine, with employees being on x axis, and hours on the left. 00:00 - 24:00 I have a table with ...
0
votes
0answers
44 views

Assinging Index No to the Each Row in iterated using <logic:iterate>

how to do the following scenario: Assigning Index No to a check box along with the Each Row in iterated using scenario: adding rows dynamically for the table in jsp
0
votes
0answers
225 views

Logic circuit for 4-2 encoder

I have to build the logic circuit for a 4 to 2 encoder where in the truth table, if only one of the inputs is on the error signal (result) is 0, but if there is more than one, or no inputs on, then ...
0
votes
0answers
31 views

matrix type of loops not working for PHPExcel

I am trying to set data in Excel sheet using PHPExcel library somewhat in matrix fashion but the code is not resulting if this logic applied :( My data ($data)- Array ( [Maths] => Array ...
0
votes
0answers
156 views

How i do login/register with facebook connect?

i have a problem with Facebook Connect. I'm using the latest version of php sdk from github. What do I want? 1) that visitors can register with Facebook Connect; 2) that visitors can do login with ...
0
votes
0answers
81 views

Visual Logic Program Questions (from NewbieLand)

Unfortunately, I am having a bit of difficulty with Visual Logic (though I am looking through the book ceaselessly). However, here is what I want to do... Create 3 User types: GM, Player and Guest ...
0
votes
0answers
160 views

Logic to find night, split and rotating shift attendance information from access log

I hope this is not a repeating question. I searched here for answers to my headache but didn't get any solution. Basically i want to calculate Night Shift, Split shift and rotating shift. Like to know ...
0
votes
0answers
43 views

Simple general programming loop logic

I'm learning to program by making a simple time manager application. Although I'm making it in python, I have a question about the logic involved and it should be the same (or very similar) across ...
0
votes
0answers
11 views

Check if FOR has reached number when iteration direction is unknown

This question is purelly logical, which makes it hard to formulate. I will be given two numbers, number1 and number2 and I want to make some action smoothly, if the steps are too far away from each ...
0
votes
0answers
116 views

C++ programming trees

I am developing a program that accepts input like "(j=5 OR r<3 AND (er>1 OR l>22)) and ed=3" So far, I've parsed it into two arrays[3] of vectors (one vector for each of a max of 3 levels): ...
0
votes
0answers
63 views

Sokoban solver - strategy in picking barrels?

I'm doing some research in making a Sokoban solver. Untill now, I found some information about deadlocks, determing distances between pusher and barrels, tunnel and so on. I didn't found some ...
0
votes
0answers
64 views

Overflow during Two's complement multiplication

If two 16-bit twos complement numbers are multiplied and the result exceeds 16 bits, but at the same time the truncated result is the correct product, does this case count as overflow?
0
votes
0answers
71 views

Sequential circuit design with FSM

I have the following question: A sequential circuit is to be designed in which the circuit output zv is a function of only the current input xv and the three previous inputs xv-1, xv-2, and xv-3. A ...

1 2 3 4 5 6