https://github.com/cran/ensembleBMA
Raw File
Tip revision: 3323f8b6f9fea8a934b62398bf6af0de151cc290 authored by Chris Fraley on 19 June 2016, 09:47:53 UTC
version 5.1.3
Tip revision: 3323f8b
controlBMAgamma0.R
controlBMAgamma0 <-
function(maxIter = Inf, tol = sqrt(.Machine$double.eps), power = (1/3),
         rainobs = 10, init = list(varCoefs = NULL, weights = NULL),
         optim.control = list(ndeps = rep(sqrt(.Machine$double.eps),2))) 
{
#
# copyright 2006-present, University of Washington. All rights reserved.
# for terms of use, see the LICENSE file
#

 if (is.infinite(maxIter) && maxIter > 0) maxIter <- .Machine$integer.max
 list(maxIter = maxIter, tol = tol, power = power, rainobs = rainobs,
      init = init, optim.control = optim.control) 
}

back to top