Tagged Questions

Mercury is a purely declarative logical/functional language. It features a strong, static, polymorphic type system, as well as a strong mode and determinism systems. The type system is similar to that of Haskell, while the syntax is derived from Prolog's.

learn more… | top users | synonyms

6
votes
4answers
540 views

What is more interesting or powerful: Curry/Mercury/Lambda-Prolog/your suggestion

I would like to ask you about what formal system could be more interesting to implement from scratch/reverse engineer. I've looked through some existing and rather open (open in the sense of ...
2
votes
1answer
63 views

Mercury: Determinism and pattern matching

I have a semideterministic function. When I re-write it to use pattern matching instead of an if statement, Mercury says it becomes nondeterministic. I'd like to understand why. The original code: ...
2
votes
2answers
52 views

Mercury: How to declare determinism of a higher-order data type?

When I compile the Mercury code below, I get this error from the compiler: In clause for `main(di, uo)': in argument 1 of call to predicate `test_with_anonymous_functions.assert_equals'/5: mode ...
2
votes
3answers
115 views

ADT properties in Mercury

I wander why Mercury (10.04) can't infer determinism of next snippet: :- pred load_freqs(int::in, io.res(list(float))::out, io::di, io::uo) is det. load_freqs(CPU, ResFreqs, !IO):- ...
1
vote
2answers
60 views

Unrestricted Variable Name Declaration In Mercury

I would like to declare a data type in Mercury that can have a variable number of values and names. For instance : type goal ---> pick; give; come. has three variables/values. I want something ...
1
vote
2answers
135 views

IDE or Editor with Support for Mercury

Are there any IDE's or editors that support Mercury besides emacs?
0
votes
2answers
69 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 ...
0
votes
1answer
96 views

Convert List to List of Tuples In Mercury

I am just a total beginner in mercury and finding it hard to solve this problem. I want to convert a list to a list of tupples sorted from smaller to higher frequenties. Eg: ...
0
votes
1answer
84 views

polymorphic instances for typeclasses in Mercury language

Consider next declaration: :- type wrap(T) ---> wrap(T). :- inst wrap(I) ---> wrap(I). :- typeclass infer_wrap(A, B) <= ((A -> B)). :- instance infer_wrap(A, wrap(A)). Mercury (10.04) ...