explorations/fuse.R

# motivated by examples in the Riposte paper
f = function(data)
{
  x = log(data)
  mean = mean(x)
  sd = sd(x)
  return(c(mean = mean, sd = sd)) # explicitly identifying x as unreachable.
                                  # code depends could do this for us
}
duncantl/R2llvm documentation built on May 14, 2019, 9:42 a.m.