Tagged Questions
Curry is an experimental functional logic programming language, based on the Haskell language. It merges elements of functional and logic programming, including constraint programming integration.
23
votes
1answer
568 views
What type systems can prevent goal suspension in logical languages?
From section 3.13.3 of the curry tutorial:
Operations that residuate are called rigid , whereas operations that narrow are called flexible. All defined operations are flexible whereas most ...
13
votes
1answer
288 views
Why is the non-deterministic choice function in Curry's std lib not defined straightforwardly but rather with a helper 2-argument function?
Consider a function choose in Curry programming language with the specification that "(choose xs) non-deterministically chooses one element from the list xs".
I'd implement it straighforwardly ...
8
votes
1answer
276 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) ...
6
votes
3answers
341 views
C# Linq vs. Currying
I am playing a little bit with functional programming and the various concepts of it. All this stuff is very interesting. Several times I have read about Currying and what an advantage it has.
But I ...
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 ...
4
votes
1answer
72 views
Curry compiler zinc cannot be configured
when I configure curry's compiler zinc, I get this:
checking for Haskell 98 compiler...
checking for ghc... ghc
checking ghc version... 7.0
checking whether ghc supports Haskell 98... [1 of 1] ...
4
votes
0answers
152 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 ...
3
votes
1answer
57 views
Need Curry books or tutorials [closed]
Can anybody suggest me books for Curry programming language ?
I googled but I get only books for cooking recipies.
2
votes
4answers
119 views
“foop”: a naming convention? It's a helper recursive function for “foo”; what does the suffix “p” mean?
I've come across the following code snippet (a function definition):
choose (x:xs) = choosep x xs
where choosep x [] = x
choosep x (_:_) = x
choosep _ (x:xs) = choosep x xs
in ...
1
vote
0answers
75 views
Showing data types in Curry
Does Curry have the ability to show or pretty print data types inside the REPL (using PAKCS or MCC)? In Haskell, this functionality is impemented using the type class Show. However, no maintained ...
1
vote
0answers
54 views
“readline” (or “haskeline”) for Curry?
What's the most practical way to write a program in Curry programming language that would have a console UI with decent line editing?
Actually, I need to pass a string as a suggestion for the user's ...
0
votes
3answers
89 views
Real world examples of partial function
I have been going through Python's partial function. I found it's interesting but it would be helpful if I can understand it with some real-world examples rather than learning it as just another ...
0
votes
0answers
27 views
Which Curry implementations support Unicode identifiers, and which don't?
Which implementations of Curry programming language do support identifiers written with Unicode characters (non-Latin) in the source code, and which are known not to accept Unicode identifiers?
I'm ...