[If this belongs on another StackExchange site, please let me know. Theoretical CS just didn't feel right]
Let's say I have this function: (Haskell syntax)
f x = (x,x)
What is the work (amount of calculation) performed by the function?
At first I thought it was obviously constant, but what if the type of x is not finite, meaning, x can take an arbitrary amount of memory? One would have to take into account the work done by copying x as well, right?
This led me to believe that the work done by the function is actually linear in the size of the input.
This isn't homework for itself, but came up when I had to define the work done by the function:
f x = [x]
Which has a similar issue, I believe.
(x,x)could trigger evaluation ofxtwice depending on whether the monomorphism restriction is in effect or not. E.g. see this recent blog post: [ics.p.lodz.pl/~stolarek/blog/2012/05/… understanding Haskell’s monomorphism restriction) – user5402 Jun 1 '12 at 17:25