Unification, in computer science and logic, is an algorithmic process by which one attempts to solve the satisfiability problem. The goal of unification is to find a substitution which demonstrates that two seemingly different terms are in fact either identical or just equal.
-2
votes
2answers
50 views
Unifying python dicts?
Does anone have a fair algorithm for unifying (almost) arbitrary dicts? That is, given the dicts
a = {1: 1, 2: 2, 3: [1,2,3]}
b = {4: 4, 3: [5], 5: {'a': 0, 'b': {}}
c = {3: [{'A': '0'}], 5: {'b': ...
0
votes
1answer
16 views
Finding values without creating new unifications
I have a set of definitions of the form pair/2 and a predicate propagate/3:
pair(1, 2).
pair(2, 3).
pair(3, 4).
pair(4, 5).
propagate([], _, []) :- !.
propagate([pair(N, Num)|Tail], Num, ...
1
vote
1answer
60 views
Hooking into prolog's unification trace output
I'm trying to investigate the feasibility of a project of having a custom type inference language on an untyped language. (The language itself isn't important, but it happens to be PHP). My first ...
0
votes
1answer
101 views
Breadth-first Resolution Algorithm
I want to implement a resolution algorithm which tries to get empty set as it resolves the candidate clauses.
I want algorithm to resolve the candidate parent clauses in a breadth-first order. ...
0
votes
1answer
143 views
Unification in Prolog
This is a question from a past exam about unification in Prolog.
we were supposed to say if they unified and then the instantiations.
f(a,g(b,a)) and f(X,g(Y,X))
This unifies quite a = X, g(b,a) = ...
1
vote
3answers
42 views
Silly detail enquiry about Prolog unification
In Prolog:
?-P=[A|B], P=[1,_].
P = [1, _G1091],
A = 1,
B = [_G1091]
B is shown as [_G1091] showing it's an uninstantiated variable. However, if I change a tiny bit...
?-P=[A|B], P=[1|_].
P = ...
1
vote
2answers
72 views
Finding all unifications in prolog
I wrote my first simple code in PROLOG:
is_beginning([], _).
is_beginning([FirstLetterB|RestWordB], [FirstLetterW|RestWordW]) :-
FirstLetterB == FirstLetterW,
is_beginning(RestWordB, ...
1
vote
2answers
102 views
Type inference in the source of OCaml
I would like to take a close look at the implementation of type inference in OCaml, my OCaml seems be installed in /usr/local/lib/ocaml, but no .ml inside seems include the piece of code for type ...
0
votes
1answer
72 views
Type Error In Haskell Function
I've written a Haskell function like so:
shift :: Subst a -> Subst a
shift (S s) = [(x, (subst s' d)) | (x,d) <- s] where
s' = [(x,d) | (x,d) <- s, null (vars d)]
With a data ...
1
vote
1answer
166 views
Unification & Substitution
In Haskell, I have defined a polymorphic data type Subst a with a single constructor S :: [(String, a)] -> Subst a as so:
data Subst a where
S :: [(String, a)] -> Subst a
deriving ...
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 ...
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
3answers
461 views
Prolog, access specific member of list?
Can anyone tell me how to access a specific member of a list in prolog? Say for example I need to access the 3rd or 4th element of a list passed into a rule?
3
votes
1answer
115 views
Bottom up hindler milner type inference: Applying a substitution to an implicit constraint
I am trying to implement the 'Bottom up' type inference algorithm which can be found in Generalizing Hindley-Milner Type Inference Algorithms
Page 6 explains how an implicit constraint is
t1 ...
1
vote
0answers
95 views
Does Mathematica use first-order or second-order unification [closed]
Cross posted on Mathematica: Does Mathematica use first order or second order order unification?
In Mathematica, term-rewriting is used to simplify and evaluate expressions, my question is does ...
1
vote
0answers
80 views
Test for unification in Oz
What I want to do is, test if a certain expression unifies with another in Oz.
For example, I want to do something like this:
fun {UnifyP A B}
...
end
that can return true when A can be unified ...
2
votes
1answer
474 views
Recursion in Prolog - Finding Path Between Cities
I'm trying to work my way through the exercises at the bottom of this page and I find myself utterly confused on number 3.
We are given the following knowledge base of travel information:
...
11
votes
1answer
456 views
Hindley-Milner algorithm: using types to ensure bindings are applied
I am implementing the Hindley-Milner type inference algorithm, following the tutorials of Mark Jones and Oleg Kiselyov. Both of these have an "apply bindings" operation with a type roughly of the form
...
2
votes
1answer
136 views
Unification by transformation
I am writing a unification algorithm in F# for use with AST transformations using "Term Rewriting and All That" (WoldCat) by Franz Baader and Tobias Nipkow. For section 4.6 Unification by ...
2
votes
2answers
486 views
Seeking Unification Algorithm in F#
I am transforming ASTs and need more than simple pattern matching, thus the unification algorithm.
While this is for a .NET project and I know that I could just interoperate with a .NET PROLOG ...
-3
votes
1answer
233 views
Unification of arrays and objects in JavaScript? [closed]
Could someone explain me the unification of arrays and objects in JavaScript?
1
vote
1answer
73 views
Strange behaviour of unification pattern matching
So here it is, for my sudoku project I have a list, such as :
L = [_G1-0:0:0,_G19-0:6:2,_G22-0:7:2,_G25-0:8:2].
and I want to filter this to get only the free variables :
[_G1, _G19, _G22 and ...
4
votes
2answers
139 views
Deleting all members of a list without unification in Prolog [duplicate]
Possible Duplicate:
Prolog delete: doesn't delete all elements that unify with Element
In Prolog if you write this:
delete([(1,1),(1,2),(1,1),(3,4)],(1,_),L).
the result will be:
L ...
5
votes
2answers
150 views
GHC rejects ST monad code as unable to unify type variables?
I wrote the following function:
(.>=.) :: Num a => STRef s a -> a -> Bool
r .>=. x = runST $ do
v <- readSTRef r
return $ v >= x
but when I tried to compile I got the ...
4
votes
2answers
128 views
Requires MonadPlus (ST a) Instance
I'm reading the paper Typed Logical Variables in Haskell, but I'm failing to understand the details of the ultimate implementation. In particular, the backtracking state transformer introduced in ...
0
votes
2answers
157 views
“:=” and “=>” in Mercury
I recently came across this code example in Mercury:
append(X,Y,Z) :-
X == [],
Z := Y.
append(X,Y,Z) :-
X => [H | T],
append(T,Y,NT),
Z <= [H | NT].
Being a Prolog programmer, I ...
3
votes
1answer
98 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 ...
0
votes
0answers
49 views
JQuery Unification of script and build in Check
I am trying to unify this script some. It ultimately does the same thing (just with different ID's and classes) opening separate containers. Not sure if the JQuery pros here can unify that or not. ...
0
votes
2answers
73 views
Unify a JQuery Script and build in a check
I am trying to consolidate this script a bit.. They both do almost the same thing.
When a button is clicked, it opens a box. It might be tough, but what I DON'T want to happen is when one box is open ...
4
votes
1answer
518 views
Instantiate type variable in Haskell
EDIT: Solved. I was unware that enabling a language extension in the source file did not enable the language extension in GHCi. The solution was to :set FlexibleContexts in GHCi.
I recently ...
5
votes
3answers
997 views
What is a unification algorithm?
Well I know it might sound a bit strange but yes my question is: "What is a unification algorithm".
Well, I am trying to develop an application in F# to act like Prolog. It should take a series of ...
11
votes
2answers
1k views
Differences between pattern matching and unification?
I thought I understand how pattern matching like found in Scala and Haskell is different from unification found in Prolog but my misunderstands of Prolog is great. What is some simple problems ...
0
votes
2answers
772 views
Prolog Code Example: Unification
From an old final for my class:
Here is some prolog code:
mystery(1, 1).
mystery(N, F) :-
N1 is N-1,
mystery(N1,F1),
F is F1*N.
Question 1: What value is unified with P in
mystery(3, ...
2
votes
2answers
264 views
Unification - Infinity of results
I'm developing (in Java), for fun, an application which uses an unification algorithm.
I have chosen that my unification algorithm returns all the possible unifications. For example, if I try to ...
3
votes
2answers
448 views
Why does SWI-Prolog unify a quoted and unquoted string (without spaces) to the same rule?
Assume I have the following rules:
unify('test', 'this is a test').
run :- write('Enter something: '),
read(X),
unify(X, Y),
write('The answer is '), write(Y).
And then I ...
3
votes
3answers
479 views
Pattern matching equivalent variables in Haskell, like in Prolog
In prolog, we can do something like the following:
myFunction a (a:xs) = ...
This is, when the 1st argument of myFunction is the same as the first item of the list that's in the 2nd argument, this ...
4
votes
3answers
1k views
Real world example of Unification in First Order Logic?
I know this is only part of a programming question, but at the moment, I'm doing a little bit of logic programming. One thing I still don't understand correctly is Unification in First Order Logic.
I ...
4
votes
2answers
118 views
Type Parameter Unification
Why is this disallowed in C#?
Actually I'd like to be able to write
alias Y<A, B> : X<A, B>, X<B, A>
The unification is actually desired here; if the A = B then just one method ...
1
vote
2answers
451 views
Why won't this Prolog predicate unify?
I'm writing a predicate to find all possible successor states for an iteration of A* and put them in a list like [(cost, state), ...] , which stands at this at the moment:
addSuccessors(L, [], _).
...
13
votes
2answers
1k views
Higher-order unification
I'm working on a higher-order theorem prover, of which unification seems to be the most difficult subproblem.
If Huet's algorithm is still considered state-of-the-art, does anyone have any links to ...
3
votes
4answers
949 views
Applications of Unification?
What are (practical) applications of
Unification ? Where it is been
used in real world?
I couldn't get the whole idea of what it is really about and why its considered as a part of Artificial ...
0
votes
3answers
199 views
What's an elegant way to unify X,Y with (1,2), (1,-2), (-1,2), (-1,-2), (2,1), (2,-1) , (-2,1), (-2,-1)?
What's an elegant way to unify X,Y with (1,2), (1,-2), (-1,2), (-1,-2), (2,1), (2,-1) , (-2,1), (-2,-1)?
Doing it this way seems error prone and tedious:
foo(1,2).
foo(1,-2).
foo(-1,-2).
...
...
...
4
votes
1answer
3k views
Prolog is vs = with lists
Why does this fail L is [1,2,3,4], and this works: L = [1,2,3]?
But L is 1, and L = 1 both work the same.
3
votes
2answers
794 views
prolog unification resolution
Why does this work:
power(_,0,1) :- !.
power(X,Y,Z) :-
Y1 is Y - 1,
power(X,Y1,Z1),
Z is X * Z1.
And this gives a stack overflow exception?
power(_,0,1) :- !.
power(X,Y,Z) ...
10
votes
5answers
4k views
How can I implement the unification algorithm in a language like Java or C#?
I'm working through my AI textbook I got and I've come to the last homework problem for my section:
"Implement the Unification Algorithm outlined on page 69 in any language of your choice."
On page ...
11
votes
2answers
551 views
Seemingly unnecessary case in the unification algorithm in SICP
I'm trying to understand the unification algorithm described in SICP here
In particular, in the procedure "extend-if-possible", there's a check (the first place marked with asterix "*") which is ...
1
vote
3answers
762 views
Simplest example of need for “unification” in type inference
I'm trying to get my head around how type inference is implemented.
In particularly, I don't quite see where/why the heavy lifting of "unification" comes into play.
I'll give an example in "pseudo ...
8
votes
2answers
2k views
What is the optimal “most general unifier” algorithm?
The Question
What is the most efficient MGU algorithm? What is its time complexity? Is it simple enough to describe as a stack overflow answer?
I've been trying to find the answer on Google but ...
3
votes
5answers
171 views
Is there a system where executing a program and calling a function is unified?
I would like to be able to do one or more of the following from the shell:
- call any function from the program not only the main
- pass parameters that are not only strings (not only argv)
- have ...
2
votes
1answer
707 views
Type inference to unification problem
Has anyone an idea how the type inference problem
E > hd (cons 1 nil) : α0
with the typing environment
E={
hd : list(α1 ) → α1 ,
cons : α2 ...
