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.
1
vote
1answer
32 views
Similarity between trees according to the number of common subtrees in Prolog
I am studying Prolog for an universitary exame using SWI Prolog and I have some problems to understand what my teacher do in this example (it seems to me that is is incomplete) that implement the ...
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 ...
12
votes
8answers
384 views
Showing Featured Item From the Database
I have database table as below.
id, bungalow_name, type, address, featured
A bungalow can be featured in the home page. If a bungalow is featured, featured column has the value 1. I have 50 ...
1
vote
2answers
44 views
How does && work in shell?
I'm using Bash specifically, but I imagine most shells behave the same way.
I often do
hg pull && hg update --clean
But it just occurred to me, if hg pull returns 0 on success, why does it ...
0
votes
3answers
67 views
Can anyone point me in the direction of some 'wumpus world' type tutorials? [closed]
Hello stackoverflow users.
I have done some basic learning in Prolog with their user guide and followed the official LPA Flex tutorial booklet for Flex.
I am looking to write some form of my own ...
0
votes
1answer
22 views
Python statement always being executed assitance
I have the following the condition statement:
if (sc == 'Both') and (fc == 'True') or (bc == 'True'):
do this
if (sc == 'Front') and (fc == 'True'):
do this
if (sc == 'Back') and (bc == ...
-1
votes
0answers
51 views
How is (A & B) different from (A && B) in Javascript [duplicate]
The title really says it all, but as far as I can tell they ought to act the same for boolen inputs, but differently for truthy/falsy objects? For which do short-circuit rules apply?
I can not find ...
-2
votes
0answers
25 views
Some doubts about a program that found limited path from 2 nodes in a graph using Prolog
I am studying Prolog and I am finding some difficulties to understand this program that find a path between two nodes in a graph if this path is <= MaxLenght
This is the code:
edge(a,b).
...
-5
votes
1answer
42 views
Mutual exclusion truth table? [closed]
Can someone give me a truth table of mutual exclusion?
A B| Result
-------------
0 0|
0 1|
1 0|
1 1|
Please fill the Result column so it reflects mutual exclusion.
1
vote
1answer
36 views
Telephone Conversation Logic Puzzle {Prolog}
year('1928').
year('1929').
year('1932').
year('1935').
person(gertie).
person(herbert).
person(miriam).
person(wallace).
exchange(al).
exchange(be).
exchange(pe).
exchange(sl).
solve:- year(Y1), ...
0
votes
2answers
32 views
Preventing overlap of number ranges
I failed at this problem for several hours now and just can't get my head around it. It seems fairly simple from a "human" POV, but somehow I just can't seem able to write it into code.
Situation: ...
0
votes
4answers
29 views
Carry Detection in summation
I want to check whether the two numbers when added, generate a carry or not.
I assume both numbers are in range 0-9.
Our constraints :
we can not use any operations whose result may goes above 9 or ...
0
votes
2answers
33 views
How to store the list of visited node in a path on a graph in Prolog
I am studying Prolog and I am finding some difficulty interpreting the slide proposed by my professor.
Starting from the classic program that say if exist a path between two node of a graph, this ...
0
votes
3answers
126 views
Optimizing a Huge “OR” Pattern [closed]
I have an "OR" pattern like the following example:
(X Y Z) | (X Y A B) | (X A K) | (M A J K) | (M A B) | (M Z).
My problem is that the number of OR'ed operands of my real problem is huge and causes ...
-3
votes
1answer
26 views
Changing Date values to binary code [closed]
I am trying to code weekends and weekdays using numeric values, such that "Monday","Tuesday",..."Friday" = 0 and "Saturday"/"Sunday" = 1. I presently have formatted a column with "Day" containing ...
1
vote
0answers
51 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 ...
0
votes
1answer
38 views
How does maplist work in a program that inserts elements into an AVL Tree
I am studying Prolog and I could not follow the lessons so I have some doubts relating to a particular use of the maplist built in SWI Prolog predicate.
So let me explain my situation:
I have a ...
-1
votes
2answers
32 views
Nested tree element number
What I want to ask is mathematical/logical situation
I have nested tree which looks similar to
And I need the indexing number of each items order, ex:
Tube - 1
LCD -2
Plasma - 3
MP3 Player - 1
CD ...
0
votes
4answers
55 views
What is the Signal function (SIGINT)?
what does this statement below do?? if anyone can explain this function i would really appreciate it.
signal(SIGINT, SIG_DFL);
1
vote
3answers
74 views
Bit-fields confusion?
I am working with bit-fields in C and do not understand what is going on with them. I created this code but I do not understand why different things are coming up as usual.
struct tB
{
unsigned ...
0
votes
1answer
24 views
Logic for Form Validation for JS
Assume I have two forms, firstName and lastName.
I have an alphanumericvalidation method which I tested individually.
function alphaNumericValidation(Name)
{
...
0
votes
1answer
50 views
How to create a balance Tree from a list of element using this AVL predicate in Prolog?
I am studying Prolog and I am finding some problem to implement a predicate that take a list and from it build a balanced Tree.
I have implement these predicate that build an AVL Tree (I have take it ...
-2
votes
0answers
11 views
Cisco network record player, how does this work? [closed]
I am wondering what would be the working logic behind Cisco network player? What takes it to develop something like this ? What language did they use to develop such application ?
0
votes
1answer
60 views
Logic flow of rectangle to N-rectangles collision detection
I have a really hard time here figuring out the error in my program.
My code only works in 2 rectangles but if I increment number of rectangle, it doesn't work at all.
My program flows like this:
...
-1
votes
0answers
34 views
Origin of logical paradigm in modern programming languages [closed]
In my journey through paradigms I can easily understand imperative, functional, procedural and OO influence on modern programming languages.
As I can see,all modern languages have support for logical ...
0
votes
2answers
37 views
How to add a leaves to a tree in Prolog
I am studying binary tree in Prolog and I have some problem to add leaves to a specific b-tree.
I have the following predicates that add a single leaf to a b-tree:
addLeaf(nil, X, t(nil, X, nil)).
...
0
votes
2answers
33 views
django pagination understanding issue
I am trying to understand the principles of Django pagination logic.
My understanding problem is:
I have a search result page with 40 items inside. I want to use pagifier and show only 10 items per ...
0
votes
0answers
23 views
How to run the symfony2.2 cronjob in terminal, when clicked on a UI buton [duplicate]
I am a newbie in symfony, i have a problem.
I have a cron job file:
namespace ...
class escalationProcessCommand extends ContainerAwareCommand
{
protected $output;
protected function ...
-1
votes
1answer
38 views
Translate java Logical Operator into R
I need to convert this java statement into R (simplified):
return T/F || T/F || T/F ^ T/F;
I see that ^ is the "bitwise exclusive OR" in java, but I'm don't completely understand what this would be ...
1
vote
5answers
48 views
OR Logic in if statement issue.
I am having a problem with the logic in my if statement. I am trying to have it check to see if the strings character is equal to a, e, i, o, OR u. And then if so add the character to the phrase ...
0
votes
1answer
30 views
Logical help - java regex
I have a string which contains image tags, more than 1. Now I need to regex out the alt= tag. I tried it like this:
while (m3.find()) {
Pattern p4 = ...
-1
votes
3answers
41 views
How does this if statment trigger? [closed]
I was just working on some curl work, until I bumped into a interesting if statement. Thinking that it would never execute the if statement, to my surprise it does. How does this execute?
<?php ...
0
votes
2answers
29 views
Rails: Special classes based on params in views
What is the best way to add classes to table cells in rails based on differing criteria for each cell?
For example...I have a date cell: If the date is coming up on 10 days from that date, need to ...
0
votes
1answer
17 views
Creating level codes with action script 2.0
I want to create level codes, like in sea of fire (http://armorgames.com/play/351/sea-of-fire)
I have a text input box with the instance name "code" and a button that has this code:
on (release) {
if ...
0
votes
1answer
22 views
Strange issue with populating LinkedHashSet
Given the below code, is there some reason that when the final if-else statement steps into the else clause, if I un-comment the two lines of code and comment the "FOOZANAZABAR" and "TESTCAIRO" lines, ...
0
votes
1answer
55 views
Javascript match string against string in array
I have a set of input fields, each with the class "smarty_address_check"
<input type="text" class="smarty_address_check" value="this is a new value" />
<input type="text" ...
0
votes
1answer
53 views
Declarative interpretation of Bubble Sort algorithm in Prolog
I have some doubt about how work the following implementation of BubbleSort algorithm in Prolog.
I have very clear how BubbleSort algorithm work so my doubt is only related to the Prolog first order ...
0
votes
1answer
27 views
Find ArrayList for no sequence data in Java
I need to get arrayList of postalCodes by Reagion IDs, but my region id's are not in provided sequence and zip codes must be associates with mentioned region id. (This data is an small example, I have ...
0
votes
2answers
47 views
I don't understand what's wrong with this VHDL code?
I have the following code:
entity wave_select is
port( address:in std_logic_vector(6 downto 0);
ws1: in std_logic;
ws0: in std_logic;
wave_out: out std_logic_vector(6 downto 0));
end wave_select;
...
1
vote
3answers
30 views
What is the Difference between postfix and unary and additive in java
Please help me to understand what is the difference between two "TRUE" and "FALSE" outputs.
and also guide me how to get this logic and operator related topics in Oracle Docs.
int i = 1;
int j = 2;
...
-1
votes
2answers
55 views
How to delete the last element from a list in Prolog?
I am in the following situation: I have a list and I would to delete from it only the last element.
I have implement the following rule (that don't work well):
deleteLastElement([Only], WithoutLast) ...
1
vote
1answer
33 views
SQL Nested CASE - shortcut logic?
I am trying to get rid of all of my dynamic SQL code. This stored procedure seems to require some nested CASE statements withing the WHERE clause. This is working as expected. However, I am worried ...
1
vote
2answers
59 views
Prolog Family Tree Compile Errors
I've been getting two error messages when compiling this:
"Clauses of (-)/1 are not together in source-file" and
"Singleton variables: [X]"
...those two being examples of the errors I've been ...
0
votes
2answers
40 views
Building pricing logic using PHP
Hope y'all are having a wonderful day full of rainbows and roses!
Ok, ok .. I'll get to the point:
I've got a function that accepts multiple parameters and calculates the price of a product based on ...
2
votes
1answer
107 views
“Squares” Logic Riddle Solution in Prolog
"Squares"
Input:
Board size m × n (m, n ∈ {1,...,32}), list of triples (i, j, k), where i ∈ {1,...,m}, j ∈ {1,...,n}, k ∈ {0,...,(n-2)·(m-2)}) describing fields with numbers.
Output:
List of ...
1
vote
2answers
63 views
Php code fails to give corrent result most likely logic error
I have been racking my brain on this problem for the last few days and for the life of me can seem to find the issue code. Essentially this code generates a random amount of objects with an x and y ...
-1
votes
1answer
30 views
Some doubts about declarative meaning of a program that prints a list of lists in Prolog
Write a rule that take a list whose elements are themselves lists and
print on each line the elements of internals list:
Example:
?- printList[[1,a],[2,b]]).
1 a
2 b
The ...
-2
votes
0answers
17 views
Widget logic for Page with Custom Template [closed]
In the WordPress 2012 theme, I have setup a Custom Page Template for a news page and would like to have a sidebar widget appear only on that page of the site.
I am using widget logic with ...
4
votes
3answers
69 views
Logical differences between very similar terms in beginner javascript
What is the difference between these two terms:
if(counter % 4 != 0)
if(counter % 4 == !0)
I can't see any logical difference, yet my computer does (and I am 100% sure my computer is more ...
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 ) )
( ...






