packages feed

burst-detection-1.0: tests/Main.hs

module Main
  where

import Math.Bursts

main = undefined

t1 len x xcount zcount = sbtBurstAnalysisMany (replicate xcount x ++ replicate zcount 0) (initialWindow len 100 20000 defaultAggregate)
t2 len xs zcount = sbtBurstAnalysisMany (xs ++ replicate zcount 0) (initialWindow len 100 20000 defaultAggregate)