I have a simple grammar such as

S::=a S b
S::=[] (empty string)

Now i want to write a parser for the above grammar like

cfg('S', [a,'S',b])

which generates a sentence aaabbb by left most derivation.

I'm not good enough to handle dcg/cfg in prolog. So pls help me with this example so that i can go ahead and try something bigger.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Consider this DCG code:

s-->[].
s-->[a],s,[b].

to run a predicate you defined by DCG you should add two more arguments at the end: the "input" and what it's left. If you want to recognize the whole list you simply put []. So, when you run it you get:

38 ?- s(C,[]).
C = [] ;
C = [a, b] ;
C = [a, a, b, b] ;
C = [a, a, a, b, b, b] ;
C = [a, a, a, a, b, b, b, b] ;
...

If you wanted some sort of "return" string you could add it as an extra arg. To write prolog code in a dcg clause you use {}:

s('')-->[].
s(S)-->
    [a],s(SI),[b],
    { atomic_list_concat([a,SI,b],S)}.

and you get:

40 ?- s(R,X,[]).
R = '',
X = [] ;
R = ab,
X = [a, b] ;
R = aabb,
X = [a, a, b, b] ;
R = aaabbb,
X = [a, a, a, b, b, b] ;
R = aaaabbbb,
X = [a, a, a, a, b, b, b, b] ;
R = aaaaabbbbb,
...

we generated all the strings that are recognized by this grammar; usually you just want to check if a string is recognized by the grammar. to do that you simply put it as input:

41 ?- s([a,b],[]).
true 

42 ?- s([a,b,b],[]).
false.

note that we put the S::=[] rule first otherwise prolog would fall in a infinite loop if you asked to generate all the solutions. This problem might not be trivial to solve in more complex grammars. To get the solutions you can use length/2:

?- length(X,_),s(X,[]).
X = [] ;
X = [a, b] ;
X = [a, a, b, b] ;
X = [a, a, a, b, b, b] ;
X = [a, a, a, a, b, b, b, b] 

even if your code is:

s-->[].
s-->[a],s,[b].
link|improve this answer
i understood a bit about what you explained. But frankly speaking how to code the parser which generates all the possible strings? Can you give me the entire code? I'm really finding prolog very tuff and confused?? – ven Nov 17 '11 at 23:28
1  
The 'entire code' it's these 2 lines at start. Awesome, isn't it? – chac Nov 17 '11 at 23:42
yup, it's the first 2 lines. write them in a file and consult it (cannot use assert/1 for DCG in swi-prolog atm) – thanosQR Nov 18 '11 at 6:46
2  
Very nice! One detail: It's best to use the official phrase/2 (or phrase/3) interface to DCGs, since other implementations may translate DCG rules differently to plain Prolog code. Using phrase/2 keeps your program portable across implementations, for example, instead of s(Ls, []), you can write phrase(s, Ls). – mat Nov 18 '11 at 8:09
1  
yup, it's a built-in predicate. the first arg is a list of atoms and the second is their concatenation. I think that it was recently added in swi-prolog so maybe you will have to replace it with atom_concat(a,SI,Temp), atom_concat(Temp,b,S). – thanosQR Nov 18 '11 at 14:44
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.