This is one of the strangest things I observed in the history of Prolog.
Namely that a wrong expression syntax is shown around already for ages.
The wrong syntax is already found in the DEC10 Prolog documentation
and the misfit is seen when we look at a rule:
expr(Z) --> num(X), "/", expr(Y), {Z is X/Y}.
etc..
This makes the division operator xfy, but it should be yfx. Thus with
the above rule an expression 10/2/5 is read as 10/(2/5) and leads to
25 as the result. But in fact the example should be read as (10/2)/5
yielding 1 as the result.
The problem is that the correct syntax would be left recursive.
And DCG do have problems with left recursive rules. The Prolog
interpreter would just run into an infinite loop for a left
recursive rules by repeatedly call expr/3:
expr(Z) --> expr(X), "/", num(Y), {Z is X/Y}
etc..
So the solution is to eliminate the left recursion by introducing
an accumulator and additional rules. I don't know whether this
method works in general, but it works for sure in the present case.
So the correct and depth first executable rule would read:
expr(Y) --> num(X), expr_rest(X,Y).
expr_rest(X,T) --> "/", !, num(Y), {Z is X/Y}, expr_rest(Z,T).
etc..
expr_rest(X,X).
The above grammar is a little bit a more challenging DCG. It is not
anymore pure Prolog, since it uses the cut (!). But we could
eliminate the cut, for example by a push-back, something along
the following lines. The push-back is again a complicated
matter to explain in a DCG introduction, and we would need to
introduce an stop character at the end of an expression to make
it work:
etc..
expr_rest(X,X), [C] --> [C], {not_operator(C)}.
Or we could neither go into the lengths of the cut or the push-back
and live with it that on backtracking the parser will do additional,
in the present case unnecessary, work. So bottom line is probably,
although the example is not correct, it is simple enough to explain DCG
without needing to much advanced stuff of DCG.
Interestinglyg the missing parenthesis syntax is hardly affected by
the elimination of left recursion. Simply add:
num(X) --> "(", !, expr(X), ")".
Oops, a cut again!
Best Regards
Full code can be seen here:
http://www.jekejeke.ch/idatab/doclet/prod/en/docs/05_run/06_bench/09_programs/10_calculator/01_calculator.p.html
P.S.: Instead of eliminating the left recursion, we could also have
worked with some form of tabling.
[5, *, 4, +, 7]and check the resulting value. – larsmans Sep 25 '11 at 9:10