repa-3.2.3.3: High performance, regular, shape polymorphic parallel arrays.

Safe HaskellNone

Data.Array.Repa.Arbitrary

Contents

Synopsis

Arbitrary Unboxed Arrays

arbitraryUShaped :: (Arbitrary a, Unbox a, Shape sh) => sh -> Gen (Array U sh a)Source

Generates a random unboxed array of a given shape

forAllUShaped :: (Show sh, Show a, Testable prop, Arbitrary a, Unbox a, Shape sh) => sh -> (Array U sh a -> prop) -> PropertySource

Property tested for unboxed random arrays with a given shape.

forAll2UShaped :: (Show sh, Show a, Testable prop, Arbitrary a, Unbox a, Shape sh) => sh -> ((Array U sh a, Array U sh a) -> prop) -> PropertySource

Property tested for pair of unboxed random arrays with a given shape.

forAll3UShaped :: (Show sh, Show a, Testable prop, Arbitrary a, Unbox a, Shape sh) => sh -> ((Array U sh a, Array U sh a, Array U sh a) -> prop) -> PropertySource

Property tested for triple of unboxed random arrays with a given shape.

forAll4UShaped :: (Show sh, Show a, Testable prop, Arbitrary a, Unbox a, Shape sh) => sh -> ((Array U sh a, Array U sh a, Array U sh a, Array U sh a) -> prop) -> PropertySource

Property tested for quadruple of unboxed random arrays with a given shape.

forAll5UShaped :: (Show sh, Show a, Testable prop, Arbitrary a, Unbox a, Shape sh) => sh -> ((Array U sh a, Array U sh a, Array U sh a, Array U sh a, Array U sh a) -> prop) -> PropertySource

Property tested for 5-tuple of unboxed random arrays with a given shape.

Arbitrary Boxed Arrays

arbitraryVShaped :: (Arbitrary a, Shape sh) => sh -> Gen (Array V sh a)Source

Generates a random boxed array of a given shape

forAllVShaped :: (Show sh, Show a, Testable prop, Arbitrary a, Shape sh) => sh -> (Array V sh a -> prop) -> PropertySource

Property tested for unboxed random arrays with a given shape.

forAll2VShaped :: (Show sh, Show a, Testable prop, Arbitrary a, Shape sh) => sh -> ((Array V sh a, Array V sh a) -> prop) -> PropertySource

Property tested for pair of unboxed random arrays with a given shape.

forAll3VShaped :: (Show sh, Show a, Testable prop, Arbitrary a, Shape sh) => sh -> ((Array V sh a, Array V sh a, Array V sh a) -> prop) -> PropertySource

Property tested for triple of unboxed random arrays with a given shape.

forAll4VShaped :: (Show sh, Show a, Testable prop, Arbitrary a, Shape sh) => sh -> ((Array V sh a, Array V sh a, Array V sh a, Array V sh a) -> prop) -> PropertySource

Property tested for quadruple of unboxed random arrays with a given shape.

forAll5VShaped :: (Show sh, Show a, Testable prop, Arbitrary a, Shape sh) => sh -> ((Array V sh a, Array V sh a, Array V sh a, Array V sh a, Array V sh a) -> prop) -> PropertySource

Property tested for 5-tuple of unboxed random arrays with a given shape.