packages feed

xorshift-1: xorshift.cabal

name: xorshift
version: 1
Cabal-Version: >= 1.6
build-type: Simple

license: LGPL
copyright: ©2010 Robert Clausecker
license-file: "COPYING"

author: Robert Clausecker  <fuzxxl@gmail.com>
bug-reports: http://https://github.com/fuzxxl/Xorshift/issues
maintainer: Robert Clausecker

build-depends: base -any, random -any, time -any
stability:
homepage:
package-url:
synopsis: Haskell implementation of the xorshift random generator.
description: The Xorshift random generator is a very fast generator that uses
    only XOR and bitshifting operations. This package contains a basic version
    with a periode of 2^32-1 for 32-bit numbers and a version with a periode of
    2^64-1 for 64-bit numbers. The author didn't tested the random generator,
    but according to it's specification the resulting numbers are of good
    quality.

category: Math

library
  exposed-modules: Random.Xorshift
  exposed: True
  extensions: CPP, GeneralizedNewtypeDeriving
  hs-source-dirs: src
  buildable: True

source-repository head
  type:     git 
  location: git://github.com/fuzxxl/Xorshift.git

source-repository this
  type:     git
  location: git://github.com/fuzxxl/Xorshift.git
  tag:      release-1