Nothing
print.lp <- function(x, ...)
{
if(x$status == 0) {
cat("Success: the objective function is", x$objval, "\n")
if (any (names(x) == "num.bin.solns") && x$num.bin.solns > 1)
cat ("\t", x$num.bin.solns, "solutions returned\n")
}
else if(x$status == 2)
cat("Error: no feasible solution found")
else cat("Error: status", x$status, "\n")
}
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.