Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The following is the translation from Haskell, but can not pass compile I am trying to learn one Haskell example in F#, however, my translation can not be compiled, there are a few syntax problems in my translation

// Learn more about F# at http://fsharp.net
open FsCheck
open FsCheck.Gen

type promote = (a -> Gen b) -> (Gen (a->b))
let promote = f = Gen (n r -> a -> m n r where Gen m = f a)

type Coarbitrary a = let coarbitrary a -> (Gen b -> Gen b)

member (Coarbitrary a, Arbitrary b) => Arbitrary (a -> b) where arbitrary = promote (a -> coarbitrary a arbitrary)

type variant : Int -> Gen a -> Gen a
let variant v (Gen m) = Gen (n r -> m n (rands r !! (v+1)))
= rands r0 = r1 : rands r2
= (r1, r2) = Random.split r0

member Coarbitrary.coarbitrary b where if b then variant 0 else variant 1

member Arbitrary.arbitrary = sized $ n -> choose (-n,n) coarbitrary n = variant (if n >= 0 then 2*n else 2*(-n) + 1)

member (Coarbitrary a, Coarbitrary b) => Coarbitrary (a, b) where coarbitrary (a, b) = coarbitrary a . coarbitrary b

member Coarbitrary a => Coarbitrary [a] where coarbitrary [] = variant 0 coarbitrary (a:as) = coarbitrary a . variant 1 . coarbitrary

//Generate Random Function
main :: IO ()
main = FsCheck.Check promote

The original Haskell code

import Test.QuickCheck.Function
import Test.QuickCheck.Gen

promote :: (a -> Gen b) -> (Gen (a->b))
promote f = Gen (\n r -> 
         \a -> m n r where Gen m = f a)

class Coarbitrary a where
coarbitrary :: a -> (Gen b -> Gen b)

instance (Coarbitrary a, Arbitrary b) => Arbitrary (a -> b) where
arbitrary = promote (a -> coarbitrary a arbitrary)

variant :: Int -> Gen a -> Gen a
variant v (Gen m) = Gen (\n r -> m n (rands r !! (v+1)))
where rands r0 = r1 : rands r2
where (r1, r2) = Random.split r0

instance Coarbitrary Bool where
coarbitrary b = if b then variant 0 else variant 1

instance Arbitrary Int where
arbitrary = sized $ \n -> choose (-n,n)
coarbitrary n = variant (if n >= 0 then 2*n else 2*(-n) + 1)

instance (Coarbitrary a, Coarbitrary b)
=> Coarbitrary (a, b) where
coarbitrary (a, b) = coarbitrary a . coarbitrary b

instance Coarbitrary a => Coarbitrary [a] where
coarbitrary []
= variant 0
coarbitrary (a:as) = coarbitrary a . variant 1 . coarbitrary
//Generate Random Function
main :: IO ()
main = QuickCheck promote
share|improve this question
1  
Here are some hints (which may be wrong, my Haskell is bad): . (Haskell) = |> (F#). You need to improve the indenting of the F# code - as a starting point indent all the lines starting with member as well as let. The lines starting with = need to be indented twice. I am not sure what main::IO() does - but it is definitely not F#. I am not sure what the Gen type is, but its definition is missing. These should get you at least much closer – John Palmer Nov 11 '11 at 10:16
1  
In addition to what @JohnPalmer wrote, possibly the main problem with you attempt is that F# doesn't have any feature directly corresponding to Haskell type classes. This means that you won't be able to directly translate the code and you'll need to find some other (idiomatic F#) approach. – Tomas Petricek Nov 11 '11 at 10:25

closed as too localized by Daniel, Matt Fenwick, kvb, Tomas Petricek, Graviton Nov 11 '11 at 10:57

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.