The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
24 views

Logical equivalence in Prolog

I got two expressions to list all lists of bits using Prolog: bit(0). bit(1). bitlist1([]). bitlist1([B|Bs]) :- bit(B), bitlist1(Bs). bitlist2([]). bitlist2([B|Bs]) :- bitlist2(Bs), ...
1
vote
1answer
25 views

PROLOG predicate answers true or false, but not the desired value

I am new to Prolog, and got stuck trying to make an auxiliar function that takes elements from a list, 2 at a time, and makes a vector. For example: L=[0,0,0,0,0,0,0,0], v_form([2,3,1,1],L). L = ...
-6
votes
1answer
60 views

Is there any other way to swap address of pointers to interchange value? [closed]

Is there any other way to swap address of pointers to interchange value ? Below is one way to do the same. Here we are not changing values saved on address. void Change_Address( int *&p, int ...
0
votes
1answer
14 views

Using pyDatalog for constraint stores

Consider the following rules: pyDatalog.create_atoms('X') pyDatalog.create_atoms('Y') pyDatalog.create_atoms('a') pyDatalog.create_atoms('b') b(X,1) <= (X<0) b(X,Y) <= (X==1) & ...
0
votes
1answer
23 views

SICStus Prolog making product/3 rule from sum/3

First of all, this is a homework question, so please just give me a hint! %Here is a rule that defines sum/3 that returns yes if Z is sum of X and Y sum(X,Y,Z) :- Z is X + Y. %How can I make ...
0
votes
2answers
38 views

Read file and build facts on swi-prolog

I need to read from a file where there are descriptions of facts, for example: id: GO:0000008 name: thioredoxin and I need build a fact whith it, like as :"gene(0000008,thioredoxin)." How I can do ...
0
votes
1answer
26 views

Mistakes in my facts? (Prolog)

parent(_,_). descendant(X,Y):- parent(Y,X). descendant(edward,david). descendant(malcolm,mark). descendant(edward,therese). descendant(malcolm,nathalie). descendant(matthew,raymond). ...
0
votes
1answer
57 views

Swapping consecutive items of a list in Prolog

I'm trying to write Prolog code that can swap two elements of a list, but only if they are consecutive to each other. That is, conseq_swap(d, e, [a, g, d, e, f], X). should give: X = [a, g, e, d, ...
0
votes
0answers
34 views

Error asking pyDatalog queries in SQLAlchemy backed database in sqlite3 - InterfaceError: (InterfaceError)

I'm currently developing an application that need to mix recursive queries with SQL and am trying out if this can be achieved using SQLAlchemy together with pyDatalog. It was really easy to set up, ...
0
votes
1answer
54 views

Does projecting in two directions count as relational in core.logic?

I understand that project in core.logic is not relational. However, it seems that I can get relational-like behaviour by projecting in both directions inside conda, e.g.: (defn lifto-with-inverse ...
0
votes
3answers
243 views

Prime number program for java [closed]

I'm new to programming and need help on a java program. I want my program to return all the prime numbers between 1 and 10. for(int i=1; i<=10; i++){ int factors = 0; int j=1; ...
4
votes
1answer
85 views

Extending core.logic to custom types

I'm experimenting with core.logic, and want to enable my own custom data type to participate in logic expressions: (deftype Expression [node vars] ....) Basically this represents a node in a ...
0
votes
1answer
43 views

Prolog: show a list contained within a list

I currently have the following facts defined in a Prolog program: hobbies([jarrod, [gaming, running, boxing]]). hobbies([james, [programming, gaming, drawing]]). What query could display a list of ...
4
votes
2answers
107 views

Transforming recursion into tail recursion?

I am trying to write a predicate that recursively finds the nth power of some number [A^n = A * A^(n-1)] and uses the shortcut A^(2n) = A^n * A^n. Here is the solution so far. p(_,0,1):-!. ...
1
vote
1answer
30 views

pyDatalog: handling unbound variables in a custom predicate

I'm writing a pyDatalog program to analyse weather data from Weather Underground (just as a demo for myself and others in the company at the moment). I have written a custom predicate resolver which ...
0
votes
2answers
59 views

Match database items exactly once in Prolog?

Let's say there is a simple database of people in Prolog person(john). person(mary). person(john). person(susan). I need to match the entires exactly once: john-mary, john-john, john-susan, ...
0
votes
1answer
60 views

Loading a datalog program in a file into pyDatalog

I am trying to use the pyDatalog.load() method to load a small pyDatalog program. For example, I am loading the factorial sample from https://sites.google.com/site/pydatalog/ from pyDatalog import ...
1
vote
1answer
126 views

Prolog - descending order list

I tring to write a function - decListRange(X,List) which give a list in range [X-1:1] by descending order. For example - decListRange(9,List). Will give - List = [8,7,6,5,4,3,2,1]. I tried the ...
5
votes
2answers
178 views

Goal ordering in Clojure's `core.logic`

The following Clojure code uses core.logic to solve the same logic problem with the same goals in two different orders. This choice of ordering causes one to finish quickly and the other to hang. ...
1
vote
2answers
151 views

How does Negation-as-Failure works in Prolog?

I want to know how Prolog solves this program: test(X, Y). test(X, X):-!, fail. I googled "negation as failure" but I am confused!
5
votes
1answer
95 views

Languages that optimise using logic programming

Are there any languages that perform compile-time optimisation using arbitrary logic programming? I'm looking for an example of a language that will enable you to do something like: Define an ...
14
votes
3answers
395 views

Haskell's type system and logic programming - how to port Prolog programs to type level

I'm trying to understand the relation between a logic programming language(Prolog in my case) and Haskell's type system. I know both use unification and variables to find values(or types, in ...
0
votes
1answer
54 views

Unexpected Undefined procedure

I want to assert some facts only once- if they haven't been asserted yet, so I make a check: :- dynamic item/6. init(Id, LastId, Depth) :- ruut(X,Y,Color), ...
0
votes
3answers
183 views

Looking for a prolog interpreter

I am new to prolog and to try some logic programs I am looking for a nice prolog interpreter. Any suggestion? Best Regards,
0
votes
1answer
84 views

Joining predicates in prolog

I'm doing an exercise in prolog using SWI-Prolog, to take a nested list and convert it into a list of elements and then make the sum of the elements, I made two separate predicates which make me both ...
1
vote
1answer
99 views

Prolog: getting rid of a recursive helper predicate

So I'm trying to get rid of the wrapper clause by using the sort library predicate directly inside split. What split does is just generating a list of numbers from a list that looks like this: ...
0
votes
1answer
38 views

Inference from generic situation S

I hope that someone can help me. Is it possible inference from a situation S different to s0 in prolog? I have a s0 (initial situation) like this: isoven(oven). isoff(oven,s0). ison(X,do(a,S)):- ...
4
votes
1answer
140 views

Algorithms for Unification of list-based trees

I need a unification algorithm to handle the following situation. Each node in my expression tree has a list (associative) or a set (associative and commutative) of children. I would like to get all ...
1
vote
2answers
164 views

Prolog: Failure driven loops

I used the following failure driven loop to list everything without using semicolons. happiness(fred,5). happiness(john,3). happiness(grace,2). someGoal(X) :- happiness(X,Y), write(Y), ...
1
vote
2answers
203 views

set union operation in Prolog : explanation

union([H|T],[],[H|T]). union([],[H|T],[H|T]). union([H|T], SET2, RESULT) :- member(H,SET2), union(T,SET2,RESULT). union([H|T], SET2, [H|RESULT]) :- not(member(H,SET2)), ...
2
votes
0answers
134 views

Examples of rewrite rule engine in Python? [closed]

Are there any existing projects within the Python ecosystem that use rewrite/production/transformation rules in way similar to Mathematica or Maude? Note that I'm referring to the logic programming ...
5
votes
1answer
155 views

Listing unique DAG parents with core.logic

Here's a (hopefully) simple logical program I've been stuck with for a while. I have a DAG represented by an edge relation in core.logic, when generating the list of parent nodes, I get duplicates ...
2
votes
1answer
135 views

Are there purely declarative, general purpose programming languages?

I've been researching declarative languages, and it seems like declarative is just an umbrella term for both logic and functional languages. Or am I wrong? Are there any general-purpose declarative ...
1
vote
2answers
1k views

Prolog Find N prime numbers

I have a problem with the recursive function of Prolog. I believe I am not implementing it right and need help. I need to generate the first N prime numbers and return it in a list. Generating the ...
3
votes
4answers
215 views

Prolog - what sort of sentences can't be expressed

I was wondering what sort of sentences can't you express in Prolog? I've been researching into logic programming in general and have learned that first-order logic is more expressive compared to ...
2
votes
3answers
122 views

How can I provide Prolog asks questions to me

Assume that we have prolog knowledge base like this: guilty(X) :- commits(X,Y), crime(Y). crime(murder). crime(theft) When I ask this question: ?- guilty(john) I want that Prolog asks me ...
2
votes
2answers
137 views

Which is a correct program for given statement?

Problem statement: Find the right triangle that has integers for all sides and all sides equal to or smaller than 10 has a perimeter of 24. Which solution of following two is correctly interpreting ...
1
vote
1answer
51 views

Turn a Maude expression into a String

Is there a way to turn a Maude expression into a string? I'm looking for the equivalent of Haskell's show.
11
votes
1answer
243 views

How to find the optimal processing order?

I have an interesting question, but I'm not sure exactly how to phrase it... Consider the lambda calculus. For a given lambda expression, there are several possible reduction orders. But some of ...
0
votes
2answers
44 views

Tutorial in using generatedInitialize()

Recently I had been told that prolog can create a graphical display, and told that by using the predicate generatedInitialize(). Can I ask for some tutorial for this? For example, how to display a ...
1
vote
3answers
88 views

State propagation during bactracking in Prolog

Let's assume, that I have a simple program in Prolog, which is searching through a certain state space: search(State, State) :- is_solution(State). search(State, Solution) :- generate(State, ...
1
vote
3answers
375 views

Basic logic programming in Scala

I have a fun little problem where I'm presented with a logic clause like so: Rule 1. A, B and C are unique, and are numbers from 1 to 3 (so every number is used). Rule 2. B < 2 Rule 3. C > 2 ...
0
votes
1answer
95 views

Eclipse Constraint Programming - search/6

I'm having trouble understanding this documentation for the search/6 function in the eclipse constraint programming framework. I understand that the choice parameter basically affects the value ...
17
votes
2answers
596 views

Concise Explaination of Core.logic

I want to use Clojure's Core.logic. However, I want to also understand how it works. Is there a concise explanation of it somewhere? (Like implementing a metacircular evaluator?) Thanks!
1
vote
0answers
84 views

Community resources for the Maude Language

Where do I go for interactive help when learning the Maude Language? I've found books, tutorials, and webpages with excellent instruction. I can't find any sort of interaction such as an IRC ...
2
votes
1answer
143 views

What are good/established database backing strategies for logic programming in clojure

I'm having a hard time finding profound information on strategies to set up a (deductive) database for facts to be queried using a logic programming approach like core.logic. Most examples to be found ...
3
votes
2answers
398 views

Logic programming in Lua?

Is there a way to do logic programming (think of Prolog) in Lua? In particular: is there any Lua module for logic programming (miniKanren implemenatation will be the best, but it isn't strictly ...
4
votes
0answers
222 views

Will whole Haskell be a part of Curry? [closed]

I found Curry on Wikipedia. It says Curry is nearly a superset but not because of lacking of something. I'd like to see it support whole Haskell. Did they plan to implement Haskell as a part of ...
14
votes
3answers
226 views

What is the use of non short-circuiting boolean operators in Erlang?

I am learning Erlang from the LearnYouSomeErlang web-book. One thing that struck me while learning was the non short-circuiting boolean conjunction and disjunction operators viz; and and or. What are ...
8
votes
1answer
309 views

Function Returns “No Solution” Instead Of “Nothing”

I have a standard datatype representing formulae of predicate logic. A function representing a natural deduction elimination rule for disjunction might look like: d_el p q = if p =: (Dis r s) ...

1 2