Turbo Prolog is a very fast old Prolog system that only works with MS-DOS. It does not comply with the Edinborough Standard.

learn more… | top users | synonyms

-1
votes
0answers
11 views

visual prolog fo Linux [closed]

I am working on Linux and code is written in Visual Prolog. I understand that he current version supports Windows only, but PDC had a old version for Linux - Version 5.2. Does anyone knows about it ...
0
votes
1answer
39 views

Error in PROLOG program

In the code below, i'm getting error in sister function that "Illegal character" in ** Blockquote Person \= P1** (\= is for not equal to) Blockquote DOMAINS Person = SYMBOL PREDICATES ...
0
votes
0answers
36 views

search by more than one inputs in prolog

I have this code in prolog : domains person = person(name,address) name = name(first,last) address = addr(street,city,state) ...
0
votes
1answer
95 views

Newbie: Unable to trace Free variable in expression error. Prolog Programming

Just started programming in Prolog. I wrote a couple of clauses. predicates parent(symbol,symbol) male(symbol) female(symbol) mother(symbol,symbol) father(symbol,symbol) brother(symbol,symbol) ...
0
votes
1answer
135 views

How to use the predicate “assert” in a predicate

I have a problem I want a code Prolog for that I will generate new predicate with the predicate "assert" but I want to use the result of my predicate . i have a predicate that counts the number of ...
1
vote
1answer
45 views

Trying to learn Prolog, can't figure out what's wrong

Doing a small example, I want to insert a symbol within a list at a certain pozition domains element = symbol list = element* position = integer predicates insert (element, ...
2
votes
1answer
268 views

Prolog replace element in a list with another list

*Hi, i am trying to replace an element from a list with another list and im stuck when turbo prolog gives me syntax error at the case where if C=A-> put in result list(L1) the list that replace the ...
2
votes
1answer
125 views

How to correct predicate on Prolog?

I have the following prolog code: predicates like(string) clauses like(apple). like(girl). q :- like(A),write(A). goal q. How to get two solutions?
2
votes
2answers
322 views

Explanation of a prolog algorithm

This is an algorithm to append together 2 lists Domains list= integer* Predicates nondeterm append(list, list, list) Clauses append([], List, List):-!. append([H|L1], List2, [H|L3]) :-append(L1, ...
0
votes
1answer
133 views

Understanding a prolog predicate

I'm having some troubles in understanding the following prolog predicate , I can understand that it concatenate some chars , also produces the possible lists (first & second goal ) , but I can't ...
0
votes
3answers
242 views

Getting errors with prolog program

global facts xpositive(symbol,symbol) xnegative(symbol,symbol) predicates animal_is(symbol) - nondeterm (o) it_is(symbol) - nondeterm (i) ask(symbol,symbol,symbol) - determ (i,i,i) ...
2
votes
1answer
162 views

Turbo Prolog's 'save' analogue in SWI-Prolog

Is there any SWI's analogue for Turbo's save function, which saves into a file facts, previously loaded via consult and then appended via assert?
0
votes
2answers
339 views

GUI for a Turbo Prolog application

I have an university assignment where my goal is to create a GUI for an expert system created in Turbo Prolog. Is there any common way to do this? Or is there a way that, for example, a Java ...
-1
votes
1answer
201 views

Browse the binary tree in prolog [closed]

I have a list of storage nodes of the binary tree as follows: [1,2,3,4,5,6,7]. NLR algorithm to use to browse the following list: [1,2,4 , 5,3,6,7]. I am very new to Prolog need any help.Thanks
0
votes
0answers
78 views

approved by the array of binary trees using prolog

I have a list of integer binary tree as follows [1,3,6,2,2]. Please ask prolog can use to browse the list as a binary tree is khong.Neu everyone can be divided Share code is complete but
1
vote
2answers
175 views

Want to print the path,but getting errors

domains list=symbol* predicates path(symbol,symbol) solve(symbol,symbol,list) insert(symbol,list,list) clauses path(a,b). path(b,c). path(c,d). path(d,e). ...
1
vote
2answers
146 views

what is the syntax for char* in prolog

I want to know the syntax for char* in prolog which i want to use for a list of a characters. I have used list=integer* for a list of integers but i dont know sysntax for characters list in prolog.
0
votes
2answers
255 views

Circular buffer in Turbo Prolog 2.0

I need to write something like circular buffer in TurboProlog 2.0 for calculating average. I don't know what predicates i need to write, and have no idea how link them together.
0
votes
2answers
562 views

How to append 1 element in nested list in Prolog?

I want to append one list element in nested list: predicates append(li,li,li). clauses append([X|Y],Z,[X|W]):- append(Y,Z,W). append([],X,X). For example: append([ [1],[2],[3] ],[4],A) ...
1
vote
2answers
485 views

Problem in appending nested list in turbo prolog

I'm new in turbo prolog.I'm facing a problem in appending nested list. I want the goal like this- Goal: mega_append([[1,3],[2,4,6],[0]],X) Output should be X=[1,3,2,4,6,0] I used the following ...
2
votes
2answers
199 views

i am using ancient turbo prolog . and continously facing error in following code :- mis-spelling or not declared predicate

domains A,B,C = symbol N,P = integer predicates tower(integer,symbol,symbol,symbol,integer) go clauses go :- clearwindow, write("enter value of N (For Transfering from ...
1
vote
1answer
418 views

variable is only used once

I am using ancient Turbo Prolog since it is included in our curriculum. Why is this program not working? domains disease, indication = symbol Patient = string Fe,Ra,He,Ch,Vo,Ru = char ...
1
vote
2answers
3k views

search all paths and the shortest path for a graph - Prolog

I have a problem in my code with turbo prolog which searches all paths and the shortest path in a graph between 2 nodes. The problem that i have is to test if the node is in the list or not (exactly ...