Tagged Questions

25
votes
7answers
5k views

Use of Haskell state monad a code smell?

God I hate the term "code smell", but I can't think of anything more accurate. I'm designing a high-level language & compiler to Whitespace in my spare time to learn about compiler construction, ...
24
votes
3answers
870 views

Difference between State, ST, IORef, and MVar

I am working through Write Yourself a Scheme in 48 Hours (I'm up to about 85hrs) and I've gotten to the part about Adding Variables and Assignments. There is a big conceptual jump in this chapter, and ...
22
votes
5answers
791 views

ST Monad == code smell?

I'm working on implementing the UCT algorithm in Haskell, which requires a fair amount of data juggling. Without getting into too much detail, it's a simulation algorithm where, at each "step," a ...
16
votes
4answers
995 views

Haskell: How to write interactive interpreter on top of a State monad?

We're working on a model filesystem that uses a state monad internally. We have a type class with operations like these: class Monad m => FS m where isDirectory :: Path -> m Bool children ...
13
votes
1answer
390 views

Why does this simple use of the State monad cause a stack overflow?

I was playing around with the State monad, and I don't know what's causing the stack overflow in this simple piece of code. import Control.Monad.State.Lazy tick :: State Int Int tick = do n <- ...
9
votes
2answers
992 views

Haskell Monad Transformer Stack and Type Signatures

I am attempting to create a stack of monad transformers and am having trouble getting the correct type signatures for my functions. (I'm still pretty new to Haskell) The stack combines multiple ...
8
votes
3answers
503 views

Updating a Big State Fast in Haskell

For my vector graphics library in Haskell I must carry around a rather big state: line stroke parameters, colors, clip path etc. I know two ways of doing this. Quoting a comment from Haskell-cafe: "I ...
7
votes
1answer
504 views

Tips for more elegant code with monads?

I finally got a hold on how to use monads (don't know if I understand them...), but my code is never very elegant. I guess is from a lack of grip on how all those functions on Control.Monad can really ...
7
votes
3answers
549 views

State Monad, sequences of random numbers and monadic code

I'm trying to grasp the State Monad and with this purpose I wanted to write a monadic code that would generate a sequence of random numbers using a Linear Congruential Generator (probably not good, ...
7
votes
4answers
432 views

How does 'get' actually /get/ the initial state in Haskell?

I have a function: test :: String -> State String String test x = get >>= \test -> let test' = x ++ test in put test' >> get >>= \test2 -> put (test2 ++ x) ...
6
votes
2answers
202 views

How can I combine the CheckingFuelMonad with a State monad in Hoopl?

I am using the Hoopl library and would like to carry some state around while rewriting. The rewrite functions are polymorphic regarding the monad used, but I cannot figure out how to combine a State ...
6
votes
1answer
156 views

What is the name of this Monad Stack function?

I've got a bunch of stateful functions inside a State monad. At one point in the program there needs to be some IO actions so I've wrapped IO inside a StateT getting a pair of types like this: ...
6
votes
1answer
430 views

Continuation monad “interface”

The state monad "interface" class MonadState s m where get :: m s put :: s -> m () (+ return and bind) allows to construct any possible computation with State monad without using State ...
5
votes
2answers
323 views

Combining StateT and State monads

Lets say I have a function f :: State [Int] Int and a function: g :: StateT [Int] IO Int I want to use f in g and pass the state between them. Is there a library function for StateT (return . ...
4
votes
5answers
474 views

How can I write a state monad that does error handling as well?

I need to write a state monad that can also support error handling. I was thinking of using the Either monad for this purpose because it can also provide details about what caused the error. I found a ...
4
votes
1answer
257 views

State monads: trading one pattern for another?

So I'm writing a game in Haskell, and I'm expressing a player's turn as a series of state-altering functions that correlate to various turn phases. Originally, this looks something like: let game' = ...
4
votes
2answers
521 views

Is it better to use the State monad, or to pass state recursively?

I'm just learning Haskell, and trying to figure out the most idiomatic way to implement a line of sight algorithm. The demo code I found uses the state monad, but it seem simpler to me (I'm just a ...
4
votes
3answers
427 views

How can I initialize state in a hidden way in Haskell (like the PRNG does)?

I went through some tutorials on the State monad and I think I got the idea. For example, as in this nice tutorial: import Data.Word type LCGState = Word32 lcg :: LCGState -> (Integer, ...
3
votes
2answers
78 views

Applicative instance for State and other MTL monads?

Looking at the docs for Control.Applicative, I notice that they have instance declarations for certain monads (e.g. IO, Maybe and notably ST), but there are no instances for MTL monads such as State ...
3
votes
2answers
236 views

Haskell: iterate in State, how to force the behaviour I want?

This is my first posting on SO, and I'm relatively new to Haskell, so please excuse any missteps or if my code is not idiomatic! Consider the following two intuitive descriptions of: a, f(a), ...
3
votes
1answer
114 views

runState inside a State Monadic function not working

I am trying to solve the problem 2.8 of "AI - A Modern Approach" book which involves a grid of cells and choosing random moves to navigate the grid. 2.7 Implement an environment for a n X m ...
2
votes
2answers
159 views

Complex State Monad Structure

I am still a newbie to Haskell and I think I am over my head right now. I have code that looks like the following. data World = World { intStack :: [Int], boolStack :: [Bool] } deriving Show ...
2
votes
2answers
484 views

state monad haskell

I want to write a function for calculating the average using the State Monad in haskell this is the code I wrote as far import Control.Monad.State type MyState = (Double,Double) media s (a,n)= ...
1
vote
2answers
204 views

No more state monad version of hash maps / sets in Haskell?

Is the monadic interface to hash sets and maps gone in Haskell? What kind of performance model should I have in mind when using the modern versions? (Data.Map, Data.HashMap, Data.HashSet). They do not ...
1
vote
2answers
101 views

StateT and WX gui coexistance

usual wxHaskell program looks like main = do run gui gui = do .... .... gui must have type IO a, run has type IO a -> IO (), also there is some initialization routines in ...
0
votes
3answers
107 views

“instance Show State where” doesn't compile

This is the State Monad code I am trying to figure out data State a = State (Int -> (a, Int)) instance Monad State where return x = State (\c -> (x, c)) State m >>= f = ...
0
votes
3answers
351 views

Class set method in Haskell using State-Monad

I've recently had a look at Haskell's Monad - State. I've been able to create functions that operate with this Monad, but I'm trying to encapsulate the behavior into a class, basically I'm trying to ...
0
votes
1answer
79 views

Exporting a polymorphic MonadState function for a particular state data type

What I'm trying to do is (in a module I'm writing) export a function that works on a particular type in a state monad (in the example below, that type would be Foo). However I would like the user to ...