3
votes
3answers
118 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 ...
5
votes
3answers
252 views

Implementing “cut” in a recursive descent parser

I'm implementing a PEG parser generator in Python, and I've had success so far, except with the "cut" feature, of which whomever knows Prolog must know about. The idea is that after a cut (!) symbol ...
6
votes
4answers
764 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
66 views

Prolog: special character parsing

I created a predicate like this (in swi-prolog): predicat(A+B) :- write(A), write(' -- '), write(B), !. predicat(_) :- fail. No problem here :) For example, if I try: ?- ...
5
votes
3answers
113 views

Parser Implementation

Hi I am trying to implement a parser for a simple language with grammar like this. program ::= "program" declarations "begin" statements "end" declaration ::= "var" ident "as" type type ::= "string" ...
3
votes
2answers
106 views

prolog parsing operations problems

Here is the problem. I want to do a prolog program on count(a*b*c, * , N) which will count the * in a*b*c and return N=2. How can i achieve this? I have done some research, either passing it ...
2
votes
1answer
306 views

Prolog Words Function

I'm a beginner with Prolog and there's a piece of code I've been trying to implement. Essentially, you enter a string where the words inside the string are separated by spaces or exclamation marks or ...
0
votes
1answer
86 views

prolog: parsing a sentence and generating a response in a simple language parser

so far I have the following working: gen_phrase(S1,S3,Cr) :- noun_phrase(S1,S2,Cr1), verb_phrase(S2,S3,Cr2), append([Cr1],[Cr2],Cr),add_rule(Cr). question_phrase(S1,S5,Cr) :- ...
2
votes
1answer
375 views

separate number into digit into prolog

I want to separate number into list digits using prolog like : if number is "345" separate to [3, 4, 5] How can i do that ? stringTokenizer("", []) :- !. stringTokenizer(Sen, [H|T]) :- ...
0
votes
1answer
550 views

Writing A Prolog Parser

I'm trying to write a simple parser for a grammar. The parser does not need to create a parse tree, only recognize if a sentence matches the grammar. So far, I have the following predicates, using ...
1
vote
3answers
160 views

Parsing from char to digit Prolog

I have the following: is_digit(X):-char_type(X,digit). When I call it like this: is_digit(X). I get the folloring results: X='0'; X='1'; ... ; X='9' I need to get those same results but ...
2
votes
1answer
351 views

Prefix Parsing using Prolog

So I have this grammar: expr(op(T,B,E)) => [term(T), binop(B), expr(E)]. expr(T) => [term(T)]. term(N) => [num(N)]. term(L) => [lvalue(L)]. term(pre(O,L)) => [incrop(O), ...
4
votes
2answers
118 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], ...
14
votes
3answers
491 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). ...
0
votes
1answer
162 views

Parsing in prolog

run([H|T]) --> num(H),run(T). run([T]) --> num(T). num(increase) --> [increase],{write(1),nl}. num(decrease) --> [decrease],{write(0),nl}. In this parser when increase is given it prints ...
0
votes
1answer
176 views

Prolog Parsing Output

I'm doing a piece of university coursework, and I'm stuck with some Prolog. The coursework is to make a really rudimentary Watson (the machine that answers questions on Jeapoardy). Anyway, I've ...
4
votes
3answers
867 views

Emulating Prolog backtracking in F#

I am currently involved in a project to develop an application able to consider a set of nodes and connections and find the shortest path (a common and well-known issue) between two nodes (on allowed ...
2
votes
2answers
786 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
1answer
435 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 ...
1
vote
1answer
886 views

Prolog parse postfix math expressions

I solved this my self. I'll post the solution when were past due date for my homework. Okay, I'm going to build a parser or an evaluator. The de facto standard when parsing with prefix notation is ...
1
vote
3answers
569 views

How can I find the index of the first “element” in my string using Java?

I'm working on writing a simple Prolog interpreter in Java. How can I find the last character index of the first element either the head element or the tail element of a string in "List Syntax"? ...