Haskell is an advanced functional programming language, featuring strong static typing, lazy evaluation, extensive parallelism and concurrency support, and unique abstraction capabilities.
2
votes
2answers
84 views
Keep track of list index with anonymous function in Haskell
I am pretty new to Haskell. so this might be a bit silly.
What I want is to do something like:
map (\x -> x + **position in list**) [0, 0, 0] => [1, 2, 3]
How can this be done?
5
votes
1answer
152 views
How do I construct a function/type that observes each transition in this state machine?
The gist of my question is that I have a deterministic state automata that is transitioning according to a list of moves, and I want this sequence of transition to serve as a "computational context" ...
0
votes
1answer
80 views
Error with negate, when creating an instance of Num
i've created a data type for complex numbers, and i am trying to create an instance of Num for this datatype. I have been trying to add the negate line in because it is necessary for my show function, ...
10
votes
1answer
218 views
Dynamic Programming Memoization in Haskell
This is my first attempt at using (what I understand to be) dynamic programming. I'm trying to tackle this interesting problem: A* Admissible Heuristic for die rolling on grid
The q function attempts ...
2
votes
6answers
115 views
How to restrict a tuple?
I think tuples in Haskell are like
tuple :: (a,b)
which means a and b can be the same type or can be diffrent types
so if i define a function without giving the type for it then i will get ...
1
vote
1answer
88 views
How to lift function to transformed monad in haskell?
I know with the data constructor and the run*** function,
I can lift any function to a specific MonadTrans instance.
Like this,
import Control.Monad.Trans
import Control.Monad.Trans.Maybe
import ...
9
votes
1answer
106 views
Monitoring the filesystem with Haskell
I'm using the FSNotify package to watch my filesystem for changes to markdown files, so I can run them through Pandoc automatically. However, I'm having trouble getting the manager to exit nicely.
As ...
2
votes
1answer
66 views
haskell hFlush isn't working the way Im expecting
I'm trying to get a program to read an entire file using hFlush, in order to avoid an issue I'm having which has to do with the lazy IO.
readHandle <- openFile fileName ReadMode
hSetBuffering ...
3
votes
1answer
133 views
What does Tree(Int,Int) mean in haskell?
I m novice and i am learning data structures in haskell right now.I saw something like
Tree(Int,Int)
Does that mean tuple of trees? i m trying to write something like
data Tree a = Leaf a | ...
3
votes
1answer
89 views
Multiple lookup structures for same data: Memory duplication?
Suppose I have data on a bunch of people, and I want to be able to look them up in different ways. Maybe there's some kind of data structure (like a binary tree) that facilitates lookup by name. And ...
20
votes
6answers
712 views
Why are if expressions frowned upon in Haskell?
This has been a question I've been wondering for a while. if statements are staples in most programming languages (at least then ones I've worked with), but in Haskell it seems like it is quite ...
1
vote
1answer
83 views
Haskell function composition - wrongly inferred type
In the following Haskell code, the function typeError doesn't typecheck.
wrap x = [x]
listf :: [[a]] -> [[a]]
listf = id
typeCheck :: [a] -> [[a]]
typeCheck x = listf (wrap x)
typeError :: ...
1
vote
1answer
54 views
How to tokenize a string with an embedded string?
I am learning how to use the Haskell lexical analyzer tool called Alex 1.
I am trying to implement a lexical analyzer for this string (an email "From:" header):
From: "John Doe" <john@doe.org>
...
2
votes
2answers
117 views
++, last & init faster than :, head & tail?
Given these two ways of writing a function that finds all primes up to a specific number:
primes1 = iterate
(\ps -> ps ++ [([x |
x <- [last ps + 1..],
all (\p -> x `mod` ...
2
votes
1answer
35 views
How to authenticate from a bookmarklet in Yesod / How to add OPTIONS to Auth subsite of Yesod
I wanted to access a server API I made with Yesod 1.2 from a bookmarklet. I wanted to POST from the bookmarklet at any other sites. The server API has an authentication (by Mozilla Persona and Google ...
1
vote
4answers
108 views
where can I find a complete list of the Haskell modules?
I found that http://www.haskell.org/ghc/docs/latest/html/libraries/ has a big list and references but GHCI has a different list (i.e. when you are trying to load a module, GHCI gives you a list of the ...
0
votes
1answer
84 views
Haskell parse error on input '->' [closed]
I am trying to write a program in Haskell which will get a,b,c of Quadratic function and calculate lists of roots:
roots :: (Double, Double, Double) -> [Double]
roots (a,b,c) =
case ...
3
votes
1answer
78 views
Why does smallCheck's `Series` class have two types in the constructor?
This question is related to my other question about smallCheck's Test.SmallCheck.Series class. When I try to define an instance of the class Serial in the following natural way (suggested to me by an ...
2
votes
2answers
65 views
Haskell construct a type contains class
I want to construct a haskell type:
type SinglePP = (String,GLattice)
Where the GLattice is defined as:
class GLattice l where
join :: l->l->l
....
Is there a way ...
2
votes
2answers
112 views
Types and do notation
This is several questions rolled into one:
In do notation, does each line have to return the same type? For example, can I write one line in a single do block that returns an IO monad, and another ...
4
votes
2answers
99 views
How to use SmallCheck in Haskell?
I am trying to use SmallCheck to test a Haskell program, but I cannot understand how to use the library to test my own data types. Apparently, I need to use the Test.SmallCheck.Series. However, I find ...
0
votes
1answer
127 views
Haskell Time Issue
it is my second question about haskell and i thought my algorhythm is not bad and it gives faster results in c++ and python and there is some problem at haskell it cant give me 10^25 (maybe it gives ...
0
votes
1answer
86 views
Haskell monad return type
I'm trying to do a bit of programming and I can't get into monads. I've advanced a bit with IO functions, but now I'm definitely lost...
I've got a XML string that was loaded from the network (so ...
0
votes
1answer
111 views
Haskell - list comprehension can't enumerate N × N
I have to write a function which returns a list of all pairs (x,y) where x,
y ∈ N , and:
x is the product of two natural numbers (x = a • b, where a, b ∈ N) and
x is really bigger than 5 but really ...
7
votes
1answer
98 views
Transformation under Transformers
I'm having a bit of difficulty with monad transformers at the moment. I'm defining a few different non-deterministic relations which make use of transformers. Unfortunately, I'm having trouble ...
11
votes
5answers
271 views
Can a monad be a comonad?
I know what a monad is. I think I have correctly wrapped my mind around what a comonad is. (Or rather, what one is seems simple enough; the tricky part is comprehending what's useful about this...)
...
-1
votes
0answers
82 views
Haskell - determine set of free and bounded variables of a function
I have to determine the set of free and bounded variables of the function s1 and s2:
s1 := \x -> if y then \z -> (x \y -> y) else (\z -> w) x
So, for s1 I'll write:
FV(s1):= FV (y) ∪ ...
-1
votes
1answer
85 views
How to write a function that controls the data end decide if a data type exists?(Haskell)
Sorry i wasn't sure about how to ask.
I was wondering are we able to control a data type and decide whether the entered data exists in Haskell?
For example;
data Ruler =Ruler Length Price ...
0
votes
2answers
67 views
Haskell: File Access Time Formatted “yyyy-MM-dd”
I'm getting quite lost in all the different date and time libraries available to me in Haskell. What I'm trying to do is format the file modification time as "yyyy-MM-dd". Can someone show me how to ...
0
votes
3answers
67 views
Haskell - List Comprehension - get Input-Elements
I have some problem with list comprehension, if the input is a list.
In these all III excercises it's not allowed to use: map, filter and concat!!!
Part I
Requirements:
A funktion f1 gets a list ...
1
vote
1answer
86 views
How do I declare the type of a variable inside a function in Haskell?
This is a reframe of the question that was asked at Defining variables inside a function Haskell
I have a function the beginning of which looks like this:
recursiveLs :: FilePath -> IO [FilePath]
...
8
votes
1answer
184 views
Every monad is monoid?
Since every Monad is a Monoid on the sequencing operation.
Why doesn't Monad inherit Monoid in haskell?
1
vote
2answers
60 views
Parse Array in nested JSON with Aeson
I'm trying to write a FromJSON function for Aeson.
The JSON:
{
"total": 1,
"movies": [
{
"id": "771315522",
"title": "Harry Potter and the Philosophers Stone (Wizard's ...
4
votes
1answer
69 views
Conditional Compilation inside Literate Haskell
I have a literate haskell file and want to use conditional compilation. I use the bird style of literate programming. The following code does not work.
> #if MIN_VERSION_base(4,6,0)
> import ...
2
votes
3answers
185 views
Are there any Stackless Python like projects for other languages (Java, Lisp, Haskell, Go etc) [closed]
Well thats the question. Are there any projects for other languages which try to imitate what stackless python is doing for python?
1
vote
1answer
55 views
Please provide a simple test-framework example that uses QuickCheck2
I'm struggling a little to get this basic test-framework example to work with QuickCheck2. I get the following error that is mentioned on the above page, due to the example's use of QuickCheck 1. I ...
1
vote
2answers
96 views
Troubles with Haskell condition
I'm a beginner in Haskell and have a trouble in the next block:
up_heap :: Num a => [a] -> [a] -> [a]
up_heap heap (h:t) =
let ppos = quot (length heap) 2 in
case ((ppos > 0) ...
0
votes
2answers
61 views
Overflow problems in dealing with IO and MonadRandom and chained computations
So basically I have a computation step that takes in a previous result and outputs a Rand g Path, where Path is a custom data type (think of it like a traveling salesman kind of problem). I'm letting ...
6
votes
1answer
107 views
What's the most efficient way to run cross-platform, deterministic simulations in Haskell?
My goal is to run a simulation that requires non-integral numbers across different machines that might have a varying CPU architectures and OSes. The main priority is that given the same initial ...
2
votes
1answer
56 views
no type information (try :GHGReload)
I'm using haskellmode, a vim plugin, and when I move my cursor over an editor window in the course of typing code, I get a message at the bottom of the window that says:
no type information (try ...
0
votes
1answer
48 views
Binary Search Tree to list in Haskell
I've been given a BST in haskell that is capable of adding, removing, lookup, findingMax, and removingMax. I have to make a function that converts the data to a list structure.
bstToList:: (BST k v) ...
2
votes
1answer
95 views
How to run a ghc compiled binary on other machines?
This post is really informative on what I'm trying to achieve.
I produced a simple HelloUnix binary.
$ echo 'main = putStrLn "Hello Unix"' > HelloUnix.hs
$ ghc -static --make HelloUnix.hs
Which ...
3
votes
1answer
42 views
cabal-install does not retain the version for happy
I've trying to do cabal install hoogle but there is a hickup with the haskell-src-exts-1.13.5 dependency:
Configuring haskell-src-exts-1.13.5...
setup: The program happy version >=1.17 is required ...
0
votes
1answer
54 views
Higher order function, parse error in pattern: xs
Here is my code:
-- combine lists with binary operation
clwbo :: (Num a, Num b, Num c) => (a -> b -> c) -> [a] -> [b] -> [c]
clwbo fps lista listb
|length lista /= length ...
0
votes
3answers
102 views
Haskell - what is wrong with this function?
i am trying to compute the harmonic series with the function below. But there's a type error and not quite sure what it mean? another question, why [5..1] would gives an empty list?
sumHR = foldr ...
1
vote
1answer
71 views
How to use generics in Haskell
I'm trying to wrap my head around generics in Haskell. My issue is I created a concatenate function that takes a list of Strings and returns a giant string.
concatenate:: [String] -> String
...
1
vote
0answers
85 views
Haskell object lifetime performance [duplicate]
foo x y = x*x + y
fat x y = let xx = x*x in xx + y
bar x = \y -> x*x + y
baz x = let xx = x*x in \y -> xx + y
foo' = foo 2
fat' = fat 2
bar' = bar 2
baz' = baz 2
Will repeated calling ...
2
votes
1answer
132 views
How can I use catch properly?
When I use catch, I get this warning:
Warning: In the use of `catch'
(imported from System.IO.Error):
Deprecated: "Please use the new exceptions variant, Control.Exception.catch"
...
0
votes
0answers
102 views
Haskell: Problems with lazy evaluation and file creation
My problem is the following: My program has to generate a file and then send a shell call to another program that has to compute such file. However, due to lazy evaluation, the file isn't generated in ...
3
votes
0answers
60 views
Cabal “Data Files” Not Being Copied
I'm trying to use the "data-files" mechanism, and stuff works fine except that the
relevant files are not copied into the share/ directory. e.g. my .cabal file looks like:
name: ...

