Tagged Questions
1
vote
1answer
134 views
Haskell - Avoiding a control stack overflow with tree recursion
For a university assignment, we have to investigate the various solutions to the knapsack problem, and then implement a solution in both Haskell and Python.
I have chosen brute force. I realize there ...
1
vote
1answer
107 views
How use DiffArray in Haskell? How make more strict this code?
I try use Data.Array
code
It's ok, but slow.
Then use Data.Array.Diff
code
Could not find module `Data.Array.Diff'
If I use Data.Array.Unboxed, than not found DiffArray or DiffUArray ...
1
vote
2answers
110 views
How to force strict evaluation of a sequence of ByteString
I have the following Haskell type definition:
import Data.Sequence(Seq, length)
import Data.ByteString.UTF8(ByteString)
type StringSeq = Seq ByteString
I have expressions of type StringSeq for ...
6
votes
2answers
235 views
Haskell - strict vs non-strict with foldl
I have a question concerning the definition of strict vs non-strict. The Haskell wiki-book for Laziness (http://en.wikibooks.org/wiki/Haskell/Laziness), under the section "Black-box strictness ...
9
votes
1answer
155 views
How unpacking strict fields goes together with polymorphism?
The {-# UNPACK #-} pragma tells the compiler to eliminate redundant constructors. Quoting Haskell wiki:
For example, given this:
data T = T {-# UNPACK #-} !(Int,Float)
GHC will represent ...
19
votes
2answers
330 views
the seq function and strictness
I have been wondering about this a lot, but I haven't been able to find anything about it.
When using the seq function, how does it then really work? Everywhere, it is just explained saying that seq ...
9
votes
3answers
361 views
Ensuring files are closed promptly
I am writing a daemon that reads something from a small file, modifies it, and writes it back to the same file. I need to make sure that each file is closed promptly after reading before I try to ...
3
votes
1answer
180 views
Making a haskell program run in (roughly) a constant amount memory
I'm trying to take in a CSV file, error check it and then print error messages.
mapM_ (appendFile filePath) (errorCheck function that returns a [string])
This works but when i run it but on very ...
10
votes
5answers
460 views
Time cost of Haskell `seq` operator
This FAQ says that
The seq operator is
seq :: a -> b -> b
x seq y will evaluate x, enough to check that it is not bottom, then
discard the result and evaluate y. This might not seem ...
0
votes
1answer
171 views
Is there a functional representation for strict evaluation?
I want to implement the strict folding functions myself, from within Haskell: Is this possible? I've read that Lisp macros can be used to redefine the language to a massive extent, giving you the ...
7
votes
4answers
2k views
Convert a Lazy ByteString to a strict ByteString
I have a function that takes a lazy ByteString, that I wish to have return lists of strict ByteStrings (the laziness should be transferred to the list type of the output).
import qualified ...