DCGs (Definite Clause Grammars) are a compact way to describe lists in Prolog.

learn more… | top users | synonyms

0
votes
0answers
12 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
2answers
29 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 ...
-1
votes
1answer
18 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 ...
0
votes
1answer
31 views

Accessing SWI-Prolog libraries from Logtalk

I'm having a lot of fun using Logtalk, but ran into an issue using phrase_from_file. Specifically, my case looks something like this: :- object(scan_parser). :- public(scanlist//1). ...
-1
votes
1answer
28 views

Some doubts about how Prolog automatically convert DCG grammars int a set of rules

I am studying DCG grammar in Prolog using Ivan Bratko book: "Programming for Artificial Intelligence" and I am finding some problem to understand how Prolog automatically convert a DCG grammar into a ...
0
votes
1answer
30 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> ::= ...
0
votes
1answer
32 views

Define a dcg for palindromes over the alphabet {a,b} of 2 symbols a and b such that the number of a's is one less than the number of b's

I am trying to define a palindrome where the number of a's is one less than the number of b's. I cant seem to figure out how to write it properly please-->palindromes. palindromes-->[]. ...
1
vote
1answer
49 views

Prolog - DCG - random sentence

I'm new to Prolog, and I'm trying to write a small program that will give a random sentence from a DCG. My previous way of thinking was to use findall/3 to make a list of all possible sentences, and ...
0
votes
1answer
27 views

Diagnostics messages for pascal parser

I'm writing a simple pascal parser and have specified some grammar rules like program_header --> program, id, leftparenthesis ... etc program --> [500] id --> [300] etc How would I go ...
0
votes
1answer
49 views

DCG parser in Prolog

Given the following grammar: sentence = gram "+" gram . conjunction = conj "and" "and" conj . booj = "not" boolit. pos = "T"| "fd"| "" and me "". I want to write a DCG parser ...
0
votes
1answer
54 views

Prolog, error when querying a false statement

input :- read_line_to_codes(user_input, Input), string_to_atom(Input,Atoms), atomic_list_concat(Alist, ' ', Atoms), phrase(sentence(S), Alist), action(S). statement(Rule) --> [Noun, 'is', 'a', ...
0
votes
1answer
35 views

Parsing an integer in a string?

I was going through this example on DCG integer(I) --> digit(D0), digits(D), { number_codes(I, [D0|D]) }. digits([D|T]) --> digit(D), !, ...
3
votes
2answers
73 views

English constraint free grammar prolog

I ran into an infinite recursion problem while trying to implement a very simple constraint free grammar in prolog. Here are my rules: (vp -> verb phrase, np -> noun phrase, ap -> adj phrase, pp -> ...
5
votes
2answers
129 views

What does the “-” symbol mean in Prolog when dealing with lists?

I was reading the answer to this question, p(X) :- read(A), q(A,X-[]). q(end,X-X) :- !. q(A,[A|X]-Y) :- read(B), q(B,X-Y). The code above uses the syntax List-List. I somewhat understand what ...
2
votes
1answer
119 views

How to find out if Prolog performs Tail Call Optimization

Using the development version of SWI Prolog (Win x64), I wrote a DCG predicate for a deterministic lexer (hosted on github) (thus all external predicates leave no choice points): ...
1
vote
1answer
42 views

Prolog_Numbers translation english to french using DCG

I have to write some code that translate numbers from english to french (from 1 to 999) using the DCG formalism of Prolog. Do I have to write down two separate grammar rules (one for english and one ...
1
vote
1answer
142 views

Prolog Roman Numerals (Attribute Grammars)

I am working on an assignment in prolog that scans a list of numerals and should return whether the list is a valid roman numeral and the decimal value of the numerals. Ex) 1 ?- roman(N, ['I'], []). ...
3
votes
3answers
112 views

Removing whitespace from strings in Prolog

I wrote parser in Prolog. I haven't finished yet. It is a part of code. The next step is killing all whitespace in string. parse(Source, Tree) :- kill_whitespace(Source, CleanInput), % remove ...
1
vote
2answers
58 views

Writing elements in prolog console

In prolog I have do to something like this: ************************ * * * ########## * * # button # * * ########## * * ...
1
vote
1answer
63 views

How to calculate each number's frequency?

There is a big data file whose format is: 111111 11 22 33 44 55 66 77 222222 21 22 23 29 99 98 00 ...... .. then how can i use prolog to calculate each number's frequency ? Sincerely!
4
votes
2answers
95 views

prolog dcg restriction

I would like to use DCGs as a generator. As of now, the syntax is s-->a,b. a-->[]. a-->a,c. c-->[t1]. c-->[t2]. b-->[t3]. b-->[t4]. I would like to generate all s where the ...
2
votes
1answer
117 views

Trying to understand parser DCG in prolog

recently I've been playing with DCG in Prolog but I've been facing some issues regarding how exactly does it work. For instance, I have this small grammar: <atom> :: <letter> ...
2
votes
2answers
109 views

Standard way to see what phrase/3 translates?

I am trying to dig into the GNU Prolog behaviour of: test(X,I,O) :- phrase(X,I,O). ?- test(("a",!,"b"),"ab",""). Is there a standard way to see to what phrase/3 translates? According to the ISO ...
2
votes
2answers
82 views

Unifying lists of different length by concatenating atoms

Consider the following list: [my,name,is,jack,baur] I want to unify this to the following pattern: [my,name,is,Name] So that the variable Name has the value 'jack baur' in the end. The ...
6
votes
4answers
673 views

Prolog - DCG parser with input from file

As part of a project I need to write a parser that can read a file and parse into facts I can use in my program. The file structure looks as follows: property = { el1 , el2 , ... }. What I ...
0
votes
0answers
60 views

file parsing prolog [duplicate]

Possible Duplicate: read file and construct facts in prolog I need to solve the stable mariage problem in prolog. The data must be read from a file in the following format: man = {m1, ...
3
votes
2answers
63 views

prolog,very simple dcg syntax

I am trying to understand the basic syntax of prolog and dcg but it's really hard to get ahold of proper information on the really basic stuff. Take a look at the code below, I basically just want to ...
0
votes
2answers
126 views

Very basic dcg prolog syntax

I am trying to understand prolog and definite clause grammar but I am having a very hard time understanding both of them. I am really trying to understand how to use the dcg syntax... Here I have ...
1
vote
1answer
107 views

translate prolog to formal english

i'm trying to write a program that translate a prolog sentence to a formal english sentence. here is my code : sentence --> [if],[the], first_phrase, second_phrase. first_phrase --> predicate, ...
2
votes
2answers
149 views

How to write optional in SWI-Prolog

I need to implement some rules by Prolog ex: S ---> A,[b],{c}. Where: [b] could happen once or none like 0 or 1 time {c} could happen 0,1,2,...times How can i write it? Edit: I used this: ...
2
votes
2answers
102 views

Prolog DCG read from file with separotr

I'm making my first steps in Prolog, but I have encountered a problem. I'm trying to read from a file records separated by comma upto_comma(Codes) --> string(Codes), ",", !. list_w([W|Ws]) --> ...
0
votes
1answer
139 views

Infinite List of Terminals - Prolog Grammar Rules

Is it possible to define an indefinite number of terminals in Prolog when working with grammar rules? The following example describes the problem: selection-->([if,'('],condition,[')', ...
0
votes
1answer
72 views

Converting a small regular expression to a DCG

I understand that Prolog programmers typically use DCGs instead of regular expressions for matching patterns in a string. In Perl, one might write if ( '... accd' =~ /a+b*c{2,4}d$/ ) { say ...
0
votes
1answer
158 views

Implement an Arithmetic Parser in Prolog

I have the following Prolog code: expression-->first,operator,second. first-->[X]. operator-->['+'];['-']. second-->[X]. After compilation, the machine responds with "yes" in the ...
3
votes
1answer
122 views

DCG for idiomatic phrase preference

I have a manually made DCG rule to select idiomatic phrases over single words. The DCG rule reads as follows: seq(cons(X,Y), I, O) :- noun(X, I, H), seq(Y, H, O), \+ noun(_, I, O). seq(X) --> ...
0
votes
1answer
71 views

Prolog, Define Clause Grammar and File

I'm new to Prolog and I have just started looking around. I read the Define Clause Grammar chapter on both Simply Logical and Learn Prolog now!, so now I wanted to get started with some exercise but ...
2
votes
1answer
175 views

Error using string_to_atom: Arguments are not sufficiently instantiated

I'm working on a URI parser in Prolog, but at the moment I'm stuck with something much simpler. I am exploring a string to find a particular char, ":", and when I find it, I want to have a string that ...
0
votes
2answers
72 views

Recognizing patterns in DCG

I am currently righting a dcg that takes a list of form[0,1]* and tells me if the number of 0's in the list is 3 greater than the number of ones.I cant seem to get the third part(sss) to work. ...
0
votes
0answers
56 views

Counting numbers in a list in a Definite Clause grammar

I am currently writing a program to perform the following.If i have a list of[0,1]* and my sample list is [0,1,0,0,1],I want to write a dcg that that returns a count for me.Where if the number is 0 ...
1
vote
1answer
150 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> ::= ...
1
vote
2answers
151 views

DCG and left recursion

I am trying to implement a dcg that takes a set of strings of the form {a,b,c,d}*.The problem i have is if I have a query of the form s([a,c,b],[]),It returns true which is the right answer but when i ...
2
votes
1answer
149 views

Prolog - Turning a list into a list of clauses

I am trying to use meta programming and DCGs to turn a list into a list of clauses using Prolog. For example, I would like to turn [a, man, is, a, human] into [ (human(X) :- man(X)) ] I figured that ...
1
vote
2answers
242 views

prolog convert numbers into roman numerals

i have this code that converts integers into roman numerals i need to add a function that compares an integer with a roman numeral input and show if it's try or false, for example: roman(v,5). true ...
0
votes
0answers
39 views

Prolog- matching parts of a list [duplicate]

Possible Duplicate: Prolog- translating English to C We basically have an assignment where we're given a list that represent some notation in English, such as [add,3,to,5], and we need to ...
1
vote
1answer
283 views

Prolog- translating English to C

We have a relatively simple assignment that I understand in theory but I think I just don't quite understand Prolog's syntax enough to get that into code. Basically, we have a list of English ...
3
votes
2answers
147 views

Remove Ambiguity in abstract syntax in other to write DCG parser Prolog

P => Program K => Block S => Single-command C => Commands E => Expression B => Boolean-expr I => Identifier N > Numeral P ::= K. K ::= begin C end C ::= C1 ; C2 | S S ::= I := E | if (B) ...
3
votes
1answer
171 views

DCG Expansion: Is Steadfastness ignored?

Assume I have the following DCG rule: factor(X) --> "(", expr(X), ")". Normally this would be translated to: factor(X, A, B) :- [40|C] = A, expr(X, C, D), [41|B] = D. Would a Prolog ...
1
vote
1answer
138 views

Prolog parse tree generation fails

I have the following prolog rules. b(b(true)) --> [true]. b(b(false)) --> [false]. b(b(E,[=],E)) --> e(E),[=],e(E). b(b([not],B)) --> [not],b(B). e(e(I)) --> i(I). e(e(N)) --> n(N). ...
7
votes
3answers
527 views

Stack overflow in Prolog DCG grammar rule: how to handle large lists efficiently or lazily

I'm parsing a fairly simple file format consisting of a series of lines, each line having some space separated fields, that looks like this: l 0x9823 1 s 0x1111 3 l 0x1111 12 ⋮ I'm using ...
3
votes
4answers
603 views

Prolog List. Check if first and last element in list is similar

Example: firstlast([1,2,3,4,1]). true; firstlast([1,2,3,4]). false; firstlast([5,10,4,3]). false; exc... The problem is im only allowed to use recursion with the predicate "firstlast". ? I have ...

1 2 3 4