Declarative programming is a paradigm of expressing the logic of a computer program or computation without explicit describing its control flow.

learn more… | top users | synonyms

0
votes
1answer
24 views

Write a Prolog DCG grammar that handle the mean of a sentence and also build its parse tree

I have this DCG grammar that understand and agree phrases like: [john, paints] and [john, likes, mary] managing the semantic meaning directly into the DCG grammar by the use of parameters ...
0
votes
0answers
21 views

XAML timer-triggered binding update

Suppose you have textbox whose value is time-dependent, like say, the the time passed since the application was started. Is it possible to express a solution in pure XAML which automagically ...
0
votes
1answer
27 views

Some doubts about how work this DCG grammar for subset of natural language in Prolog

I am studying DCG grammar for natural language processing using Prolog and I have some doubts about if I have understand it correctly or if I am missing something. This is my DCG grammar: ...
0
votes
1answer
72 views

Is C++ really imperative? Lots of it look like declarative to me

I read that C++ is an imperative language, but looking at struct, class and other object type definitions, it looks like it is declarative? I mean, for example, members are simply declared within the ...
0
votes
2answers
34 views

Doubts about simple semantic knowledge rappresentation predicate in Prolog

I am studying DCG grammar and parse tree in Prolog on Ivan Bratko book "Programming for Artificial Intelligence" In a program that use DCG grammar to extrapolate the meaning of a sentence I find ...
0
votes
1answer
39 views

Some doubts related about how work a meaning predicate that interprets the parse tree of a DCG grammar in Prolog

I am studying Prolog DCG grammar* and **parse tree on the Ivan Bratko book: "Programming for Artificial Intelligence" I am finding some difficulties with the following example that provide a DCC ...
0
votes
1answer
22 views

Program that “mean” a parse tree in Prolog, don't work

I am studying DCG grammar and parse tree using the Ivan Bratko book: Programming fro Artificial Intelligence. On the book I found the following example that show a DCC grammar that also generate a ...
-1
votes
1answer
20 views

Some doubts related DCG grammar and parse tree relation in Prolog

I am studying DCG grammar and parse tree in Prolog using Ivan Bratko book: "Programming for Artificial Intelligence" I have some doubt about my interpretation of this DCG grammar that generate a ...
1
vote
1answer
18 views

BFS visit in Prolog, why this program don't work?

I have take this program that impement BFS visit algorithm from Ivan Bratko book: "Programming for Artificial Intelligence". It's logic is pretty clear form me (I have commented the lines of code ...
1
vote
2answers
37 views

Iterative deepening with Max depth constraint in Prolog

I have to modify the following Prolog program that implements the iterative deepening dfs search on a graph: s(a, b). s(b, c). s(c, d). s(a, d). goal(d). /* Solution is the inverse list of the ...
1
vote
1answer
29 views

Is it correct this interpretation of DFS algorithm version that avoids loops in Prolog?

I am studying DFS algorithm the DFS algorithm version that avoids loops, this is the code /* It is TRUE that Solution is the path from the start node Node to a goal state node if it is TRUE the ...
2
votes
1answer
39 views

How to implement a solve predicate for this “moving blocks” Prolog exercise?

I am studying Prolog using Ivan Bratko book: Programming for Artificial Intelligence and I am finding some difficulties to implement the final part of an exercise proposed The exercise is a program ...
1
vote
1answer
28 views

Some doubts about how work this particular query of a delete from a list predicate

I have a doubt about how work this query for this del/3 predicate: /* BASE CASE: If I delete X from List and X is the HEAD of List, NewList is the Tail of List */ del(X, [X|Tail], ...
2
votes
2answers
39 views

some doubts about a Prolog program that use a moves graph to move blocks on 3 stack

I am studying Prolog using Ivan Bratko book: Programming for Artificial Intelligence and I am finding some problems trying to understand how work an exercise that use graphs to decide how to move ...
1
vote
1answer
51 views

8 queen solution that use a space state “graph” in Prolog don't work

I am studying Prolog on Ivan Bratko book: Programming for Artificial Intelligence and on the book I have found this version of 8 Queens problem that use a space state "graph" to solve the problem: ...
0
votes
0answers
23 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 ...
2
votes
1answer
38 views

Recursive similarity between trees according to the number of common subtrees in Prolog

I am stufying Prolog using SWI Prolog and I am finding many difficult with this code snippet that found if 2 binary trees have N common subtree (having the same root): /* BASE CASE: T1 and T2 are two ...
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
4answers
76 views

Why this dynamic version of Fibonacci program is incredibly faster then this other? Prolog solutions

I am learning Prolog using SWI Prolog and I have a doubt about the followings two solutions of the Fibonacci number calculation program: The first one is this: fib(1,1). fib(2,1). fib(N,F) ...
-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). ...
1
vote
1answer
37 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
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
1answer
43 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 ...
0
votes
1answer
53 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 ...
0
votes
2answers
38 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
1answer
58 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
0answers
32 views

Use an extended control declaratively: namespace confusion

I want to extend an ASP DropDownList server control and use it declaratively thus: <eddl:ExtendedDropDownList ID="abc" runat="server"> replacing the existing <asp:DropDownList ID="abc" ...
-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
votes
1answer
30 views

Some doubts about the reading of a file in Prolog using a Stream

I have a doubt about how work this simple Prolog Program that read character from a file and put these character into a list. The code work well and is the following one: readFile(FileInput, ...
-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 ...
1
vote
1answer
56 views

How to read all the Prolog predicate in a .txt file using read predicate in Prolog?

I am learning Prolog using SWI Prolog. Consider the situation in which I have a file named myFile.txt that contains the following content: line1. line2. line3. Now I am trying to create a predicate ...
1
vote
2answers
54 views

How to read from file using see and putting the content into a list in Prolog?

I am studying Prolog using SWI Prolog and I am finding many difficulties about how to read textual data from a file and printing it on the screen using see built in predicate. I have this program ...
0
votes
2answers
42 views

Can't access a file in Prolog

I am studying Prolog using SWI-Prlog. I am finding some problems with the following example that simply access to a file and write in it what the user put in the Prolog Shell. processFile(File) :- ...
0
votes
0answers
31 views

OSGI RCP Blueprint does not allw me to access declarative services

I have an Eclipse RCP application that references Gemini Blueprint services, which are loaded correctly when the application is started, but magically have disappeared when I need them, for instance ...
-1
votes
1answer
35 views

Some doubts about the use of the cut in a program that read and format an input text in Prolog

I have some doubt related to the declarative interpretation of this simple Prolog example that read a sentence from the current input stream and output the same sentence reformatted so that multiple ...
0
votes
1answer
59 views

Can I use setof predicate to build a list without duplicates starting from a list with duplicate?

I am learning Prolog for an universitary exame using SWI Prolog and I have the following exercise: Write the duplicates predicate that starting from a ListWithDuplicates list (a list that admit ...
0
votes
1answer
73 views

Some problems asserting a new rule in SWI-Prolog

I am studying on Ivan Bratko book: "Programming for Artificial Intelligence" for an universitary exame and using SWI Prolog and I have some doubts about an example show on this book regarding the ...
-1
votes
1answer
26 views

Prolog arg built in personal implementation, don't work

I have some trouble with an exercise that ask me to implement the classic arg predicate in Prolog. arg(?Arg, +Term, ?Value) Where Arg it is the index of the argument in the arguments list of a ...
0
votes
1answer
39 views

How to implement arg predicate in Prolog?

I have some trouble with an exercise that ask me to implement the classic arg predicate in Prolog. arg(?Arg, +Term, ?Value) Where Arg it is the index of the argument in the arguments list of a ...
0
votes
1answer
33 views

Use of =.. predicate to perform symbolic manipulation of furmulas in Prolog

I am learning Prolog for an universitary university exam using SWI Prolog and I have some doubts about how it work this exercise that use the univ =.. =.. predicate to perform symbolic manipulation of ...
0
votes
1answer
33 views

Some questions about the use of CUT in this Prolog exercise

I am studying Prolog for an universitary exame using SWI Prolog and I have some doubts about the differences between two different solution of the following problem: Define the clause count(X, L, ...
0
votes
1answer
48 views

Global variable in unbind method of OSGi service is null

My application is based on OSGi (Equinox). A OSGi service binds another service by defining a Component XML and bind / unbind methods in the appropriate class. In the unbind method the value of a ...
0
votes
1answer
56 views

Some questions about declarative interpretation of not predicate in Prolog

I think that I think that I am doing a litle confusion with the declarative view of not predicate in Prolog. I have that I can implement not predicate simply in this way: not(P) :- P, !, fail; ...
1
vote
1answer
39 views

Different predicate in Prolog, don't work (always false)

I am learning Prolog for an universitary exame using SWI Prolog and I have some question about this simple program that implement the different predicate that say TRUE if two element are different (if ...
1
vote
1answer
55 views

Negation as failure in Prolog is a procedural behavior?

I have a litle question about the negation as failure in Prolog language: This is a question more theoretical than practical because I have clear how this example work. so I have the following ...
0
votes
1answer
49 views

Implement a Prolog predicate that say if an element belong to a list. Problems with not numerical lists

I am studying Prolog for an universitary exam using SWI Prolog. I am finding some problem with this exercise: Implement the predicate: **not_member(X,L) that is TRUE if the element X does not ...
0
votes
1answer
125 views

Some explanation about 8 queen solution that use permutation

I am studyin Prolog for an universitary exam on SWI Prolog implementation. I have some doubt about how work this version of 8 Queen problem that solve the problem using the permutations: ...
1
vote
1answer
143 views

From 8-Queens solution to more generic n-Queens solution in Prolog

I am studying Prolog for an universitary exame and I have some problem with the following exercise. I have the following classic solution of 8-Queens problem (and this is not a problem for me), ...
-2
votes
1answer
52 views

Some problems in a Prolog program that simulate an authomaton and that accepts a string after a minimum number of steps [closed]

Hwllo to everybody, I am studying Prolog and I have some problem with the following exercise. I have a working Prolog program that impelent a non deterministic authomaton that accepts or not accepts ...
-1
votes
2answers
66 views

Implementing a relation on a data structure [closed]

I have the following simple Prolog program that, through the use of data structure, represents a family composed of husband, wife and children list: family( person(bob, smith, date(7,may,1968), ...

1 2 3 4 5