In this function:
play :: [Bool] -> ([Bool] -> Bool) -> ([Bool] -> Bool) -> [Bool]
play history agent1 agent2 = history ++ (agent1 history) ++ (agent2 history)
Where one of the agents may be:
titForTat :: [Bool] -> Bool
titForTat history
| last history = True
| otherwise = False
I get the error:
Couldn't match expected type `[Bool]' with actual type `Bool'
In the return type of a call of `agent1'
In the first argument of `(++)', namely `(agent1 history)'
In the second argument of `(++)', namely
`(agent1 history) ++ (agent2 history)'
It looks to me that the return type of agent1 should be a list of Booleans, but there seems to be an error. I'm sorry if this is a very beginner question. Thank you
titForTatcould be reduced to simply:titForTat history = last historyor in pointfree form:titForTat = last– mhwombat Jan 14 at 16:03titForTatcould be justtitForTat (x:_) = x. – Frerich Raabe Jan 14 at 16:15[(Bool,Bool)], so it's easier to see the choices of the agents in every round. And as already suggested, storing the history backwards is more convenient. – Landei Jan 14 at 19:04