I play a package a bit LowRankQP()in R, and even the installation verbose=FALSEstill produces many outputs (see example below).
The outputs come from the compiled part of the code. Is there a way (wrap function?) In R to make the call LowRankQP()completely silent (i.e. don't print anything on the screen) without changing the base compiled code (none of the email addresses associated with this package is still active)?
library(LowRankQP)
Vmat <- matrix(0,6,6)
diag(Vmat) <- c(1, 1,1,0,0,0)
dvec <- c(0,-5,0,0,0,0)
Amat <- matrix(c(-4,-3,0,-1,0,0,2,1,0,0,-1,0,0,-2,1,0,0,-1),6,3)
bvec <- c(-8,2,0)
uvec <- c(100,100,100,100,100,100)
aa<-LowRankQP(Vmat,dvec,t(Amat),bvec,uvec,method="CHOL")
This is the part that starts with "LowRankQP CONVERGED IN 15 ITERATIONS", which I want away with.
Ubuntu 11.04, R version 2.12.1 and LowRankQP () 1.0.1.