vote up 3 vote down star
1

I am new to F#, and I am trying to write a function that calculates a powerset.

I am getting an error from Mono (running this on a Mac) that is below.

For example, I would pass calcPowerSet ([1;2;3], []) to start the function. Any ideas on how to solve the issue?

System.InvalidProgramException: Invalid IL code in FSI_0010:calcPowerSet (Microsoft.FSharp.Collections.List`1,Microsoft.FSharp.Collections.List`1): IL_005d: stind.r4  


  at FSI_0010.calcPowerSet[Int32] (Microsoft.FSharp.Collections.List`1 _arg1_0, Microsoft.FSharp.Collections.List`1 _arg1_1) [0x00000] 
  at .$FSI_0011._main () [0x00000] 
  at (wrapper managed-to-native) System.Reflection.MonoMethod:InternalInvoke (object,object[],System.Exception&)
  at System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00000] 
stopped due to error

Code:

let rec calcPowerSet = function
 | ([], []) -> [[]]
 | ((head::tail), (cHead::cTail)) -> 
  calcPowerSet (tail, (cHead::cTail)) @ calcPowerSet (tail, (head::cHead::cTail))
 | ((head::tail), []) -> 
  calcPowerSet (tail, []) @ calcPowerSet (tail, [head])
 | ([], collect) -> [collect];;
flag
Which version of F#? (e.g. 1.9.6.2) – Brian May 8 at 0:25
FYI - On 1.9.6.2 on Windows, your function works as expected. – Brian May 8 at 0:30
Interesting. I am using F# 1.9.4.19 I will try on a windows machine. Could this be a mono implementation issue? – Philip Harris May 8 at 0:32
It might be a mono issue or it might be an F# issue; with more data can probably nail it down. – Brian May 8 at 0:40
1  
Which version of mono are you using? – James Black May 8 at 1:05
show 5 more comments

3 Answers

vote up 2 vote down check

I have no idea why it doesn't work (I got the same result) but if you rewrite it as:

let calcPowerSet =
   let rec innerCalc = 
      function
      | ([], []) -> [[]]
      | ((head::tail), (cHead::cTail)) -> 
         innerCalc (tail, (cHead::cTail)) @ innerCalc (tail, (head::cHead::cTail))
      | ((head::tail), []) -> 
         innerCalc (tail, []) @ innerCalc (tail, [head])
      | ([], collect) -> [collect]
   innerCalc

it seems to work fine under Mac (intel) with Mono 2.4 and F# 1.9.6.2

link|flag
(see my comments in the question's comments) I change my function by using an inner function like Johan's method and it works. See the changes here: pastebin.com/m6ec637a7 – phi May 8 at 16:10
Yep, worked for me too. – Philip Harris May 9 at 3:38
vote up 2 vote down

FYI, turns out the F# team is aware of this bug, it is a bug in Mono 2.4 that Mono team is aware of (dunno if has been fixed yet).

link|flag
Good to know - is there a bug forum for that so I can follow it's progress? – Philip Harris May 9 at 3:38
A quick web search finds bugzilla.novell.com/show_bug.cgi?id=419828/… – Brian May 9 at 8:49
Still about F# and mono bugs, I remember a post on the Flying Frog Consultancy blog which proved that - as of version 2.2 of mono - tail recursion wasn't adequately supported yet and resulted in leaked memory (don't know how's the situation now as I don't do mono). – emaster70 May 9 at 14:23
vote up -3 vote down

Mono is extremely buggy and leaks stack space and leaks heap space due to the lack of proper tail recursion and accurate garbage collection, respectively. Consequently, I have found F# to be virtually unusable on Mono. Hopefully the open source world will reinvent a production-quality language-agnostic VM with these kinds of basic features but, for now, they are a decade behind the state-of-the-art that is .NET.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.