1
vote
1answer
35 views

Prolog, Definite Clause Grammar

Some code I wrote for a definite clause grammar I followed the book "Learn Prolog Now" very closely lex(the,det(single)). lex(the,det(plural)). lex(a,det(single)). lex(some,det(plural)). ...
0
votes
1answer
32 views

Some doubts about BNF grammars and Prolog's DCG grammars

I am studying grammars in Prolog and I have a litle doubt about convertions from the classic BNF grammars to the Prolog DCG grammars form. For example I have the following BNF grammar: <s> ::= ...
3
votes
5answers
99 views

Recognize A^n B^n language in Prolog with no arithmetics

How to recognize A^n B^n language in Prolog without arithmetics and for any A, B where A != B? With known A = a and B = b we could write % For each 'a' save 'b' in a list, then check % whether ...
1
vote
1answer
152 views

Context Free Grammars to Prolog?

From your knowledge of translation and Type 2 grammars, recall example , defined as follows: G = {N, T, S, P} T = {x, y, z} N = {A, B, C} S = A P = < A> ::= x<B> < A> ::= ...
0
votes
2answers
239 views

DCG(Definite clause grammar) in Prolog

I am trying to make a DCG in prolog so that I create a sentence based on some predicates. I have two pieces of information = properties of objects ("Charles is a man.") and relations between objects ...
4
votes
3answers
445 views

Removing left recursion in DCG - Prolog

I've got a small problem with left recursion in this grammar. I'm trying to write it in Prolog, but I don't know how to remove left recursion. <expression> -> <simple_expression> ...
2
votes
1answer
89 views

Extensional DCG Test Cases

I am looking for extensional DCG test cases. Means test cases that check the right functioning of a DCG processor in terms of the behaviour of the resulting converted rules, and not in terms of its ...
1
vote
3answers
107 views

Password checking with prolog/2

I've got this Prolog program below that examines if a password fulfills certain rules (the password must contain a letter(a-z), a number(0-9),a double letter (aa,ll,ww etc.), must start with a letter ...
1
vote
1answer
96 views

Password-checking with prolog

I want to write a prolog program which tells me if a password fulfills the rules, which are: the password must contain a letter(a-z), a number(0-9), a double letter (aa,ll,ww etc.), must start with ...
7
votes
2answers
298 views

Prolog : Combining DCG grammars with other restrictions

I'm very impressed by Prolog's DCG and how quickly I can produce all the possible structures that fit a particular grammar. But I'd like to combine this search with other constraints. For example, ...
1
vote
2answers
195 views

Parse Variables Using DCG

I am having trouble parsing sequences that begin with capital letters into variables using Prolog's DCG notation. For instance, if I have the string f a X y Z X and a DCG that parses this string, ...
2
votes
1answer
997 views

Using a Prolog DCG to split a string

I'm trying to use a DCG to split a string into two parts separated by spaces. E.g. 'abc def' should give me back "abc" & "def". The program & DCG are below. main:- prompt(_, ''), ...
1
vote
1answer
254 views

How to make Prolog's DCG not greedy?

I want to write a DCG predicate that will accept an alphabetic label, a space, a pseudolabel that may contain spaces or letters, another space, and another alphabetic label, and finally a period, like ...
7
votes
1answer
301 views

Problems with Prolog's DCG

The project is about translating semi-natural language to SQL tables. The code: label(S) --> label_h(C), {atom_codes(A, C), string_to_atom(S, A)}, !. label_h([C|D]) --> letter(C), ...
5
votes
3answers
2k views

Concatting a list of strings in Prolog

I'm writing a Lisp to C translator and I have a problem with handling strings. This is a code that transforms an unary Lisp function to a C equivalent: define(F) --> fun_unary(F), !. fun_unary(F) ...
0
votes
1answer
238 views

Prolog: Simple DCG question

I've been trying to get used to using DCGs in Prolog and failing. How can I define a set of grammar rules to accept the language a^n b^n? E.g. aaaabbbb or ab etc... Thanks :).
4
votes
3answers
189 views

Question - formal language in prolog

I am trying to build a DCG which recognizes all lists which match this form : a^n b^2m c^2m d^n. I have written up the following rules: s --> []. s --> ad. ad --> a, ad, d. ad --> bc. bc ...
0
votes
2answers
382 views

Prolog Question - DCG

Do you happen to know where can I find a list of prolog problems/exercises which involves DCG so that I can understand better this concept? I have read some specifications regarding it, but the best ...
2
votes
2answers
767 views

DCG in Prolog — strings

I'm writing a Lisp-to-C translator using Prolog's built-in DCG capabilities. This is how I handle arithmetic: expr(Z) --> "(", "+", spaces, expr(M), spaces, expr(N), ")", {swritef(Z, "%d + %d", ...
3
votes
2answers
297 views

How to write a square bracket in prolog?

This may sound strange, but it is used in a parser, I want to be able to parse something of the form foo[bar] So this would be represented in a list as: [foo, [, bar, [] Maybe such a word ...
1
vote
1answer
205 views

What DCG rules should be added?

okay, so I am using prolog to build a simple xml parser. And I have the following xml file: <ip> <line> 7 </line> <envt> p1:1 in main:1 </envt> </ip> ...
1
vote
1answer
558 views

Prolog DCG illustration please

Currently I am playing with DCG in Prolog to parse an XML file. I was able to get the following code snippet which is able to parse a simple XML such as: <author> <name> <f> arthur ...
5
votes
3answers
574 views

Parsing numbers with multiple digits in Prolog

I have the following simple expression parser: expr(+(T,E))-->term(T),"+",expr(E). expr(T)-->term(T). term(*(F,T))-->factor(F),"*",term(T). term(F)-->factor(F). factor(N)-->nat(N). ...
1
vote
2answers
238 views

Counting definite clause grammar recursions in Prolog

I have the following Prolog definite clause grammar: s-->[a],s,[b]. s-->[]. This will result in words like [a,a,b,b] being accepted in opposite to words like [a,b,a,b]. To put it in a ...
2
votes
3answers
2k views

Learn Prolog Now! DCG Practice Example

I have been progressing through Learn Prolog Now! as self-study and am now learning about Definite Clause Grammars. I am having some difficulty with one of the Practical Session's tasks. The task ...