Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
10answers
2k views

What are good starting points for someone interested in natural language processing?

Question So I've recently came up with some new possible projects that would have to deal with deriving 'meaning' from text submitted and generated by users. Natural language processing is the field ...
12
votes
2answers
595 views

Swi prolog in Semantic Web

I would like to listen from people who have real world programming experience in using swi-prolog's semantic library. Edit: The reason for this question is, among the many people I talked to with ...
11
votes
3answers
237 views

Parsing in Prolog without cut?

I found this nice snippet for parsing lisp in Prolog (from here): ws --> [W], { code_type(W, space) }, ws. ws --> []. parse(String, Expr) :- phrase(expressions(Expr), String). ...
7
votes
4answers
2k views

Input in Prolog

I'm currently working on a recursive Prolog program to link routes together to create a basic GPS of the Birmingham area. At the moment I can get output as so: Input routeplan(selly_oak, aston, P). ...
6
votes
2answers
142 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, ...
6
votes
1answer
300 views

A prolog for Prolog? [closed]

In case you write Prolog programs regularly you probably have your own library of predicates you always rely on. Some Prolog systems come with a rich set of predefined predicates and some not. Some ...
5
votes
1answer
198 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), ...
4
votes
2answers
80 views

Prolog DCGs Multiple Features?

From what I understand, in Prolog you capture features while parsing like so: foo(feature(X)) --> [X], bar. Is this common when designing DCGs ? foo(featureA(X), featureB(Y)) --> [X], [Y], ...
4
votes
3answers
283 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). ...
3
votes
1answer
72 views

Given a substitution S and list Xs, how to apply S to Xs

Suppose I have a substitution S and list Xs, where each variable occurring in Xs also occurs in S. How would I find the list S(Xs), i.e., the list obtained by applying the substitution S to the list ...
3
votes
2answers
184 views

Programs can you develop with prolog? [closed]

Our company is giving us time to learn and develop using a alternative programming language. So we get every Friday afternoon as our own time to develop using a different programming language and ...
3
votes
2answers
440 views

RegEx Parser written in Prolog

I've been banging my head against the wall on this homework problem for a few hours now. We have to parse a regular expression with Prolog. For the most part, the predicates I have work, but there's ...
3
votes
3answers
570 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) ...
3
votes
3answers
114 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 ...
3
votes
2answers
191 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 ...
3
votes
1answer
374 views

Parsing with DCGs in Scheme (without Prolog)?

Lots of Prolog-in-Scheme implementations are out there. E.g. Kanren, Schelog. Apparently in "Paradigms of AI Programming" Norvig implements Prolog-to-Lisp compiler in Lisp in order to use Definite ...
2
votes
2answers
102 views

Prolog-based interpreter

I've already gotten my feet wet with functional programming; I am familiar (though not proficient) in Haskell and PLT Scheme. I've used PLT Scheme to build little interpreters for toy languages ...
2
votes
3answers
175 views

prolog to solve grammar involving braces

I'm trying to solve DCG grammar in prolog and succeeded upto a point, i'm stuck in evaluating the expressions involving braces like these. expr( T, [’(’, 5, +, 4, ’)’, *, 7], []), expr(Z) --> ...
2
votes
2answers
92 views

Avoid linear cost of append/3 in Prolog

Let's assume that we're reading from standard input and building a list of all the lines that have been read. In the end, we need to display those lines, separated by commas. go:- prompt(_, ''), ...
2
votes
1answer
342 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(_, ''), ...
2
votes
1answer
128 views

Prolog Question - Simple Grammar Implementation

If I have the following grammar: S → ε S → a S b S How do I implement it in Prolog? I tried this: isMatched([]). isMatched([a,b]). isMatched([a|[S1|[b|S2]]]) :- isMatched(S1), isMatched(S2). ...
2
votes
2answers
1k views

Read a file line by line in Prolog

I'd like to read a plain text file and apply a predicate to each line (the predicates contain write which does the output). How would I do that?
2
votes
1answer
351 views

Prolog : Remove extra spaces in a stream of characters

Total newb to Prolog. This one is frustrating me a bit. My 'solution' below is me trying to make Prolog procedural... This will remove spaces or insert a space after a comma if needed, that is, until ...
2
votes
3answers
1k 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 ...
1
vote
1answer
27 views

Prolog : Divide word on syllables using predicate “Name”

I need to read a word in from the user and then split it into syllables based on one of 2 rules: vowel-consonant-vowel, or vowel-consonant-consonant-vowel. Looks that predicate "name" does not work, ...
1
vote
2answers
43 views

Prolog predicate calling

In the following tutorial: http://www.csupomona.edu/~jrfisher/www/prolog_tutorial/7_3.html There is the part: test_parser :- repeat, write('?? '), read_line(X), ...
1
vote
2answers
69 views

How do you translate DCGs into normal definite clauses in PROLOG?

How would you translate the following DCGs into normal definite clauses of PROLOG? expr_regular --> cor_ini,numero,guion,numero,cor_fin. cor_ini --> ['[']. numero --> ...
1
vote
2answers
108 views

Calling facts from database in prolog

I've inserted the given context free grammar into the database using assert(....) If the grammar is something like S-->a,S,b S-->c This grammar is inserted into the database. I have to write ...
1
vote
1answer
91 views

Handling prolog context free grammar

Given a CFG S --> a S b | c | d I wanna write a predicate like, grammar('S', sentence) which generates all possible sentences like sentence=acb, sentence=acd, sentence=c, ...
1
vote
1answer
91 views

How to Read a file in SWI Prolog?

I want to read a file that will contain names in each line.And I don't know how to do this with SWI Prolog ,I have sufficient knowledge of C/C++ so is there any way to do the same with Prolog. ??
1
vote
1answer
99 views

Generating string of symbols(sentence) for a given context free grammar

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 ...
1
vote
2answers
74 views

Building an Expression Tree in Prolog

I'm looking for a way to build an Expression Tree in Prolog. I already did some experiments and came up with the following working code (that will only handle constants and the plus expression): ...
1
vote
2answers
119 views

Predicate to read integers from file in (swi) prolog

I was browsing the IO manual pages in swi-prolog and couldn't find a predicate to read integers (or numbers) from a file/stream. Didn't find anything on google either :| I know how to write one, just ...
1
vote
2answers
87 views

Using phrase_from_file to read a file's lines

I've been trying to parse a file containing lines of integers using phrase_from_file with the grammar rules line --> I,line,{integer(I)}. line --> ['\n']. thusly: ...
1
vote
1answer
64 views

Is this code generated by expanding a Prolog DCG tail-recursive?

The following code is a DCG to replace all occurences of Find w/ Replace in Request & put the answer in Result. Thanks to mat, for the code, in this question. eos([], []). replace(_, _) --> ...
1
vote
1answer
133 views

Using a prolog DCG to find & replace - code review

I came up w/ the following code to replace all occurences of Find w/ Replace in Request & put the answer in Result. This is using a DCG, so they are all lists of character codes. The predicate ...
1
vote
2answers
92 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, ...
1
vote
1answer
102 views

Debugging in SWI-prolog - unbound variables

Consider the following Prolog code. It edits lines of a particular type in its input and prints out the remaining lines w/o any change. It uses a DCG called rule which isn't included below, since ...
1
vote
1answer
171 views

Asserting and retracting to emulate global variables

I'm doing this to emulate global variables: update_queue(NewItem) :- global_queue(Q), retractall(global_queue(Q)), append(Q, [NewItem], NewQ), assert(global_queue(NewQ)). Is there ...
1
vote
4answers
241 views

Prolog as a DSL to generate perl code?

Does anyone know of any examples of code written in prolog to implement a DSL to generate perl code?
1
vote
1answer
167 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 ...
1
vote
1answer
199 views

Prolog: DCGS - Converting numbers to English

I'm practising using DCGs in Prolog. I take an integer like 123, 'explode' it into a list i.e. [1,2,3] and then I want to use DCG rules to get the output one-two-three. So far I can convert a list ...
1
vote
2answers
434 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", ...
1
vote
1answer
364 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 ...
1
vote
2answers
154 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 ...
1
vote
1answer
297 views

SWI-Prolog tokenize_atom/2 replacement?

What I need to do is to break atom to tokens. E. g.: tokenize_string('Hello, World!', L). would unify L=['Hello',',','World','!']. Exactly as tokenize_atom/2 do. But when I try to use ...
1
vote
7answers
870 views

What is SML used for?

What are the uses of SML in the real word? Are its practical uses similar to that of Prolog?
0
votes
1answer
46 views

Prolog: How to use DCG parser to parse an if - then - else statement

Is it possible to use Prolog DCG in order to parse an "if-then-else" statement? If so, how does one parse such a statement, given that I must match the particular "if" "then" "else" strings. If this ...
0
votes
2answers
104 views

Reading a file in prolog [closed]

Possible Duplicate: Read a file line by line in Prolog I found the following prolog code which reads one character at a time and prints out. process(File) :- ...
0
votes
1answer
46 views

Prolog: DCG Syntax Error

I'm attempting to parse a "function call" for a language that I am creating, but I am getting: :30:0 Syntax error: Operator expected The first line below is where I am getting my error: Fun(FXs) ...

1 2