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.
-1
votes
1answer
12 views
Configuring Mercury to send PHP files from a HTML form [closed]
I am creating a form using html, and i'm attempting to submit the form to my email using a PHP file. I have xampp and Mercury, but am unsure as to how to configure Mercury to allow for the PHP file to ...
1
vote
1answer
230 views
Creating a deterministic finite automata (DFA) - Mercury
I would like to have a deterministic finite automata (DFA) simulated in Mercury.
But I’m s(t)uck at several places.
Formally, a DFA is described with the following characteristics:
a setOfStates ...
0
votes
2answers
95 views
Mercury compilation error with Mac OS X 10.8
I've got a problem compiling Mercury on my Mac. I'm running Mac OS X 10.8, got Xcode 4.5 installed and also Command Line Tools.
What have I done so far:
I downloaded the tar.gz file, extracted it, ...
28
votes
5answers
986 views
What other ways can state be handled in a pure functional language besides with Monads?
So I started to wrap my head around Monads (used in Haskell). I'm curious what other ways IO or state can be handled in a pure functional language (both in theory or reality). For example, there is a ...
0
votes
0answers
90 views
crossword puzzle in Mercury
I am doing a crossword solver in Mercury. Now I am facing an problem, how to filled word into the next blank.
For example, the puzzle is like:
_ _ _ _ _# _ _ _ _ # _ _ _
I am able to fill the ...
2
votes
1answer
88 views
What is a good data type for representing arbitrary binary data?
I want to read binary data from disk and store it in a Mercury variable. According to the string library, strings don't allow embedded null bytes and store content with UTF-8 encoding so I don't ...
2
votes
1answer
191 views
Mercury installation
I already download Mercury 11.07.1 from
http://www.mercury.csse.unimelb.edu.au/download/release.html
and also installed cygwin on my Windows 7 PC. However i don't know how to install the mercury. Is ...
1
vote
3answers
130 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 ...
3
votes
1answer
173 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
109 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 ...
0
votes
2answers
155 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 ...
2
votes
3answers
396 views
IDE or Editor with Support for Mercury
Are there any IDE's or editors that support Mercury besides emacs?
1
vote
1answer
150 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
134 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) ...
2
votes
3answers
148 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):-
...
11
votes
4answers
995 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 ...