• using R version 2.15.0 (2012-03-30)
  • using platform: x86_64-pc-mingw32 (64-bit)
  • using session charset: ISO8859-1
  • checking for file 'voronoi/DESCRIPTION' ... OK
  • checking extension type ... Package
  • this is package 'voronoi' version '1.1'
  • checking package namespace information ... OK
  • checking package dependencies ... OK
  • checking if this is a source package ... OK
  • checking if there is a namespace ... OK
  • checking whether package 'voronoi' can be installed ... OK
  • checking installed package size ... OK
  • checking package directory ... OK
  • checking for portable file names ... OK
  • checking DESCRIPTION meta-information ... OK
  • checking top-level files ... OK
  • checking index information ... OK
  • checking package subdirectories ... OK
  • checking R files for non-ASCII characters ... OK
  • checking R files for syntax errors ... OK
  • loading checks for arch 'i386'
    ** checking whether the package can be loaded ... OK
    ** checking whether the package can be loaded with stated dependencies ... OK
    ** checking whether the package can be unloaded cleanly ... OK
    ** checking whether the namespace can be loaded with stated dependencies ... OK
    ** checking whether the namespace can be unloaded cleanly ... OK
  • loading checks for arch 'x64'
    ** checking whether the package can be loaded ... OK
    ** checking whether the package can be loaded with stated dependencies ... OK
    ** checking whether the package can be unloaded cleanly ... OK
    ** checking whether the namespace can be loaded with stated dependencies ... OK
    ** checking whether the namespace can be unloaded cleanly ... OK
  • checking for unstated dependencies in R code ... OK
  • checking S3 generic/method consistency ... OK
  • checking replacement functions ... OK
  • checking foreign function calls ... OK
  • checking R code for possible problems ... OK
  • checking Rd files ... OK
  • checking Rd metadata ... OK
  • checking Rd cross-references ... OK
  • checking for missing documentation entries ... OK
  • checking for code/documentation mismatches ... OK
  • checking Rd \usage sections ... OK
  • checking Rd contents ... OK
  • checking for unstated dependencies in examples ... OK
  • checking examples ...
    ** running examples for arch 'i386' ... OK
    ** running examples for arch 'x64' ... ERROR
    Running examples in 'voronoi-Ex.R' failed
    The error most likely occurred in:

    > ### Name: adap.kern
    > ### Title: Kernel estimation using adaptive bandwidth
    > ### Aliases: adap.kern
    >
    > ### ** Examples
    >
    >
    > par(mfrow = c(2,2))
    >
    > #=====> Create point pattern <=====#
    > gon <- cbind(c(0,1,1,0), c(0,0,1,1))
    > r <- 8
    > p <- pattern.sim(r, type = "moon")
    > plot(p, main = "points")
    >
    > #=====> Create grid and plot truth <=====#
    > n <- 75
    > gd <- seq(0, 1, len = n)
    > y <- as.matrix(expand.grid(gd, gd))
    > z0 <- pattern.sim(r, type = "moon", pts = y)[,3]
    > m0 <- matrix(z0, n, n)
    > grsc <- grey(seq(1, 0, len = 1500))
    > image(m0, col = grsc, axes = FALSE, main = "truth")
    > box()
    >
    > #=====> Adaptive kernel <=====#
    > l <- bw(p)
    > z1 <- adap.kern(y, p, l, gon)