Nothing
# Uniform value mutation
unimut = function(y, lb, ub, ...){
if(missing(lb) | missing(ub))
stop("unimut requires lb and ub!")
v = sample(1:length(y), 1)
y[v] = runif(1, lb[v], ub[v])
return(list(mutant=y, mutgen=v))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.