@@ -2741,3 +2741,38 @@ MSCGEN_TOOL            =
27412741#  command).
27422742
27432743MSCFILE_DIRS            =
2744+ 
2745+ ALIASES += laplace_options =" \
2746+ \param[in] tolerance controls the convergence criterion when finding the mode in the Laplace approximation. \ 
2747+ \param[in] max_num_steps maximum number of steps before the Newton solver breaks and returns an error. \ 
2748+ \param[in] hessian_block_size Block size of Hessian of log likelihood w.r.t latent Gaussian variable theta. \ 
2749+ \param[in] solver Type of Newton solver. Each corresponds to a distinct choice of B matrix (i.e. application SWM formula): \ 
2750+ 1. computes square-root of negative Hessian. \ 
2751+ 2. computes square-root of covariance matrix. \ 
2752+ 3. computes no square-root and uses LU decomposition. \ 
2753+ \param[in] max_steps_line_search Number of steps after which the algorithm gives up on doing a line search. If 0, no linesearch. \ 
2754+ " 
2755+ 
2756+ ALIASES += laplace_common_template_args =" \
2757+  \tparam ThetaVec A type inheriting from `Eigen::EigenBase` with dynamic sized rows and 1 column. \ 
2758+  \tparam CovarFun A functor with an `operator()(CovarArgsElements..., {TrainTupleElements...| PredTupleElements...})` \ 
2759+  method. The `operator()` method should accept as arguments the \ 
2760+  inner elements of `CovarArgs`. The return type of the `operator()` method \ 
2761+  should be a type inheriting from `Eigen::EigenBase` with dynamic sized \ 
2762+  rows and columns. \ 
2763+  \tparam CovarArgs A tuple of types to passed as the first arguments of `CovarFun::operator()`\ 
2764+ " 
2765+ 
2766+ ALIASES += laplace_common_args =" \
2767+ \param[in] theta_0 the initial guess for the Laplace approximation. \ 
2768+ \param[in] covariance_function a function which returns the prior covariance. \ 
2769+ \param[in] covar_args arguments for the covariance function. \ 
2770+ " 
2771+ 
2772+ ALIASES += msg_arg =" \
2773+ \param[in, out] msgs stream for messages from likelihood and covariance \ 
2774+ " 
2775+ 
2776+ ALIASES += rng_arg =" \
2777+ \param[in, out] rng Random number generator \ 
2778+ " 
0 commit comments