diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2021-08-27 20:39:48 -0700 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2021-08-27 21:53:40 -0700 |
commit | 5f8880a8d77fd067dc6c6cc4d4a02432ac243d95 (patch) | |
tree | 7a99b2f8c506ca40aed412d67b7a6c2ca8c97349 /math/stanmath | |
parent | x11-themes/adwaita-icon-theme: update to 40.1.1 (diff) |
math/stanmath: New port: C++ template library for automatic differentiation
Diffstat (limited to 'math/stanmath')
-rw-r--r-- | math/stanmath/Makefile | 35 | ||||
-rw-r--r-- | math/stanmath/distinfo | 3 | ||||
-rw-r--r-- | math/stanmath/files/patch-make_compiler__flags | 14 | ||||
-rw-r--r-- | math/stanmath/files/patch-runTests.py | 11 | ||||
-rw-r--r-- | math/stanmath/pkg-descr | 6 | ||||
-rw-r--r-- | math/stanmath/pkg-plist | 1769 |
6 files changed, 1838 insertions, 0 deletions
diff --git a/math/stanmath/Makefile b/math/stanmath/Makefile new file mode 100644 index 000000000000..f1943a28517c --- /dev/null +++ b/math/stanmath/Makefile @@ -0,0 +1,35 @@ +PORTNAME= stanmath +DISTVERSIONPREFIX= v +DISTVERSION= 4.1.0 +CATEGORIES= math + +MAINTAINER= yuri@FreeBSD.org +COMMENT= C++ template library for automatic differentiation + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +RUN_DEPENDS= ${LOCALBASE}/include/boost/math/constants/constants.hpp:devel/boost-libs \ + ${LOCALBASE}/include/tbb/task_arena.h:devel/onetbb # compiler define -DTBB_INTERFACE_NEW chooses oneTBB as opposed to TBB +TEST_DEPENDS= gmake:devel/gmake + +USES= eigen:3,run, python:test shebangfix + +USE_GITHUB= yes +GH_ACCOUNT= stan-dev +GH_PROJECT= math + +SHEBANG_FILES= runTests.py + +MAKE_ENV= TBB_LIB="${LOCALBASE}/lib" + +NO_BUILD= yes +NO_ARCH= yes + +do-install: + @cd ${WRKSRC} && ${COPYTREE_SHARE} stan ${STAGEDIR}${PREFIX}/include + +do-test: # fail to compile: https://github.com/stan-dev/math/issues/2571 + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./runTests.py test/unit test/prob + +.include <bsd.port.mk> diff --git a/math/stanmath/distinfo b/math/stanmath/distinfo new file mode 100644 index 000000000000..2ee48ed4f9c4 --- /dev/null +++ b/math/stanmath/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1630043342 +SHA256 (stan-dev-math-v4.1.0_GH0.tar.gz) = f526be5f24864f256409ae5e4a17a5858e762a23c329d615a0709cd3935197ba +SIZE (stan-dev-math-v4.1.0_GH0.tar.gz) = 28210482 diff --git a/math/stanmath/files/patch-make_compiler__flags b/math/stanmath/files/patch-make_compiler__flags new file mode 100644 index 000000000000..4bb3e44294c9 --- /dev/null +++ b/math/stanmath/files/patch-make_compiler__flags @@ -0,0 +1,14 @@ +--- make/compiler_flags.orig 2021-08-28 03:13:59 UTC ++++ make/compiler_flags +@@ -274,9 +274,9 @@ LDLIBS_TBB ?= $(LDFLAGS_TBB) + + endif + +-ifdef TBB_INTERFACE_NEW ++#ifdef TBB_INTERFACE_NEW + CPPFLAGS_TBB ?= -DTBB_INTERFACE_NEW +-endif ++#endif + + ################################################################################ + # Setup STAN_THREADS diff --git a/math/stanmath/files/patch-runTests.py b/math/stanmath/files/patch-runTests.py new file mode 100644 index 000000000000..19b25694039f --- /dev/null +++ b/math/stanmath/files/patch-runTests.py @@ -0,0 +1,11 @@ +--- runTests.py.orig 2021-08-28 03:33:35 UTC ++++ runTests.py +@@ -172,7 +172,7 @@ def generateTests(j): + if isWin(): + doCommand("mingw32-make -j%d generate-tests -s" % (j or 1)) + else: +- doCommand("make -j%d generate-tests -s" % (j or 1)) ++ doCommand("gmake -j%d generate-tests -s" % (j or 1)) + + + def divide_chunks(l, n): diff --git a/math/stanmath/pkg-descr b/math/stanmath/pkg-descr new file mode 100644 index 000000000000..0f31dbb73343 --- /dev/null +++ b/math/stanmath/pkg-descr @@ -0,0 +1,6 @@ +The Stan Math Library is a C++, reverse-mode automatic differentiation library +designed to be usable, extensive and extensible, efficient, scalable, stable, +portable, and redistributable in order to facilitate the construction and +utilization of algorithms that utilize derivatives. + +WWW: https://mc-stan.org/math/ diff --git a/math/stanmath/pkg-plist b/math/stanmath/pkg-plist new file mode 100644 index 000000000000..ff623f8798b6 --- /dev/null +++ b/math/stanmath/pkg-plist @@ -0,0 +1,1769 @@ +include/stan/math.hpp +include/stan/math/fwd.hpp +include/stan/math/fwd/core.hpp +include/stan/math/fwd/core/fvar.hpp +include/stan/math/fwd/core/operator_addition.hpp +include/stan/math/fwd/core/operator_division.hpp +include/stan/math/fwd/core/operator_equal.hpp +include/stan/math/fwd/core/operator_greater_than.hpp +include/stan/math/fwd/core/operator_greater_than_or_equal.hpp +include/stan/math/fwd/core/operator_less_than.hpp +include/stan/math/fwd/core/operator_less_than_or_equal.hpp +include/stan/math/fwd/core/operator_logical_and.hpp +include/stan/math/fwd/core/operator_logical_or.hpp +include/stan/math/fwd/core/operator_multiplication.hpp +include/stan/math/fwd/core/operator_not_equal.hpp +include/stan/math/fwd/core/operator_subtraction.hpp +include/stan/math/fwd/core/operator_unary_minus.hpp +include/stan/math/fwd/core/operator_unary_not.hpp +include/stan/math/fwd/core/operator_unary_plus.hpp +include/stan/math/fwd/core/std_complex.hpp +include/stan/math/fwd/core/std_iterator_traits.hpp +include/stan/math/fwd/core/std_numeric_limits.hpp +include/stan/math/fwd/fun.hpp +include/stan/math/fwd/fun/Eigen_NumTraits.hpp +include/stan/math/fwd/fun/Phi.hpp +include/stan/math/fwd/fun/Phi_approx.hpp +include/stan/math/fwd/fun/abs.hpp +include/stan/math/fwd/fun/acos.hpp +include/stan/math/fwd/fun/acosh.hpp +include/stan/math/fwd/fun/arg.hpp +include/stan/math/fwd/fun/asin.hpp +include/stan/math/fwd/fun/asinh.hpp +include/stan/math/fwd/fun/atan.hpp +include/stan/math/fwd/fun/atan2.hpp +include/stan/math/fwd/fun/atanh.hpp +include/stan/math/fwd/fun/bessel_first_kind.hpp +include/stan/math/fwd/fun/bessel_second_kind.hpp +include/stan/math/fwd/fun/beta.hpp +include/stan/math/fwd/fun/binary_log_loss.hpp +include/stan/math/fwd/fun/cbrt.hpp +include/stan/math/fwd/fun/ceil.hpp +include/stan/math/fwd/fun/conj.hpp +include/stan/math/fwd/fun/cos.hpp +include/stan/math/fwd/fun/cosh.hpp +include/stan/math/fwd/fun/determinant.hpp +include/stan/math/fwd/fun/digamma.hpp +include/stan/math/fwd/fun/erf.hpp +include/stan/math/fwd/fun/erfc.hpp +include/stan/math/fwd/fun/exp.hpp +include/stan/math/fwd/fun/exp2.hpp +include/stan/math/fwd/fun/expm1.hpp +include/stan/math/fwd/fun/fabs.hpp +include/stan/math/fwd/fun/falling_factorial.hpp +include/stan/math/fwd/fun/fdim.hpp +include/stan/math/fwd/fun/floor.hpp +include/stan/math/fwd/fun/fma.hpp +include/stan/math/fwd/fun/fmax.hpp +include/stan/math/fwd/fun/fmin.hpp +include/stan/math/fwd/fun/fmod.hpp +include/stan/math/fwd/fun/gamma_p.hpp +include/stan/math/fwd/fun/gamma_q.hpp +include/stan/math/fwd/fun/grad_inc_beta.hpp +include/stan/math/fwd/fun/hypot.hpp +include/stan/math/fwd/fun/inc_beta.hpp +include/stan/math/fwd/fun/inv.hpp +include/stan/math/fwd/fun/inv_Phi.hpp +include/stan/math/fwd/fun/inv_cloglog.hpp +include/stan/math/fwd/fun/inv_logit.hpp +include/stan/math/fwd/fun/inv_sqrt.hpp +include/stan/math/fwd/fun/inv_square.hpp +include/stan/math/fwd/fun/inverse.hpp +include/stan/math/fwd/fun/is_inf.hpp +include/stan/math/fwd/fun/is_nan.hpp +include/stan/math/fwd/fun/lambert_w.hpp +include/stan/math/fwd/fun/lbeta.hpp +include/stan/math/fwd/fun/ldexp.hpp +include/stan/math/fwd/fun/lgamma.hpp +include/stan/math/fwd/fun/lmgamma.hpp +include/stan/math/fwd/fun/log.hpp +include/stan/math/fwd/fun/log10.hpp +include/stan/math/fwd/fun/log1m.hpp +include/stan/math/fwd/fun/log1m_exp.hpp +include/stan/math/fwd/fun/log1m_inv_logit.hpp +include/stan/math/fwd/fun/log1p.hpp +include/stan/math/fwd/fun/log1p_exp.hpp +include/stan/math/fwd/fun/log2.hpp +include/stan/math/fwd/fun/log_determinant.hpp +include/stan/math/fwd/fun/log_diff_exp.hpp +include/stan/math/fwd/fun/log_falling_factorial.hpp +include/stan/math/fwd/fun/log_inv_logit.hpp +include/stan/math/fwd/fun/log_inv_logit_diff.hpp +include/stan/math/fwd/fun/log_mix.hpp +include/stan/math/fwd/fun/log_rising_factorial.hpp +include/stan/math/fwd/fun/log_softmax.hpp +include/stan/math/fwd/fun/log_sum_exp.hpp +include/stan/math/fwd/fun/logit.hpp +include/stan/math/fwd/fun/mdivide_left.hpp +include/stan/math/fwd/fun/mdivide_left_ldlt.hpp +include/stan/math/fwd/fun/mdivide_left_tri_low.hpp +include/stan/math/fwd/fun/mdivide_right.hpp +include/stan/math/fwd/fun/mdivide_right_tri_low.hpp +include/stan/math/fwd/fun/modified_bessel_first_kind.hpp +include/stan/math/fwd/fun/modified_bessel_second_kind.hpp +include/stan/math/fwd/fun/multiply.hpp +include/stan/math/fwd/fun/multiply_log.hpp +include/stan/math/fwd/fun/multiply_lower_tri_self_transpose.hpp +include/stan/math/fwd/fun/norm.hpp +include/stan/math/fwd/fun/owens_t.hpp +include/stan/math/fwd/fun/polar.hpp +include/stan/math/fwd/fun/pow.hpp +include/stan/math/fwd/fun/primitive_value.hpp +include/stan/math/fwd/fun/proj.hpp +include/stan/math/fwd/fun/quad_form.hpp +include/stan/math/fwd/fun/quad_form_sym.hpp +include/stan/math/fwd/fun/read_fvar.hpp +include/stan/math/fwd/fun/rising_factorial.hpp +include/stan/math/fwd/fun/round.hpp +include/stan/math/fwd/fun/sin.hpp +include/stan/math/fwd/fun/sinh.hpp +include/stan/math/fwd/fun/softmax.hpp +include/stan/math/fwd/fun/sqrt.hpp +include/stan/math/fwd/fun/square.hpp +include/stan/math/fwd/fun/sum.hpp +include/stan/math/fwd/fun/tan.hpp +include/stan/math/fwd/fun/tanh.hpp +include/stan/math/fwd/fun/tcrossprod.hpp +include/stan/math/fwd/fun/tgamma.hpp +include/stan/math/fwd/fun/to_fvar.hpp +include/stan/math/fwd/fun/trace_quad_form.hpp +include/stan/math/fwd/fun/trigamma.hpp +include/stan/math/fwd/fun/trunc.hpp +include/stan/math/fwd/fun/typedefs.hpp +include/stan/math/fwd/fun/unit_vector_constrain.hpp +include/stan/math/fwd/fun/value_of.hpp +include/stan/math/fwd/fun/value_of_rec.hpp +include/stan/math/fwd/functor.hpp +include/stan/math/fwd/functor/apply_scalar_unary.hpp +include/stan/math/fwd/functor/gradient.hpp +include/stan/math/fwd/functor/hessian.hpp +include/stan/math/fwd/functor/jacobian.hpp +include/stan/math/fwd/functor/operands_and_partials.hpp +include/stan/math/fwd/functor/reduce_sum.hpp +include/stan/math/fwd/meta.hpp +include/stan/math/fwd/meta/is_fvar.hpp +include/stan/math/fwd/meta/partials_type.hpp +include/stan/math/memory/stack_alloc.hpp +include/stan/math/mix.hpp +include/stan/math/mix/fun.hpp +include/stan/math/mix/fun/typedefs.hpp +include/stan/math/mix/functor.hpp +include/stan/math/mix/functor/derivative.hpp +include/stan/math/mix/functor/finite_diff_grad_hessian.hpp +include/stan/math/mix/functor/finite_diff_grad_hessian_auto.hpp +include/stan/math/mix/functor/grad_hessian.hpp +include/stan/math/mix/functor/grad_tr_mat_times_hessian.hpp +include/stan/math/mix/functor/gradient_dot_vector.hpp +include/stan/math/mix/functor/hessian.hpp +include/stan/math/mix/functor/hessian_times_vector.hpp +include/stan/math/mix/functor/partial_derivative.hpp +include/stan/math/mix/meta.hpp +include/stan/math/opencl/buffer_types.hpp +include/stan/math/opencl/cholesky_decompose.hpp +include/stan/math/opencl/copy.hpp +include/stan/math/opencl/err.hpp +include/stan/math/opencl/err/check_mat_size_one.hpp +include/stan/math/opencl/err/check_opencl.hpp +include/stan/math/opencl/err/check_symmetric.hpp +include/stan/math/opencl/err/check_triangular.hpp +include/stan/math/opencl/is_constant.hpp +include/stan/math/opencl/kernel_cl.hpp +include/stan/math/opencl/kernel_generator.hpp +include/stan/math/opencl/kernel_generator/append.hpp +include/stan/math/opencl/kernel_generator/as_column_vector_or_scalar.hpp +include/stan/math/opencl/kernel_generator/as_operation_cl.hpp +include/stan/math/opencl/kernel_generator/binary_operation.hpp +include/stan/math/opencl/kernel_generator/block_zero_based.hpp +include/stan/math/opencl/kernel_generator/broadcast.hpp +include/stan/math/opencl/kernel_generator/calc_if.hpp +include/stan/math/opencl/kernel_generator/cast.hpp +include/stan/math/opencl/kernel_generator/check_cl.hpp +include/stan/math/opencl/kernel_generator/colwise_reduction.hpp +include/stan/math/opencl/kernel_generator/common_return_scalar.hpp +include/stan/math/opencl/kernel_generator/compound_assignments.hpp +include/stan/math/opencl/kernel_generator/constant.hpp +include/stan/math/opencl/kernel_generator/diagonal.hpp +include/stan/math/opencl/kernel_generator/elt_function_cl.hpp +include/stan/math/opencl/kernel_generator/evaluate_into.hpp +include/stan/math/opencl/kernel_generator/get_kernel_source_for_evaluating_into.hpp +include/stan/math/opencl/kernel_generator/holder_cl.hpp +include/stan/math/opencl/kernel_generator/index.hpp +include/stan/math/opencl/kernel_generator/indexing.hpp +include/stan/math/opencl/kernel_generator/load.hpp +include/stan/math/opencl/kernel_generator/matrix_cl_conversion.hpp +include/stan/math/opencl/kernel_generator/matrix_vector_multiply.hpp +include/stan/math/opencl/kernel_generator/multi_result_kernel.hpp +include/stan/math/opencl/kernel_generator/name_generator.hpp +include/stan/math/opencl/kernel_generator/opencl_code.hpp +include/stan/math/opencl/kernel_generator/operation_cl.hpp +include/stan/math/opencl/kernel_generator/operation_cl_lhs.hpp +include/stan/math/opencl/kernel_generator/optional_broadcast.hpp +include/stan/math/opencl/kernel_generator/reduction_2d.hpp +include/stan/math/opencl/kernel_generator/rowwise_reduction.hpp +include/stan/math/opencl/kernel_generator/scalar.hpp +include/stan/math/opencl/kernel_generator/select.hpp +include/stan/math/opencl/kernel_generator/transpose.hpp +include/stan/math/opencl/kernel_generator/type_str.hpp +include/stan/math/opencl/kernel_generator/unary_operation_cl.hpp +include/stan/math/opencl/kernels/add.hpp +include/stan/math/opencl/kernels/batch_identity.hpp +include/stan/math/opencl/kernels/categorical_logit_glm_lpmf.hpp +include/stan/math/opencl/kernels/check_symmetric.hpp +include/stan/math/opencl/kernels/cholesky_decompose.hpp +include/stan/math/opencl/kernels/device_functions/Phi.hpp +include/stan/math/opencl/kernels/device_functions/Phi_approx.hpp +include/stan/math/opencl/kernels/device_functions/beta.hpp +include/stan/math/opencl/kernels/device_functions/binomial_coefficient_log.hpp +include/stan/math/opencl/kernels/device_functions/digamma.hpp +include/stan/math/opencl/kernels/device_functions/inv_Phi.hpp +include/stan/math/opencl/kernels/device_functions/inv_logit.hpp +include/stan/math/opencl/kernels/device_functions/inv_square.hpp +include/stan/math/opencl/kernels/device_functions/lbeta.hpp +include/stan/math/opencl/kernels/device_functions/lgamma_stirling.hpp +include/stan/math/opencl/kernels/device_functions/lgamma_stirling_diff.hpp +include/stan/math/opencl/kernels/device_functions/log1m.hpp +include/stan/math/opencl/kernels/device_functions/log1m_exp.hpp +include/stan/math/opencl/kernels/device_functions/log1m_inv_logit.hpp +include/stan/math/opencl/kernels/device_functions/log1p_exp.hpp +include/stan/math/opencl/kernels/device_functions/log_diff_exp.hpp +include/stan/math/opencl/kernels/device_functions/log_inv_logit.hpp +include/stan/math/opencl/kernels/device_functions/log_inv_logit_diff.hpp +include/stan/math/opencl/kernels/device_functions/logit.hpp +include/stan/math/opencl/kernels/device_functions/multiply_log.hpp +include/stan/math/opencl/kernels/device_functions/trigamma.hpp +include/stan/math/opencl/kernels/diag_inv.hpp +include/stan/math/opencl/kernels/divide_columns.hpp +include/stan/math/opencl/kernels/fill_strict_tri.hpp +include/stan/math/opencl/kernels/gp_exp_quad_cov.hpp +include/stan/math/opencl/kernels/gp_exponential_cov.hpp +include/stan/math/opencl/kernels/gp_matern32_cov.hpp +include/stan/math/opencl/kernels/gp_matern52_cov.hpp +include/stan/math/opencl/kernels/helpers.hpp +include/stan/math/opencl/kernels/inv_lower_tri_multiply.hpp +include/stan/math/opencl/kernels/matrix_multiply.hpp +include/stan/math/opencl/kernels/multiply_transpose.hpp +include/stan/math/opencl/kernels/neg_binomial_2_log_glm_lpmf.hpp +include/stan/math/opencl/kernels/neg_rect_lower_tri_multiply.hpp +include/stan/math/opencl/kernels/ordered_logistic_glm_lpmf.hpp +include/stan/math/opencl/kernels/ordered_logistic_lpmf.hpp +include/stan/math/opencl/kernels/pack.hpp +include/stan/math/opencl/kernels/rep_matrix.hpp +include/stan/math/opencl/kernels/unpack.hpp +include/stan/math/opencl/matrix_cl.hpp +include/stan/math/opencl/matrix_cl_view.hpp +include/stan/math/opencl/multiply_transpose.hpp +include/stan/math/opencl/opencl_context.hpp +include/stan/math/opencl/pinned_matrix.hpp +include/stan/math/opencl/plain_type.hpp +include/stan/math/opencl/prim.hpp +include/stan/math/opencl/prim/add_diag.hpp +include/stan/math/opencl/prim/append_array.hpp +include/stan/math/opencl/prim/bernoulli_cdf.hpp +include/stan/math/opencl/prim/bernoulli_lccdf.hpp +include/stan/math/opencl/prim/bernoulli_lcdf.hpp +include/stan/math/opencl/prim/bernoulli_logit_glm_lpmf.hpp +include/stan/math/opencl/prim/bernoulli_logit_lpmf.hpp +include/stan/math/opencl/prim/bernoulli_lpmf.hpp +include/stan/math/opencl/prim/beta_binomial_lpmf.hpp +include/stan/math/opencl/prim/beta_lpdf.hpp +include/stan/math/opencl/prim/beta_proportion_lpdf.hpp +include/stan/math/opencl/prim/binomial_logit_lpmf.hpp +include/stan/math/opencl/prim/binomial_lpmf.hpp +include/stan/math/opencl/prim/block.hpp +include/stan/math/opencl/prim/categorical_logit_glm_lpmf.hpp +include/stan/math/opencl/prim/cauchy_cdf.hpp +include/stan/math/opencl/prim/cauchy_lccdf.hpp +include/stan/math/opencl/prim/cauchy_lcdf.hpp +include/stan/math/opencl/prim/cauchy_lpdf.hpp +include/stan/math/opencl/prim/chi_square_lpdf.hpp +include/stan/math/opencl/prim/cholesky_decompose.hpp +include/stan/math/opencl/prim/col.hpp +include/stan/math/opencl/prim/cols.hpp +include/stan/math/opencl/prim/columns_dot_product.hpp +include/stan/math/opencl/prim/columns_dot_self.hpp +include/stan/math/opencl/prim/crossprod.hpp +include/stan/math/opencl/prim/diag_matrix.hpp +include/stan/math/opencl/prim/diag_post_multiply.hpp +include/stan/math/opencl/prim/diag_pre_multiply.hpp +include/stan/math/opencl/prim/dims.hpp +include/stan/math/opencl/prim/dirichlet_lpdf.hpp +include/stan/math/opencl/prim/distance.hpp +include/stan/math/opencl/prim/divide.hpp +include/stan/math/opencl/prim/divide_columns.hpp +include/stan/math/opencl/prim/dot_product.hpp +include/stan/math/opencl/prim/dot_self.hpp +include/stan/math/opencl/prim/double_exponential_cdf.hpp +include/stan/math/opencl/prim/double_exponential_lccdf.hpp +include/stan/math/opencl/prim/double_exponential_lcdf.hpp +include/stan/math/opencl/prim/double_exponential_lpdf.hpp +include/stan/math/opencl/prim/exp_mod_normal_cdf.hpp +include/stan/math/opencl/prim/exp_mod_normal_lccdf.hpp +include/stan/math/opencl/prim/exp_mod_normal_lcdf.hpp +include/stan/math/opencl/prim/exp_mod_normal_lpdf.hpp +include/stan/math/opencl/prim/exponential_cdf.hpp +include/stan/math/opencl/prim/exponential_lccdf.hpp +include/stan/math/opencl/prim/exponential_lcdf.hpp +include/stan/math/opencl/prim/exponential_lpdf.hpp +include/stan/math/opencl/prim/frechet_cdf.hpp +include/stan/math/opencl/prim/frechet_lccdf.hpp +include/stan/math/opencl/prim/frechet_lcdf.hpp +include/stan/math/opencl/prim/frechet_lpdf.hpp +include/stan/math/opencl/prim/gamma_lpdf.hpp +include/stan/math/opencl/prim/gp_dot_prod_cov.hpp +include/stan/math/opencl/prim/gp_exp_quad_cov.hpp +include/stan/math/opencl/prim/gp_exponential_cov.hpp +include/stan/math/opencl/prim/gp_matern32_cov.hpp +include/stan/math/opencl/prim/gp_matern52_cov.hpp +include/stan/math/opencl/prim/gumbel_cdf.hpp +include/stan/math/opencl/prim/gumbel_lccdf.hpp +include/stan/math/opencl/prim/gumbel_lcdf.hpp +include/stan/math/opencl/prim/gumbel_lpdf.hpp +include/stan/math/opencl/prim/head.hpp +include/stan/math/opencl/prim/identity_matrix.hpp +include/stan/math/opencl/prim/inv.hpp +include/stan/math/opencl/prim/inv_chi_square_lpdf.hpp +include/stan/math/opencl/prim/inv_cloglog.hpp +include/stan/math/opencl/prim/inv_gamma_lpdf.hpp +include/stan/math/opencl/prim/inv_sqrt.hpp +include/stan/math/opencl/prim/lb_constrain.hpp +include/stan/math/opencl/prim/log_mix.hpp +include/stan/math/opencl/prim/log_softmax.hpp +include/stan/math/opencl/prim/log_sum_exp.hpp +include/stan/math/opencl/prim/logistic_cdf.hpp +include/stan/math/opencl/prim/logistic_lccdf.hpp +include/stan/math/opencl/prim/logistic_lcdf.hpp +include/stan/math/opencl/prim/logistic_lpdf.hpp +include/stan/math/opencl/prim/lognormal_cdf.hpp +include/stan/math/opencl/prim/lognormal_lccdf.hpp +include/stan/math/opencl/prim/lognormal_lcdf.hpp +include/stan/math/opencl/prim/lognormal_lpdf.hpp +include/stan/math/opencl/prim/lub_constrain.hpp +include/stan/math/opencl/prim/matrix_power.hpp +include/stan/math/opencl/prim/mdivide_left_tri_low.hpp +include/stan/math/opencl/prim/mdivide_right_tri_low.hpp +include/stan/math/opencl/prim/mean.hpp +include/stan/math/opencl/prim/multi_normal_cholesky_lpdf.hpp +include/stan/math/opencl/prim/multiply.hpp +include/stan/math/opencl/prim/multiply_lower_tri_self_transpose.hpp +include/stan/math/opencl/prim/neg_binomial_2_log_glm_lpmf.hpp +include/stan/math/opencl/prim/neg_binomial_2_log_lpmf.hpp +include/stan/math/opencl/prim/neg_binomial_2_lpmf.hpp +include/stan/math/opencl/prim/neg_binomial_lpmf.hpp +include/stan/math/opencl/prim/normal_cdf.hpp +include/stan/math/opencl/prim/normal_id_glm_lpdf.hpp +include/stan/math/opencl/prim/normal_lccdf.hpp +include/stan/math/opencl/prim/normal_lcdf.hpp +include/stan/math/opencl/prim/normal_lpdf.hpp +include/stan/math/opencl/prim/num_elements.hpp +include/stan/math/opencl/prim/offset_multiplier_constrain.hpp +include/stan/math/opencl/prim/ordered_logistic_glm_lpmf.hpp +include/stan/math/opencl/prim/ordered_logistic_lpmf.hpp +include/stan/math/opencl/prim/pareto_cdf.hpp +include/stan/math/opencl/prim/pareto_lccdf.hpp +include/stan/math/opencl/prim/pareto_lcdf.hpp +include/stan/math/opencl/prim/pareto_lpdf.hpp +include/stan/math/opencl/prim/pareto_type_2_cdf.hpp +include/stan/math/opencl/prim/pareto_type_2_lccdf.hpp +include/stan/math/opencl/prim/pareto_type_2_lcdf.hpp +include/stan/math/opencl/prim/pareto_type_2_lpdf.hpp +include/stan/math/opencl/prim/poisson_log_glm_lpmf.hpp +include/stan/math/opencl/prim/poisson_log_lpmf.hpp +include/stan/math/opencl/prim/poisson_lpmf.hpp +include/stan/math/opencl/prim/prod.hpp +include/stan/math/opencl/prim/rank.hpp +include/stan/math/opencl/prim/rayleigh_cdf.hpp +include/stan/math/opencl/prim/rayleigh_lccdf.hpp +include/stan/math/opencl/prim/rayleigh_lcdf.hpp +include/stan/math/opencl/prim/rayleigh_lpdf.hpp +include/stan/math/opencl/prim/rep_array.hpp +include/stan/math/opencl/prim/rep_matrix.hpp +include/stan/math/opencl/prim/rep_row_vector.hpp +include/stan/math/opencl/prim/rep_vector.hpp +include/stan/math/opencl/prim/reverse.hpp +include/stan/math/opencl/prim/row.hpp +include/stan/math/opencl/prim/rows.hpp +include/stan/math/opencl/prim/rows_dot_product.hpp +include/stan/math/opencl/prim/rows_dot_self.hpp +include/stan/math/opencl/prim/scaled_inv_chi_square_lpdf.hpp +include/stan/math/opencl/prim/sd.hpp +include/stan/math/opencl/prim/segment.hpp +include/stan/math/opencl/prim/sign.hpp +include/stan/math/opencl/prim/size.hpp +include/stan/math/opencl/prim/skew_double_exponential_cdf.hpp +include/stan/math/opencl/prim/skew_double_exponential_lccdf.hpp +include/stan/math/opencl/prim/skew_double_exponential_lcdf.hpp +include/stan/math/opencl/prim/skew_double_exponential_lpdf.hpp +include/stan/math/opencl/prim/skew_normal_lpdf.hpp +include/stan/math/opencl/prim/softmax.hpp +include/stan/math/opencl/prim/squared_distance.hpp +include/stan/math/opencl/prim/std_normal_cdf.hpp +include/stan/math/opencl/prim/std_normal_lccdf.hpp +include/stan/math/opencl/prim/std_normal_lcdf.hpp +include/stan/math/opencl/prim/std_normal_lpdf.hpp +include/stan/math/opencl/prim/student_t_lpdf.hpp +include/stan/math/opencl/prim/sub_col.hpp +include/stan/math/opencl/prim/sub_row.hpp +include/stan/math/opencl/prim/sum.hpp +include/stan/math/opencl/prim/symmetrize_from_lower_tri.hpp +include/stan/math/opencl/prim/symmetrize_from_upper_tri.hpp +include/stan/math/opencl/prim/tail.hpp +include/stan/math/opencl/prim/tcrossprod.hpp +include/stan/math/opencl/prim/to_array_1d.hpp +include/stan/math/opencl/prim/to_array_2d.hpp +include/stan/math/opencl/prim/to_matrix.hpp +include/stan/math/opencl/prim/to_row_vector.hpp +include/stan/math/opencl/prim/to_vector.hpp +include/stan/math/opencl/prim/trace.hpp +include/stan/math/opencl/prim/ub_constrain.hpp +include/stan/math/opencl/prim/uniform_cdf.hpp +include/stan/math/opencl/prim/uniform_lccdf.hpp +include/stan/math/opencl/prim/uniform_lcdf.hpp +include/stan/math/opencl/prim/uniform_lpdf.hpp +include/stan/math/opencl/prim/unit_vector_constrain.hpp +include/stan/math/opencl/prim/variance.hpp +include/stan/math/opencl/prim/weibull_cdf.hpp +include/stan/math/opencl/prim/weibull_lccdf.hpp +include/stan/math/opencl/prim/weibull_lcdf.hpp +include/stan/math/opencl/prim/weibull_lpdf.hpp +include/stan/math/opencl/ref_type.hpp +include/stan/math/opencl/ref_type_for_opencl.hpp +include/stan/math/opencl/rev.hpp +include/stan/math/opencl/rev/Phi.hpp +include/stan/math/opencl/rev/Phi_approx.hpp +include/stan/math/opencl/rev/acos.hpp +include/stan/math/opencl/rev/acosh.hpp +include/stan/math/opencl/rev/add.hpp +include/stan/math/opencl/rev/add_diag.hpp +include/stan/math/opencl/rev/adjoint_results.hpp +include/stan/math/opencl/rev/append_col.hpp +include/stan/math/opencl/rev/append_row.hpp +include/stan/math/opencl/rev/arena_matrix_cl.hpp +include/stan/math/opencl/rev/arena_type.hpp +include/stan/math/opencl/rev/as_column_vector_or_scalar.hpp +include/stan/math/opencl/rev/asin.hpp +include/stan/math/opencl/rev/asinh.hpp +include/stan/math/opencl/rev/atan.hpp +include/stan/math/opencl/rev/atanh.hpp +include/stan/math/opencl/rev/beta.hpp +include/stan/math/opencl/rev/block.hpp +include/stan/math/opencl/rev/cbrt.hpp +include/stan/math/opencl/rev/ceil.hpp +include/stan/math/opencl/rev/cholesky_decompose.hpp +include/stan/math/opencl/rev/columns_dot_product.hpp +include/stan/math/opencl/rev/columns_dot_self.hpp +include/stan/math/opencl/rev/copy.hpp +include/stan/math/opencl/rev/cos.hpp +include/stan/math/opencl/rev/cosh.hpp +include/stan/math/opencl/rev/crossprod.hpp +include/stan/math/opencl/rev/diag_matrix.hpp +include/stan/math/opencl/rev/diag_post_multiply.hpp +include/stan/math/opencl/rev/diag_pre_multiply.hpp +include/stan/math/opencl/rev/diagonal.hpp +include/stan/math/opencl/rev/digamma.hpp +include/stan/math/opencl/rev/divide.hpp +include/stan/math/opencl/rev/dot_product.hpp +include/stan/math/opencl/rev/dot_self.hpp +include/stan/math/opencl/rev/elt_divide.hpp +include/stan/math/opencl/rev/elt_multiply.hpp +include/stan/math/opencl/rev/erf.hpp +include/stan/math/opencl/rev/erfc.hpp +include/stan/math/opencl/rev/exp.hpp +include/stan/math/opencl/rev/exp2.hpp +include/stan/math/opencl/rev/expm1.hpp +include/stan/math/opencl/rev/fabs.hpp +include/stan/math/opencl/rev/fdim.hpp +include/stan/math/opencl/rev/floor.hpp +include/stan/math/opencl/rev/fmax.hpp +include/stan/math/opencl/rev/fmin.hpp +include/stan/math/opencl/rev/fmod.hpp +include/stan/math/opencl/rev/hypot.hpp +include/stan/math/opencl/rev/inv.hpp +include/stan/math/opencl/rev/inv_Phi.hpp +include/stan/math/opencl/rev/inv_cloglog.hpp +include/stan/math/opencl/rev/inv_logit.hpp +include/stan/math/opencl/rev/inv_sqrt.hpp +include/stan/math/opencl/rev/inv_square.hpp +include/stan/math/opencl/rev/lb_constrain.hpp +include/stan/math/opencl/rev/lbeta.hpp +include/stan/math/opencl/rev/ldexp.hpp +include/stan/math/opencl/rev/lgamma.hpp +include/stan/math/opencl/rev/log.hpp +include/stan/math/opencl/rev/log10.hpp +include/stan/math/opencl/rev/log1m.hpp +include/stan/math/opencl/rev/log1m_exp.hpp +include/stan/math/opencl/rev/log1m_inv_logit.hpp +include/stan/math/opencl/rev/log1p.hpp +include/stan/math/opencl/rev/log1p_exp.hpp +include/stan/math/opencl/rev/log2.hpp +include/stan/math/opencl/rev/log_diff_exp.hpp +include/stan/math/opencl/rev/log_inv_logit.hpp +include/stan/math/opencl/rev/log_inv_logit_diff.hpp +include/stan/math/opencl/rev/log_softmax.hpp +include/stan/math/opencl/rev/log_sum_exp.hpp +include/stan/math/opencl/rev/logit.hpp +include/stan/math/opencl/rev/lub_constrain.hpp +include/stan/math/opencl/rev/matrix_power.hpp +include/stan/math/opencl/rev/mdivide_left_tri_low.hpp +include/stan/math/opencl/rev/mdivide_right_tri_low.hpp +include/stan/math/opencl/rev/multiply.hpp +include/stan/math/opencl/rev/multiply_log.hpp +include/stan/math/opencl/rev/multiply_lower_tri_self_transpose.hpp +include/stan/math/opencl/rev/offset_multiplier_constrain.hpp +include/stan/math/opencl/rev/operands_and_partials.hpp +include/stan/math/opencl/rev/operator_unary_minus.hpp +include/stan/math/opencl/rev/operator_unary_plus.hpp +include/stan/math/opencl/rev/pow.hpp +include/stan/math/opencl/rev/prod.hpp +include/stan/math/opencl/rev/rep_matrix.hpp +include/stan/math/opencl/rev/reverse.hpp +include/stan/math/opencl/rev/round.hpp +include/stan/math/opencl/rev/rows_dot_product.hpp +include/stan/math/opencl/rev/rows_dot_self.hpp +include/stan/math/opencl/rev/sd.hpp +include/stan/math/opencl/rev/sin.hpp +include/stan/math/opencl/rev/sinh.hpp +include/stan/math/opencl/rev/softmax.hpp +include/stan/math/opencl/rev/sqrt.hpp +include/stan/math/opencl/rev/square.hpp +include/stan/math/opencl/rev/squared_distance.hpp +include/stan/math/opencl/rev/subtract.hpp +include/stan/math/opencl/rev/sum.hpp +include/stan/math/opencl/rev/symmetrize_from_lower_tri.hpp +include/stan/math/opencl/rev/symmetrize_from_upper_tri.hpp +include/stan/math/opencl/rev/tan.hpp +include/stan/math/opencl/rev/tanh.hpp +include/stan/math/opencl/rev/tcrossprod.hpp +include/stan/math/opencl/rev/tgamma.hpp +include/stan/math/opencl/rev/to_arena.hpp +include/stan/math/opencl/rev/to_matrix.hpp +include/stan/math/opencl/rev/trace.hpp +include/stan/math/opencl/rev/transpose.hpp +include/stan/math/opencl/rev/trunc.hpp +include/stan/math/opencl/rev/ub_constrain.hpp +include/stan/math/opencl/rev/unit_vector_constrain.hpp +include/stan/math/opencl/rev/vari.hpp +include/stan/math/opencl/rev/variance.hpp +include/stan/math/opencl/scalar_type.hpp +include/stan/math/opencl/stringify.hpp +include/stan/math/opencl/to_ref_for_opencl.hpp +include/stan/math/opencl/tri_inverse.hpp +include/stan/math/opencl/value_type.hpp +include/stan/math/opencl/zeros_strict_tri.hpp +include/stan/math/prim.hpp +include/stan/math/prim/core.hpp +include/stan/math/prim/core/complex_base.hpp +include/stan/math/prim/core/init_threadpool_tbb.hpp +include/stan/math/prim/core/operator_addition.hpp +include/stan/math/prim/core/operator_division.hpp +include/stan/math/prim/core/operator_equal_equal.hpp +include/stan/math/prim/core/operator_minus.hpp +include/stan/math/prim/core/operator_multiplication.hpp +include/stan/math/prim/core/operator_not_equal.hpp +include/stan/math/prim/core/operator_plus.hpp +include/stan/math/prim/core/operator_subtraction.hpp +include/stan/math/prim/eigen_plugins.h +include/stan/math/prim/err.hpp +include/stan/math/prim/err/check_2F1_converges.hpp +include/stan/math/prim/err/check_3F2_converges.hpp +include/stan/math/prim/err/check_bounded.hpp +include/stan/math/prim/err/check_cholesky_factor.hpp +include/stan/math/prim/err/check_cholesky_factor_corr.hpp +include/stan/math/prim/err/check_column_index.hpp +include/stan/math/prim/err/check_consistent_size.hpp +include/stan/math/prim/err/check_consistent_sizes.hpp +include/stan/math/prim/err/check_consistent_sizes_mvt.hpp +include/stan/math/prim/err/check_corr_matrix.hpp +include/stan/math/prim/err/check_cov_matrix.hpp +include/stan/math/prim/err/check_finite.hpp +include/stan/math/prim/err/check_flag_sundials.hpp +include/stan/math/prim/err/check_greater.hpp +include/stan/math/prim/err/check_greater_or_equal.hpp +include/stan/math/prim/err/check_ldlt_factor.hpp +include/stan/math/prim/err/check_less.hpp +include/stan/math/prim/err/check_less_or_equal.hpp +include/stan/math/prim/err/check_lower_triangular.hpp +include/stan/math/prim/err/check_matching_dims.hpp +include/stan/math/prim/err/check_matching_sizes.hpp +include/stan/math/prim/err/check_multiplicable.hpp +include/stan/math/prim/err/check_nonnegative.hpp +include/stan/math/prim/err/check_nonzero_size.hpp +include/stan/math/prim/err/check_not_nan.hpp +include/stan/math/prim/err/check_ordered.hpp +include/stan/math/prim/err/check_pos_definite.hpp +include/stan/math/prim/err/check_pos_semidefinite.hpp +include/stan/math/prim/err/check_positive.hpp +include/stan/math/prim/err/check_positive_finite.hpp +include/stan/math/prim/err/check_positive_ordered.hpp +include/stan/math/prim/err/check_range.hpp +include/stan/math/prim/err/check_row_index.hpp +include/stan/math/prim/err/check_simplex.hpp +include/stan/math/prim/err/check_size_match.hpp +include/stan/math/prim/err/check_sorted.hpp +include/stan/math/prim/err/check_square.hpp +include/stan/math/prim/err/check_std_vector_index.hpp +include/stan/math/prim/err/check_symmetric.hpp +include/stan/math/prim/err/check_unit_vector.hpp +include/stan/math/prim/err/check_vector.hpp +include/stan/math/prim/err/check_vector_index.hpp +include/stan/math/prim/err/constraint_tolerance.hpp +include/stan/math/prim/err/domain_error.hpp +include/stan/math/prim/err/domain_error_vec.hpp +include/stan/math/prim/err/elementwise_check.hpp +include/stan/math/prim/err/hmm_check.hpp +include/stan/math/prim/err/invalid_argument.hpp +include/stan/math/prim/err/invalid_argument_vec.hpp +include/stan/math/prim/err/is_cholesky_factor.hpp +include/stan/math/prim/err/is_cholesky_factor_corr.hpp +include/stan/math/prim/err/is_column_index.hpp +include/stan/math/prim/err/is_corr_matrix.hpp +include/stan/math/prim/err/is_ldlt_factor.hpp +include/stan/math/prim/err/is_less_or_equal.hpp +include/stan/math/prim/err/is_lower_triangular.hpp +include/stan/math/prim/err/is_mat_finite.hpp +include/stan/math/prim/err/is_matching_dims.hpp +include/stan/math/prim/err/is_matching_size.hpp +include/stan/math/prim/err/is_nonzero_size.hpp +include/stan/math/prim/err/is_not_nan.hpp +include/stan/math/prim/err/is_ordered.hpp +include/stan/math/prim/err/is_pos_definite.hpp +include/stan/math/prim/err/is_positive.hpp +include/stan/math/prim/err/is_scal_finite.hpp +include/stan/math/prim/err/is_size_match.hpp +include/stan/math/prim/err/is_square.hpp +include/stan/math/prim/err/is_symmetric.hpp +include/stan/math/prim/err/is_unit_vector.hpp +include/stan/math/prim/err/out_of_range.hpp +include/stan/math/prim/err/system_error.hpp +include/stan/math/prim/err/throw_domain_error.hpp +include/stan/math/prim/err/throw_domain_error_vec.hpp +include/stan/math/prim/err/validate_non_negative_index.hpp +include/stan/math/prim/err/validate_positive_index.hpp +include/stan/math/prim/err/validate_unit_vector_index.hpp +include/stan/math/prim/fun.hpp +include/stan/math/prim/fun/Eigen.hpp +include/stan/math/prim/fun/F32.hpp +include/stan/math/prim/fun/LDLT_factor.hpp +include/stan/math/prim/fun/MatrixExponential.h +include/stan/math/prim/fun/Phi.hpp +include/stan/math/prim/fun/Phi_approx.hpp +include/stan/math/prim/fun/abs.hpp +include/stan/math/prim/fun/accumulator.hpp +include/stan/math/prim/fun/acos.hpp +include/stan/math/prim/fun/acosh.hpp +include/stan/math/prim/fun/add.hpp +include/stan/math/prim/fun/add_diag.hpp +include/stan/math/prim/fun/append_array.hpp +include/stan/math/prim/fun/append_col.hpp +include/stan/math/prim/fun/append_row.hpp +include/stan/math/prim/fun/arg.hpp +include/stan/math/prim/fun/array_builder.hpp +include/stan/math/prim/fun/as_array_or_scalar.hpp +include/stan/math/prim/fun/as_bool.hpp +include/stan/math/prim/fun/as_column_vector_or_scalar.hpp +include/stan/math/prim/fun/as_value_array_or_scalar.hpp +include/stan/math/prim/fun/as_value_column_array_or_scalar.hpp +include/stan/math/prim/fun/as_value_column_vector_or_scalar.hpp +include/stan/math/prim/fun/asin.hpp +include/stan/math/prim/fun/asinh.hpp +include/stan/math/prim/fun/assign.hpp +include/stan/math/prim/fun/atan.hpp +include/stan/math/prim/fun/atanh.hpp +include/stan/math/prim/fun/autocorrelation.hpp +include/stan/math/prim/fun/autocovariance.hpp +include/stan/math/prim/fun/bessel_first_kind.hpp +include/stan/math/prim/fun/bessel_second_kind.hpp +include/stan/math/prim/fun/beta.hpp +include/stan/math/prim/fun/binary_log_loss.hpp +include/stan/math/prim/fun/binomial_coefficient_log.hpp +include/stan/math/prim/fun/block.hpp +include/stan/math/prim/fun/boost_policy.hpp +include/stan/math/prim/fun/cbrt.hpp +include/stan/math/prim/fun/ceil.hpp +include/stan/math/prim/fun/chol2inv.hpp +include/stan/math/prim/fun/cholesky_corr_constrain.hpp +include/stan/math/prim/fun/cholesky_corr_free.hpp +include/stan/math/prim/fun/cholesky_decompose.hpp +include/stan/math/prim/fun/cholesky_factor_constrain.hpp +include/stan/math/prim/fun/cholesky_factor_free.hpp +include/stan/math/prim/fun/choose.hpp +include/stan/math/prim/fun/col.hpp +include/stan/math/prim/fun/cols.hpp +include/stan/math/prim/fun/columns_dot_product.hpp +include/stan/math/prim/fun/columns_dot_self.hpp +include/stan/math/prim/fun/conj.hpp +include/stan/math/prim/fun/constants.hpp +include/stan/math/prim/fun/copysign.hpp +include/stan/math/prim/fun/corr_constrain.hpp +include/stan/math/prim/fun/corr_free.hpp +include/stan/math/prim/fun/corr_matrix_constrain.hpp +include/stan/math/prim/fun/corr_matrix_free.hpp +include/stan/math/prim/fun/cos.hpp +include/stan/math/prim/fun/cosh.hpp +include/stan/math/prim/fun/cov_exp_quad.hpp +include/stan/math/prim/fun/cov_matrix_constrain.hpp +include/stan/math/prim/fun/cov_matrix_constrain_lkj.hpp +include/stan/math/prim/fun/cov_matrix_free.hpp +include/stan/math/prim/fun/cov_matrix_free_lkj.hpp +include/stan/math/prim/fun/crossprod.hpp +include/stan/math/prim/fun/csr_extract_u.hpp +include/stan/math/prim/fun/csr_extract_v.hpp +include/stan/math/prim/fun/csr_extract_w.hpp +include/stan/math/prim/fun/csr_matrix_times_vector.hpp +include/stan/math/prim/fun/csr_to_dense_matrix.hpp +include/stan/math/prim/fun/csr_u_to_z.hpp +include/stan/math/prim/fun/cumulative_sum.hpp +include/stan/math/prim/fun/determinant.hpp +include/stan/math/prim/fun/diag_matrix.hpp +include/stan/math/prim/fun/diag_post_multiply.hpp +include/stan/math/prim/fun/diag_pre_multiply.hpp +include/stan/math/prim/fun/diagonal.hpp +include/stan/math/prim/fun/digamma.hpp +include/stan/math/prim/fun/dims.hpp +include/stan/math/prim/fun/distance.hpp +include/stan/math/prim/fun/divide.hpp +include/stan/math/prim/fun/divide_columns.hpp +include/stan/math/prim/fun/dot.hpp +include/stan/math/prim/fun/dot_product.hpp +include/stan/math/prim/fun/dot_self.hpp +include/stan/math/prim/fun/eigen_comparisons.hpp +include/stan/math/prim/fun/eigenvalues.hpp +include/stan/math/prim/fun/eigenvalues_sym.hpp +include/stan/math/prim/fun/eigenvectors.hpp +include/stan/math/prim/fun/eigenvectors_sym.hpp +include/stan/math/prim/fun/elt_divide.hpp +include/stan/math/prim/fun/elt_multiply.hpp +include/stan/math/prim/fun/erf.hpp +include/stan/math/prim/fun/erfc.hpp +include/stan/math/prim/fun/eval.hpp +include/stan/math/prim/fun/exp.hpp +include/stan/math/prim/fun/exp2.hpp +include/stan/math/prim/fun/expm1.hpp +include/stan/math/prim/fun/fabs.hpp +include/stan/math/prim/fun/factor_U.hpp +include/stan/math/prim/fun/factor_cov_matrix.hpp +include/stan/math/prim/fun/falling_factorial.hpp +include/stan/math/prim/fun/fdim.hpp +include/stan/math/prim/fun/fill.hpp +include/stan/math/prim/fun/finite_diff_stepsize.hpp +include/stan/math/prim/fun/floor.hpp +include/stan/math/prim/fun/fma.hpp +include/stan/math/prim/fun/fmax.hpp +include/stan/math/prim/fun/fmin.hpp +include/stan/math/prim/fun/fmod.hpp +include/stan/math/prim/fun/gamma_p.hpp +include/stan/math/prim/fun/gamma_q.hpp +include/stan/math/prim/fun/generalized_inverse.hpp +include/stan/math/prim/fun/get.hpp +include/stan/math/prim/fun/get_base1.hpp +include/stan/math/prim/fun/get_base1_lhs.hpp +include/stan/math/prim/fun/get_lp.hpp +include/stan/math/prim/fun/gp_dot_prod_cov.hpp +include/stan/math/prim/fun/gp_exp_quad_cov.hpp +include/stan/math/prim/fun/gp_exponential_cov.hpp +include/stan/math/prim/fun/gp_matern32_cov.hpp +include/stan/math/prim/fun/gp_matern52_cov.hpp +include/stan/math/prim/fun/gp_periodic_cov.hpp +include/stan/math/prim/fun/grad_2F1.hpp +include/stan/math/prim/fun/grad_F32.hpp +include/stan/math/prim/fun/grad_inc_beta.hpp +include/stan/math/prim/fun/grad_reg_inc_beta.hpp +include/stan/math/prim/fun/grad_reg_inc_gamma.hpp +include/stan/math/prim/fun/grad_reg_lower_inc_gamma.hpp +include/stan/math/prim/fun/head.hpp +include/stan/math/prim/fun/hypot.hpp +include/stan/math/prim/fun/i_times.hpp +include/stan/math/prim/fun/identity_constrain.hpp +include/stan/math/prim/fun/identity_free.hpp +include/stan/math/prim/fun/identity_matrix.hpp +include/stan/math/prim/fun/if_else.hpp +include/stan/math/prim/fun/imag.hpp +include/stan/math/prim/fun/inc_beta.hpp +include/stan/math/prim/fun/inc_beta_dda.hpp +include/stan/math/prim/fun/inc_beta_ddb.hpp +include/stan/math/prim/fun/inc_beta_ddz.hpp +include/stan/math/prim/fun/initialize.hpp +include/stan/math/prim/fun/initialize_fill.hpp +include/stan/math/prim/fun/int_step.hpp +include/stan/math/prim/fun/inv.hpp +include/stan/math/prim/fun/inv_Phi.hpp +include/stan/math/prim/fun/inv_cloglog.hpp +include/stan/math/prim/fun/inv_logit.hpp +include/stan/math/prim/fun/inv_sqrt.hpp +include/stan/math/prim/fun/inv_square.hpp +include/stan/math/prim/fun/inverse.hpp +include/stan/math/prim/fun/inverse_softmax.hpp +include/stan/math/prim/fun/inverse_spd.hpp +include/stan/math/prim/fun/is_any_nan.hpp +include/stan/math/prim/fun/is_inf.hpp +include/stan/math/prim/fun/is_integer.hpp +include/stan/math/prim/fun/is_nan.hpp +include/stan/math/prim/fun/is_nonpositive_integer.hpp +include/stan/math/prim/fun/is_uninitialized.hpp +include/stan/math/prim/fun/isfinite.hpp +include/stan/math/prim/fun/isinf.hpp +include/stan/math/prim/fun/isnan.hpp +include/stan/math/prim/fun/isnormal.hpp +include/stan/math/prim/fun/lambert_w.hpp +include/stan/math/prim/fun/lb_constrain.hpp +include/stan/math/prim/fun/lb_free.hpp +include/stan/math/prim/fun/lbeta.hpp +include/stan/math/prim/fun/ldexp.hpp +include/stan/math/prim/fun/lgamma.hpp +include/stan/math/prim/fun/lgamma_stirling.hpp +include/stan/math/prim/fun/lgamma_stirling_diff.hpp +include/stan/math/prim/fun/linspaced_array.hpp +include/stan/math/prim/fun/linspaced_int_array.hpp +include/stan/math/prim/fun/linspaced_row_vector.hpp +include/stan/math/prim/fun/linspaced_vector.hpp +include/stan/math/prim/fun/lmgamma.hpp +include/stan/math/prim/fun/log.hpp +include/stan/math/prim/fun/log10.hpp +include/stan/math/prim/fun/log1m.hpp +include/stan/math/prim/fun/log1m_exp.hpp +include/stan/math/prim/fun/log1m_inv_logit.hpp +include/stan/math/prim/fun/log1p.hpp +include/stan/math/prim/fun/log1p_exp.hpp +include/stan/math/prim/fun/log2.hpp +include/stan/math/prim/fun/log_determinant.hpp +include/stan/math/prim/fun/log_determinant_ldlt.hpp +include/stan/math/prim/fun/log_determinant_spd.hpp +include/stan/math/prim/fun/log_diff_exp.hpp +include/stan/math/prim/fun/log_falling_factorial.hpp +include/stan/math/prim/fun/log_inv_logit.hpp +include/stan/math/prim/fun/log_inv_logit_diff.hpp +include/stan/math/prim/fun/log_mix.hpp +include/stan/math/prim/fun/log_modified_bessel_first_kind.hpp +include/stan/math/prim/fun/log_rising_factorial.hpp +include/stan/math/prim/fun/log_softmax.hpp +include/stan/math/prim/fun/log_sum_exp.hpp +include/stan/math/prim/fun/logb.hpp +include/stan/math/prim/fun/logical_and.hpp +include/stan/math/prim/fun/logical_eq.hpp +include/stan/math/prim/fun/logical_gt.hpp +include/stan/math/prim/fun/logical_gte.hpp +include/stan/math/prim/fun/logical_lt.hpp +include/stan/math/prim/fun/logical_lte.hpp +include/stan/math/prim/fun/logical_negation.hpp +include/stan/math/prim/fun/logical_neq.hpp +include/stan/math/prim/fun/logical_or.hpp +include/stan/math/prim/fun/logit.hpp +include/stan/math/prim/fun/lub_constrain.hpp +include/stan/math/prim/fun/lub_free.hpp +include/stan/math/prim/fun/make_nu.hpp +include/stan/math/prim/fun/matrix_exp.hpp +include/stan/math/prim/fun/matrix_exp_2x2.hpp +include/stan/math/prim/fun/matrix_exp_action_handler.hpp +include/stan/math/prim/fun/matrix_exp_multiply.hpp +include/stan/math/prim/fun/matrix_exp_pade.hpp +include/stan/math/prim/fun/matrix_power.hpp +include/stan/math/prim/fun/max.hpp +include/stan/math/prim/fun/max_size.hpp +include/stan/math/prim/fun/max_size_mvt.hpp +include/stan/math/prim/fun/mdivide_left.hpp +include/stan/math/prim/fun/mdivide_left_ldlt.hpp +include/stan/math/prim/fun/mdivide_left_spd.hpp +include/stan/math/prim/fun/mdivide_left_tri.hpp +include/stan/math/prim/fun/mdivide_left_tri_low.hpp +include/stan/math/prim/fun/mdivide_right.hpp +include/stan/math/prim/fun/mdivide_right_ldlt.hpp +include/stan/math/prim/fun/mdivide_right_spd.hpp +include/stan/math/prim/fun/mdivide_right_tri.hpp +include/stan/math/prim/fun/mdivide_right_tri_low.hpp +include/stan/math/prim/fun/mean.hpp +include/stan/math/prim/fun/min.hpp +include/stan/math/prim/fun/minus.hpp +include/stan/math/prim/fun/modified_bessel_first_kind.hpp +include/stan/math/prim/fun/modified_bessel_second_kind.hpp +include/stan/math/prim/fun/modulus.hpp +include/stan/math/prim/fun/multiply.hpp +include/stan/math/prim/fun/multiply_log.hpp +include/stan/math/prim/fun/multiply_lower_tri_self_transpose.hpp +include/stan/math/prim/fun/norm.hpp +include/stan/math/prim/fun/num_elements.hpp +include/stan/math/prim/fun/offset_multiplier_constrain.hpp +include/stan/math/prim/fun/offset_multiplier_free.hpp +include/stan/math/prim/fun/one_hot_array.hpp +include/stan/math/prim/fun/one_hot_int_array.hpp +include/stan/math/prim/fun/one_hot_row_vector.hpp +include/stan/math/prim/fun/one_hot_vector.hpp +include/stan/math/prim/fun/ones_array.hpp +include/stan/math/prim/fun/ones_int_array.hpp +include/stan/math/prim/fun/ones_row_vector.hpp +include/stan/math/prim/fun/ones_vector.hpp +include/stan/math/prim/fun/ordered_constrain.hpp +include/stan/math/prim/fun/ordered_free.hpp +include/stan/math/prim/fun/owens_t.hpp +include/stan/math/prim/fun/plus.hpp +include/stan/math/prim/fun/poisson_binomial_log_probs.hpp +include/stan/math/prim/fun/polar.hpp +include/stan/math/prim/fun/positive_constrain.hpp +include/stan/math/prim/fun/positive_free.hpp +include/stan/math/prim/fun/positive_ordered_constrain.hpp +include/stan/math/prim/fun/positive_ordered_free.hpp +include/stan/math/prim/fun/pow.hpp +include/stan/math/prim/fun/primitive_value.hpp +include/stan/math/prim/fun/prob_constrain.hpp +include/stan/math/prim/fun/prob_free.hpp +include/stan/math/prim/fun/prod.hpp +include/stan/math/prim/fun/proj.hpp +include/stan/math/prim/fun/promote_elements.hpp +include/stan/math/prim/fun/promote_scalar.hpp +include/stan/math/prim/fun/pseudo_eigenvalues.hpp +include/stan/math/prim/fun/pseudo_eigenvectors.hpp +include/stan/math/prim/fun/qr_Q.hpp +include/stan/math/prim/fun/qr_R.hpp +include/stan/math/prim/fun/qr_thin_Q.hpp +include/stan/math/prim/fun/qr_thin_R.hpp +include/stan/math/prim/fun/quad_form.hpp +include/stan/math/prim/fun/quad_form_diag.hpp +include/stan/math/prim/fun/quad_form_sym.hpp +include/stan/math/prim/fun/quantile.hpp +include/stan/math/prim/fun/rank.hpp +include/stan/math/prim/fun/read_corr_L.hpp +include/stan/math/prim/fun/read_corr_matrix.hpp +include/stan/math/prim/fun/read_cov_L.hpp +include/stan/math/prim/fun/read_cov_matrix.hpp +include/stan/math/prim/fun/real.hpp +include/stan/math/prim/fun/rep_array.hpp +include/stan/math/prim/fun/rep_matrix.hpp +include/stan/math/prim/fun/rep_row_vector.hpp +include/stan/math/prim/fun/rep_vector.hpp +include/stan/math/prim/fun/resize.hpp +include/stan/math/prim/fun/reverse.hpp +include/stan/math/prim/fun/rising_factorial.hpp +include/stan/math/prim/fun/round.hpp +include/stan/math/prim/fun/row.hpp +include/stan/math/prim/fun/rows.hpp +include/stan/math/prim/fun/rows_dot_product.hpp +include/stan/math/prim/fun/rows_dot_self.hpp +include/stan/math/prim/fun/scalar_seq_view.hpp +include/stan/math/prim/fun/scalbn.hpp +include/stan/math/prim/fun/scale_matrix_exp_multiply.hpp +include/stan/math/prim/fun/scaled_add.hpp +include/stan/math/prim/fun/sd.hpp +include/stan/math/prim/fun/segment.hpp +include/stan/math/prim/fun/sign.hpp +include/stan/math/prim/fun/signbit.hpp +include/stan/math/prim/fun/simplex_constrain.hpp +include/stan/math/prim/fun/simplex_free.hpp +include/stan/math/prim/fun/sin.hpp +include/stan/math/prim/fun/singular_values.hpp +include/stan/math/prim/fun/sinh.hpp +include/stan/math/prim/fun/size.hpp +include/stan/math/prim/fun/size_mvt.hpp +include/stan/math/prim/fun/size_zero.hpp +include/stan/math/prim/fun/softmax.hpp +include/stan/math/prim/fun/sort_asc.hpp +include/stan/math/prim/fun/sort_desc.hpp +include/stan/math/prim/fun/sort_indices.hpp +include/stan/math/prim/fun/sort_indices_asc.hpp +include/stan/math/prim/fun/sort_indices_desc.hpp +include/stan/math/prim/fun/sqrt.hpp +include/stan/math/prim/fun/square.hpp +include/stan/math/prim/fun/squared_distance.hpp +include/stan/math/prim/fun/stan_print.hpp +include/stan/math/prim/fun/step.hpp +include/stan/math/prim/fun/sub_col.hpp +include/stan/math/prim/fun/sub_row.hpp +include/stan/math/prim/fun/subtract.hpp +include/stan/math/prim/fun/sum.hpp +include/stan/math/prim/fun/svd_U.hpp +include/stan/math/prim/fun/svd_V.hpp +include/stan/math/prim/fun/symmetrize_from_lower_tri.hpp +include/stan/math/prim/fun/symmetrize_from_upper_tri.hpp +include/stan/math/prim/fun/tail.hpp +include/stan/math/prim/fun/tan.hpp +include/stan/math/prim/fun/tanh.hpp +include/stan/math/prim/fun/tcrossprod.hpp +include/stan/math/prim/fun/tgamma.hpp +include/stan/math/prim/fun/to_array_1d.hpp +include/stan/math/prim/fun/to_array_2d.hpp +include/stan/math/prim/fun/to_matrix.hpp +include/stan/math/prim/fun/to_ref.hpp +include/stan/math/prim/fun/to_row_vector.hpp +include/stan/math/prim/fun/to_vector.hpp +include/stan/math/prim/fun/trace.hpp +include/stan/math/prim/fun/trace_gen_inv_quad_form_ldlt.hpp +include/stan/math/prim/fun/trace_gen_quad_form.hpp +include/stan/math/prim/fun/trace_inv_quad_form_ldlt.hpp +include/stan/math/prim/fun/trace_quad_form.hpp +include/stan/math/prim/fun/transpose.hpp +include/stan/math/prim/fun/trigamma.hpp +include/stan/math/prim/fun/trunc.hpp +include/stan/math/prim/fun/typedefs.hpp +include/stan/math/prim/fun/ub_constrain.hpp +include/stan/math/prim/fun/ub_free.hpp +include/stan/math/prim/fun/uniform_simplex.hpp +include/stan/math/prim/fun/unit_vector_constrain.hpp +include/stan/math/prim/fun/unit_vector_free.hpp +include/stan/math/prim/fun/unitspaced_array.hpp +include/stan/math/prim/fun/value_of.hpp +include/stan/math/prim/fun/value_of_rec.hpp +include/stan/math/prim/fun/variance.hpp +include/stan/math/prim/fun/vec_concat.hpp +include/stan/math/prim/fun/vector_seq_view.hpp +include/stan/math/prim/fun/welford_covar_estimator.hpp +include/stan/math/prim/fun/welford_var_estimator.hpp +include/stan/math/prim/fun/zeros_array.hpp +include/stan/math/prim/fun/zeros_int_array.hpp +include/stan/math/prim/fun/zeros_row_vector.hpp +include/stan/math/prim/fun/zeros_vector.hpp +include/stan/math/prim/functor.hpp +include/stan/math/prim/functor/apply.hpp +include/stan/math/prim/functor/apply_scalar_binary.hpp +include/stan/math/prim/functor/apply_scalar_unary.hpp +include/stan/math/prim/functor/apply_vector_unary.hpp +include/stan/math/prim/functor/broadcast_array.hpp +include/stan/math/prim/functor/coupled_ode_system.hpp +include/stan/math/prim/functor/finite_diff_gradient.hpp +include/stan/math/prim/functor/finite_diff_gradient_auto.hpp +include/stan/math/prim/functor/for_each.hpp +include/stan/math/prim/functor/integrate_1d.hpp +include/stan/math/prim/functor/integrate_1d_adapter.hpp +include/stan/math/prim/functor/integrate_ode_rk45.hpp +include/stan/math/prim/functor/integrate_ode_std_vector_interface_adapter.hpp +include/stan/math/prim/functor/map_rect.hpp +include/stan/math/prim/functor/map_rect_combine.hpp +include/stan/math/prim/functor/map_rect_concurrent.hpp +include/stan/math/prim/functor/map_rect_mpi.hpp +include/stan/math/prim/functor/map_rect_reduce.hpp +include/stan/math/prim/functor/mpi_cluster.hpp +include/stan/math/prim/functor/mpi_cluster_inst.cpp +include/stan/math/prim/functor/mpi_command.hpp +include/stan/math/prim/functor/mpi_distributed_apply.hpp +include/stan/math/prim/functor/mpi_parallel_call.hpp +include/stan/math/prim/functor/ode_ckrk.hpp +include/stan/math/prim/functor/ode_rk45.hpp +include/stan/math/prim/functor/ode_store_sensitivities.hpp +include/stan/math/prim/functor/operands_and_partials.hpp +include/stan/math/prim/functor/reduce_sum.hpp +include/stan/math/prim/functor/reduce_sum_static.hpp +include/stan/math/prim/meta.hpp +include/stan/math/prim/meta/StdVectorBuilder.hpp +include/stan/math/prim/meta/VectorBuilder.hpp +include/stan/math/prim/meta/VectorBuilderHelper.hpp +include/stan/math/prim/meta/ad_promotable.hpp +include/stan/math/prim/meta/append_return_type.hpp +include/stan/math/prim/meta/base_type.hpp +include/stan/math/prim/meta/bool_constant.hpp +include/stan/math/prim/meta/child_type.hpp +include/stan/math/prim/meta/compiler_attributes.hpp +include/stan/math/prim/meta/conjunction.hpp +include/stan/math/prim/meta/contains_fvar.hpp +include/stan/math/prim/meta/contains_std_vector.hpp +include/stan/math/prim/meta/disjunction.hpp +include/stan/math/prim/meta/error_index.hpp +include/stan/math/prim/meta/forward_as.hpp +include/stan/math/prim/meta/holder.hpp +include/stan/math/prim/meta/include_summand.hpp +include/stan/math/prim/meta/index_apply.hpp +include/stan/math/prim/meta/index_type.hpp +include/stan/math/prim/meta/is_arena_matrix.hpp +include/stan/math/prim/meta/is_autodiff.hpp +include/stan/math/prim/meta/is_base_pointer_convertible.hpp +include/stan/math/prim/meta/is_complex.hpp +include/stan/math/prim/meta/is_constant.hpp +include/stan/math/prim/meta/is_container.hpp +include/stan/math/prim/meta/is_dense_dynamic.hpp +include/stan/math/prim/meta/is_detected.hpp +include/stan/math/prim/meta/is_double_or_int.hpp +include/stan/math/prim/meta/is_eigen.hpp +include/stan/math/prim/meta/is_eigen_dense_base.hpp +include/stan/math/prim/meta/is_eigen_dense_dynamic.hpp +include/stan/math/prim/meta/is_eigen_matrix.hpp +include/stan/math/prim/meta/is_eigen_matrix_base.hpp +include/stan/math/prim/meta/is_eigen_sparse_base.hpp +include/stan/math/prim/meta/is_fvar.hpp +include/stan/math/prim/meta/is_kernel_expression.hpp +include/stan/math/prim/meta/is_matrix.hpp +include/stan/math/prim/meta/is_matrix_cl.hpp +include/stan/math/prim/meta/is_plain_type.hpp +include/stan/math/prim/meta/is_rev_matrix.hpp +include/stan/math/prim/meta/is_stan_scalar.hpp +include/stan/math/prim/meta/is_string_convertible.hpp +include/stan/math/prim/meta/is_var.hpp +include/stan/math/prim/meta/is_var_dense_dynamic.hpp +include/stan/math/prim/meta/is_var_eigen.hpp +include/stan/math/prim/meta/is_var_matrix.hpp +include/stan/math/prim/meta/is_var_or_arithmetic.hpp +include/stan/math/prim/meta/is_vari.hpp +include/stan/math/prim/meta/is_vector.hpp +include/stan/math/prim/meta/is_vector_like.hpp +include/stan/math/prim/meta/partials_return_type.hpp +include/stan/math/prim/meta/partials_type.hpp +include/stan/math/prim/meta/plain_type.hpp +include/stan/math/prim/meta/promote_args.hpp +include/stan/math/prim/meta/promote_scalar_type.hpp +include/stan/math/prim/meta/ref_type.hpp +include/stan/math/prim/meta/require_generics.hpp +include/stan/math/prim/meta/require_helpers.hpp +include/stan/math/prim/meta/return_type.hpp +include/stan/math/prim/meta/scalar_type.hpp +include/stan/math/prim/meta/scalar_type_pre.hpp +include/stan/math/prim/meta/seq_view.hpp +include/stan/math/prim/meta/static_select.hpp +include/stan/math/prim/meta/value_type.hpp +include/stan/math/prim/meta/void_t.hpp +include/stan/math/prim/prob.hpp +include/stan/math/prim/prob/bernoulli_ccdf_log.hpp +include/stan/math/prim/prob/bernoulli_cdf.hpp +include/stan/math/prim/prob/bernoulli_cdf_log.hpp +include/stan/math/prim/prob/bernoulli_lccdf.hpp +include/stan/math/prim/prob/bernoulli_lcdf.hpp +include/stan/math/prim/prob/bernoulli_log.hpp +include/stan/math/prim/prob/bernoulli_logit_glm_log.hpp +include/stan/math/prim/prob/bernoulli_logit_glm_lpmf.hpp +include/stan/math/prim/prob/bernoulli_logit_glm_rng.hpp +include/stan/math/prim/prob/bernoulli_logit_log.hpp +include/stan/math/prim/prob/bernoulli_logit_lpmf.hpp +include/stan/math/prim/prob/bernoulli_logit_rng.hpp +include/stan/math/prim/prob/bernoulli_lpmf.hpp +include/stan/math/prim/prob/bernoulli_rng.hpp +include/stan/math/prim/prob/beta_binomial_ccdf_log.hpp +include/stan/math/prim/prob/beta_binomial_cdf.hpp +include/stan/math/prim/prob/beta_binomial_cdf_log.hpp +include/stan/math/prim/prob/beta_binomial_lccdf.hpp +include/stan/math/prim/prob/beta_binomial_lcdf.hpp +include/stan/math/prim/prob/beta_binomial_log.hpp +include/stan/math/prim/prob/beta_binomial_lpmf.hpp +include/stan/math/prim/prob/beta_binomial_rng.hpp +include/stan/math/prim/prob/beta_ccdf_log.hpp +include/stan/math/prim/prob/beta_cdf.hpp +include/stan/math/prim/prob/beta_cdf_log.hpp +include/stan/math/prim/prob/beta_lccdf.hpp +include/stan/math/prim/prob/beta_lcdf.hpp +include/stan/math/prim/prob/beta_log.hpp +include/stan/math/prim/prob/beta_lpdf.hpp +include/stan/math/prim/prob/beta_proportion_ccdf_log.hpp +include/stan/math/prim/prob/beta_proportion_cdf_log.hpp +include/stan/math/prim/prob/beta_proportion_lccdf.hpp +include/stan/math/prim/prob/beta_proportion_lcdf.hpp +include/stan/math/prim/prob/beta_proportion_log.hpp +include/stan/math/prim/prob/beta_proportion_lpdf.hpp +include/stan/math/prim/prob/beta_proportion_rng.hpp +include/stan/math/prim/prob/beta_rng.hpp +include/stan/math/prim/prob/binomial_ccdf_log.hpp +include/stan/math/prim/prob/binomial_cdf.hpp +include/stan/math/prim/prob/binomial_cdf_log.hpp +include/stan/math/prim/prob/binomial_lccdf.hpp +include/stan/math/prim/prob/binomial_lcdf.hpp +include/stan/math/prim/prob/binomial_log.hpp +include/stan/math/prim/prob/binomial_logit_log.hpp +include/stan/math/prim/prob/binomial_logit_lpmf.hpp +include/stan/math/prim/prob/binomial_lpmf.hpp +include/stan/math/prim/prob/binomial_rng.hpp +include/stan/math/prim/prob/categorical_log.hpp +include/stan/math/prim/prob/categorical_logit_glm_lpmf.hpp +include/stan/math/prim/prob/categorical_logit_log.hpp +include/stan/math/prim/prob/categorical_logit_lpmf.hpp +include/stan/math/prim/prob/categorical_logit_rng.hpp +include/stan/math/prim/prob/categorical_lpmf.hpp +include/stan/math/prim/prob/categorical_rng.hpp +include/stan/math/prim/prob/cauchy_ccdf_log.hpp +include/stan/math/prim/prob/cauchy_cdf.hpp +include/stan/math/prim/prob/cauchy_cdf_log.hpp +include/stan/math/prim/prob/cauchy_lccdf.hpp +include/stan/math/prim/prob/cauchy_lcdf.hpp +include/stan/math/prim/prob/cauchy_log.hpp +include/stan/math/prim/prob/cauchy_lpdf.hpp +include/stan/math/prim/prob/cauchy_rng.hpp +include/stan/math/prim/prob/chi_square_ccdf_log.hpp +include/stan/math/prim/prob/chi_square_cdf.hpp +include/stan/math/prim/prob/chi_square_cdf_log.hpp +include/stan/math/prim/prob/chi_square_lccdf.hpp +include/stan/math/prim/prob/chi_square_lcdf.hpp +include/stan/math/prim/prob/chi_square_log.hpp +include/stan/math/prim/prob/chi_square_lpdf.hpp +include/stan/math/prim/prob/chi_square_rng.hpp +include/stan/math/prim/prob/dirichlet_log.hpp +include/stan/math/prim/prob/dirichlet_lpdf.hpp +include/stan/math/prim/prob/dirichlet_lpmf.hpp +include/stan/math/prim/prob/dirichlet_rng.hpp +include/stan/math/prim/prob/discrete_range_ccdf_log.hpp +include/stan/math/prim/prob/discrete_range_cdf.hpp +include/stan/math/prim/prob/discrete_range_cdf_log.hpp +include/stan/math/prim/prob/discrete_range_lccdf.hpp +include/stan/math/prim/prob/discrete_range_lcdf.hpp +include/stan/math/prim/prob/discrete_range_log.hpp +include/stan/math/prim/prob/discrete_range_lpmf.hpp +include/stan/math/prim/prob/discrete_range_rng.hpp +include/stan/math/prim/prob/double_exponential_ccdf_log.hpp +include/stan/math/prim/prob/double_exponential_cdf.hpp +include/stan/math/prim/prob/double_exponential_cdf_log.hpp +include/stan/math/prim/prob/double_exponential_lccdf.hpp +include/stan/math/prim/prob/double_exponential_lcdf.hpp +include/stan/math/prim/prob/double_exponential_log.hpp +include/stan/math/prim/prob/double_exponential_lpdf.hpp +include/stan/math/prim/prob/double_exponential_rng.hpp +include/stan/math/prim/prob/exp_mod_normal_ccdf_log.hpp +include/stan/math/prim/prob/exp_mod_normal_cdf.hpp +include/stan/math/prim/prob/exp_mod_normal_cdf_log.hpp +include/stan/math/prim/prob/exp_mod_normal_lccdf.hpp +include/stan/math/prim/prob/exp_mod_normal_lcdf.hpp +include/stan/math/prim/prob/exp_mod_normal_log.hpp +include/stan/math/prim/prob/exp_mod_normal_lpdf.hpp +include/stan/math/prim/prob/exp_mod_normal_rng.hpp +include/stan/math/prim/prob/exponential_ccdf_log.hpp +include/stan/math/prim/prob/exponential_cdf.hpp +include/stan/math/prim/prob/exponential_cdf_log.hpp +include/stan/math/prim/prob/exponential_lccdf.hpp +include/stan/math/prim/prob/exponential_lcdf.hpp +include/stan/math/prim/prob/exponential_log.hpp +include/stan/math/prim/prob/exponential_lpdf.hpp +include/stan/math/prim/prob/exponential_rng.hpp +include/stan/math/prim/prob/frechet_ccdf_log.hpp +include/stan/math/prim/prob/frechet_cdf.hpp +include/stan/math/prim/prob/frechet_cdf_log.hpp +include/stan/math/prim/prob/frechet_lccdf.hpp +include/stan/math/prim/prob/frechet_lcdf.hpp +include/stan/math/prim/prob/frechet_log.hpp +include/stan/math/prim/prob/frechet_lpdf.hpp +include/stan/math/prim/prob/frechet_rng.hpp +include/stan/math/prim/prob/gamma_ccdf_log.hpp +include/stan/math/prim/prob/gamma_cdf.hpp +include/stan/math/prim/prob/gamma_cdf_log.hpp +include/stan/math/prim/prob/gamma_lccdf.hpp +include/stan/math/prim/prob/gamma_lcdf.hpp +include/stan/math/prim/prob/gamma_log.hpp +include/stan/math/prim/prob/gamma_lpdf.hpp +include/stan/math/prim/prob/gamma_rng.hpp +include/stan/math/prim/prob/gaussian_dlm_obs_log.hpp +include/stan/math/prim/prob/gaussian_dlm_obs_lpdf.hpp +include/stan/math/prim/prob/gaussian_dlm_obs_rng.hpp +include/stan/math/prim/prob/gumbel_ccdf_log.hpp +include/stan/math/prim/prob/gumbel_cdf.hpp +include/stan/math/prim/prob/gumbel_cdf_log.hpp +include/stan/math/prim/prob/gumbel_lccdf.hpp +include/stan/math/prim/prob/gumbel_lcdf.hpp +include/stan/math/prim/prob/gumbel_log.hpp +include/stan/math/prim/prob/gumbel_lpdf.hpp +include/stan/math/prim/prob/gumbel_rng.hpp +include/stan/math/prim/prob/hmm_hidden_state_prob.hpp +include/stan/math/prim/prob/hmm_latent_rng.hpp +include/stan/math/prim/prob/hmm_marginal.hpp +include/stan/math/prim/prob/hypergeometric_log.hpp +include/stan/math/prim/prob/hypergeometric_lpmf.hpp +include/stan/math/prim/prob/hypergeometric_rng.hpp +include/stan/math/prim/prob/inv_chi_square_ccdf_log.hpp +include/stan/math/prim/prob/inv_chi_square_cdf.hpp +include/stan/math/prim/prob/inv_chi_square_cdf_log.hpp +include/stan/math/prim/prob/inv_chi_square_lccdf.hpp +include/stan/math/prim/prob/inv_chi_square_lcdf.hpp +include/stan/math/prim/prob/inv_chi_square_log.hpp +include/stan/math/prim/prob/inv_chi_square_lpdf.hpp +include/stan/math/prim/prob/inv_chi_square_rng.hpp +include/stan/math/prim/prob/inv_gamma_ccdf_log.hpp +include/stan/math/prim/prob/inv_gamma_cdf.hpp +include/stan/math/prim/prob/inv_gamma_cdf_log.hpp +include/stan/math/prim/prob/inv_gamma_lccdf.hpp +include/stan/math/prim/prob/inv_gamma_lcdf.hpp +include/stan/math/prim/prob/inv_gamma_log.hpp +include/stan/math/prim/prob/inv_gamma_lpdf.hpp +include/stan/math/prim/prob/inv_gamma_rng.hpp +include/stan/math/prim/prob/inv_wishart_log.hpp +include/stan/math/prim/prob/inv_wishart_lpdf.hpp +include/stan/math/prim/prob/inv_wishart_rng.hpp +include/stan/math/prim/prob/lkj_corr_cholesky_log.hpp +include/stan/math/prim/prob/lkj_corr_cholesky_lpdf.hpp +include/stan/math/prim/prob/lkj_corr_cholesky_rng.hpp +include/stan/math/prim/prob/lkj_corr_log.hpp +include/stan/math/prim/prob/lkj_corr_lpdf.hpp +include/stan/math/prim/prob/lkj_corr_rng.hpp +include/stan/math/prim/prob/lkj_cov_log.hpp +include/stan/math/prim/prob/lkj_cov_lpdf.hpp +include/stan/math/prim/prob/logistic_ccdf_log.hpp +include/stan/math/prim/prob/logistic_cdf.hpp +include/stan/math/prim/prob/logistic_cdf_log.hpp +include/stan/math/prim/prob/logistic_lccdf.hpp +include/stan/math/prim/prob/logistic_lcdf.hpp +include/stan/math/prim/prob/logistic_log.hpp +include/stan/math/prim/prob/logistic_lpdf.hpp +include/stan/math/prim/prob/logistic_rng.hpp +include/stan/math/prim/prob/loglogistic_cdf.hpp +include/stan/math/prim/prob/loglogistic_lpdf.hpp +include/stan/math/prim/prob/loglogistic_rng.hpp +include/stan/math/prim/prob/lognormal_ccdf_log.hpp +include/stan/math/prim/prob/lognormal_cdf.hpp +include/stan/math/prim/prob/lognormal_cdf_log.hpp +include/stan/math/prim/prob/lognormal_lccdf.hpp +include/stan/math/prim/prob/lognormal_lcdf.hpp +include/stan/math/prim/prob/lognormal_log.hpp +include/stan/math/prim/prob/lognormal_lpdf.hpp +include/stan/math/prim/prob/lognormal_rng.hpp +include/stan/math/prim/prob/matrix_normal_prec_log.hpp +include/stan/math/prim/prob/matrix_normal_prec_lpdf.hpp +include/stan/math/prim/prob/matrix_normal_prec_rng.hpp +include/stan/math/prim/prob/multi_gp_cholesky_log.hpp +include/stan/math/prim/prob/multi_gp_cholesky_lpdf.hpp +include/stan/math/prim/prob/multi_gp_log.hpp +include/stan/math/prim/prob/multi_gp_lpdf.hpp +include/stan/math/prim/prob/multi_normal_cholesky_log.hpp +include/stan/math/prim/prob/multi_normal_cholesky_lpdf.hpp +include/stan/math/prim/prob/multi_normal_cholesky_rng.hpp +include/stan/math/prim/prob/multi_normal_log.hpp +include/stan/math/prim/prob/multi_normal_lpdf.hpp +include/stan/math/prim/prob/multi_normal_prec_log.hpp +include/stan/math/prim/prob/multi_normal_prec_lpdf.hpp +include/stan/math/prim/prob/multi_normal_prec_rng.hpp +include/stan/math/prim/prob/multi_normal_rng.hpp +include/stan/math/prim/prob/multi_student_t_log.hpp +include/stan/math/prim/prob/multi_student_t_lpdf.hpp +include/stan/math/prim/prob/multi_student_t_rng.hpp +include/stan/math/prim/prob/multinomial_log.hpp +include/stan/math/prim/prob/multinomial_logit_log.hpp +include/stan/math/prim/prob/multinomial_logit_lpmf.hpp +include/stan/math/prim/prob/multinomial_logit_rng.hpp +include/stan/math/prim/prob/multinomial_lpmf.hpp +include/stan/math/prim/prob/multinomial_rng.hpp +include/stan/math/prim/prob/neg_binomial_2_ccdf_log.hpp +include/stan/math/prim/prob/neg_binomial_2_cdf.hpp +include/stan/math/prim/prob/neg_binomial_2_cdf_log.hpp +include/stan/math/prim/prob/neg_binomial_2_lccdf.hpp +include/stan/math/prim/prob/neg_binomial_2_lcdf.hpp +include/stan/math/prim/prob/neg_binomial_2_log.hpp +include/stan/math/prim/prob/neg_binomial_2_log_glm_log.hpp +include/stan/math/prim/prob/neg_binomial_2_log_glm_lpmf.hpp +include/stan/math/prim/prob/neg_binomial_2_log_log.hpp +include/stan/math/prim/prob/neg_binomial_2_log_lpmf.hpp +include/stan/math/prim/prob/neg_binomial_2_log_rng.hpp +include/stan/math/prim/prob/neg_binomial_2_lpmf.hpp +include/stan/math/prim/prob/neg_binomial_2_rng.hpp +include/stan/math/prim/prob/neg_binomial_ccdf_log.hpp +include/stan/math/prim/prob/neg_binomial_cdf.hpp +include/stan/math/prim/prob/neg_binomial_cdf_log.hpp +include/stan/math/prim/prob/neg_binomial_lccdf.hpp +include/stan/math/prim/prob/neg_binomial_lcdf.hpp +include/stan/math/prim/prob/neg_binomial_log.hpp +include/stan/math/prim/prob/neg_binomial_lpmf.hpp +include/stan/math/prim/prob/neg_binomial_rng.hpp +include/stan/math/prim/prob/normal_ccdf_log.hpp +include/stan/math/prim/prob/normal_cdf.hpp +include/stan/math/prim/prob/normal_cdf_log.hpp +include/stan/math/prim/prob/normal_id_glm_log.hpp +include/stan/math/prim/prob/normal_id_glm_lpdf.hpp +include/stan/math/prim/prob/normal_lccdf.hpp +include/stan/math/prim/prob/normal_lcdf.hpp +include/stan/math/prim/prob/normal_log.hpp +include/stan/math/prim/prob/normal_lpdf.hpp +include/stan/math/prim/prob/normal_rng.hpp +include/stan/math/prim/prob/normal_sufficient_log.hpp +include/stan/math/prim/prob/normal_sufficient_lpdf.hpp +include/stan/math/prim/prob/ordered_logistic_glm_lpmf.hpp +include/stan/math/prim/prob/ordered_logistic_log.hpp +include/stan/math/prim/prob/ordered_logistic_lpmf.hpp +include/stan/math/prim/prob/ordered_logistic_rng.hpp +include/stan/math/prim/prob/ordered_probit_log.hpp +include/stan/math/prim/prob/ordered_probit_lpmf.hpp +include/stan/math/prim/prob/ordered_probit_rng.hpp +include/stan/math/prim/prob/pareto_ccdf_log.hpp +include/stan/math/prim/prob/pareto_cdf.hpp +include/stan/math/prim/prob/pareto_cdf_log.hpp +include/stan/math/prim/prob/pareto_lccdf.hpp +include/stan/math/prim/prob/pareto_lcdf.hpp +include/stan/math/prim/prob/pareto_log.hpp +include/stan/math/prim/prob/pareto_lpdf.hpp +include/stan/math/prim/prob/pareto_rng.hpp +include/stan/math/prim/prob/pareto_type_2_ccdf_log.hpp +include/stan/math/prim/prob/pareto_type_2_cdf.hpp +include/stan/math/prim/prob/pareto_type_2_cdf_log.hpp +include/stan/math/prim/prob/pareto_type_2_lccdf.hpp +include/stan/math/prim/prob/pareto_type_2_lcdf.hpp +include/stan/math/prim/prob/pareto_type_2_log.hpp +include/stan/math/prim/prob/pareto_type_2_lpdf.hpp +include/stan/math/prim/prob/pareto_type_2_rng.hpp +include/stan/math/prim/prob/poisson_binomial_ccdf_log.hpp +include/stan/math/prim/prob/poisson_binomial_cdf.hpp +include/stan/math/prim/prob/poisson_binomial_cdf_log.hpp +include/stan/math/prim/prob/poisson_binomial_lccdf.hpp +include/stan/math/prim/prob/poisson_binomial_lcdf.hpp +include/stan/math/prim/prob/poisson_binomial_log.hpp +include/stan/math/prim/prob/poisson_binomial_lpmf.hpp +include/stan/math/prim/prob/poisson_binomial_rng.hpp +include/stan/math/prim/prob/poisson_ccdf_log.hpp +include/stan/math/prim/prob/poisson_cdf.hpp +include/stan/math/prim/prob/poisson_cdf_log.hpp +include/stan/math/prim/prob/poisson_lccdf.hpp +include/stan/math/prim/prob/poisson_lcdf.hpp +include/stan/math/prim/prob/poisson_log.hpp +include/stan/math/prim/prob/poisson_log_glm_log.hpp +include/stan/math/prim/prob/poisson_log_glm_lpmf.hpp +include/stan/math/prim/prob/poisson_log_log.hpp +include/stan/math/prim/prob/poisson_log_lpmf.hpp +include/stan/math/prim/prob/poisson_log_rng.hpp +include/stan/math/prim/prob/poisson_lpmf.hpp +include/stan/math/prim/prob/poisson_rng.hpp +include/stan/math/prim/prob/rayleigh_ccdf_log.hpp +include/stan/math/prim/prob/rayleigh_cdf.hpp +include/stan/math/prim/prob/rayleigh_cdf_log.hpp +include/stan/math/prim/prob/rayleigh_lccdf.hpp +include/stan/math/prim/prob/rayleigh_lcdf.hpp +include/stan/math/prim/prob/rayleigh_log.hpp +include/stan/math/prim/prob/rayleigh_lpdf.hpp +include/stan/math/prim/prob/rayleigh_rng.hpp +include/stan/math/prim/prob/scaled_inv_chi_square_ccdf_log.hpp +include/stan/math/prim/prob/scaled_inv_chi_square_cdf.hpp +include/stan/math/prim/prob/scaled_inv_chi_square_cdf_log.hpp +include/stan/math/prim/prob/scaled_inv_chi_square_lccdf.hpp +include/stan/math/prim/prob/scaled_inv_chi_square_lcdf.hpp +include/stan/math/prim/prob/scaled_inv_chi_square_log.hpp +include/stan/math/prim/prob/scaled_inv_chi_square_lpdf.hpp +include/stan/math/prim/prob/scaled_inv_chi_square_rng.hpp +include/stan/math/prim/prob/skew_double_exponential_ccdf_log.hpp +include/stan/math/prim/prob/skew_double_exponential_cdf.hpp +include/stan/math/prim/prob/skew_double_exponential_cdf_log.hpp +include/stan/math/prim/prob/skew_double_exponential_lccdf.hpp +include/stan/math/prim/prob/skew_double_exponential_lcdf.hpp +include/stan/math/prim/prob/skew_double_exponential_log.hpp +include/stan/math/prim/prob/skew_double_exponential_lpdf.hpp +include/stan/math/prim/prob/skew_double_exponential_rng.hpp +include/stan/math/prim/prob/skew_normal_ccdf_log.hpp +include/stan/math/prim/prob/skew_normal_cdf.hpp +include/stan/math/prim/prob/skew_normal_cdf_log.hpp +include/stan/math/prim/prob/skew_normal_lccdf.hpp +include/stan/math/prim/prob/skew_normal_lcdf.hpp +include/stan/math/prim/prob/skew_normal_log.hpp +include/stan/math/prim/prob/skew_normal_lpdf.hpp +include/stan/math/prim/prob/skew_normal_rng.hpp +include/stan/math/prim/prob/std_normal_ccdf_log.hpp +include/stan/math/prim/prob/std_normal_cdf.hpp +include/stan/math/prim/prob/std_normal_cdf_log.hpp +include/stan/math/prim/prob/std_normal_lccdf.hpp +include/stan/math/prim/prob/std_normal_lcdf.hpp +include/stan/math/prim/prob/std_normal_log.hpp +include/stan/math/prim/prob/std_normal_lpdf.hpp +include/stan/math/prim/prob/std_normal_rng.hpp +include/stan/math/prim/prob/student_t_ccdf_log.hpp +include/stan/math/prim/prob/student_t_cdf.hpp +include/stan/math/prim/prob/student_t_cdf_log.hpp +include/stan/math/prim/prob/student_t_lccdf.hpp +include/stan/math/prim/prob/student_t_lcdf.hpp +include/stan/math/prim/prob/student_t_log.hpp +include/stan/math/prim/prob/student_t_lpdf.hpp +include/stan/math/prim/prob/student_t_rng.hpp +include/stan/math/prim/prob/uniform_ccdf_log.hpp +include/stan/math/prim/prob/uniform_cdf.hpp +include/stan/math/prim/prob/uniform_cdf_log.hpp +include/stan/math/prim/prob/uniform_lccdf.hpp +include/stan/math/prim/prob/uniform_lcdf.hpp +include/stan/math/prim/prob/uniform_log.hpp +include/stan/math/prim/prob/uniform_lpdf.hpp +include/stan/math/prim/prob/uniform_rng.hpp +include/stan/math/prim/prob/von_mises_cdf.hpp +include/stan/math/prim/prob/von_mises_lccdf.hpp +include/stan/math/prim/prob/von_mises_lcdf.hpp +include/stan/math/prim/prob/von_mises_log.hpp +include/stan/math/prim/prob/von_mises_lpdf.hpp +include/stan/math/prim/prob/von_mises_rng.hpp +include/stan/math/prim/prob/weibull_ccdf_log.hpp +include/stan/math/prim/prob/weibull_cdf.hpp +include/stan/math/prim/prob/weibull_cdf_log.hpp +include/stan/math/prim/prob/weibull_lccdf.hpp +include/stan/math/prim/prob/weibull_lcdf.hpp +include/stan/math/prim/prob/weibull_log.hpp +include/stan/math/prim/prob/weibull_lpdf.hpp +include/stan/math/prim/prob/weibull_rng.hpp +include/stan/math/prim/prob/wiener_log.hpp +include/stan/math/prim/prob/wiener_lpdf.hpp +include/stan/math/prim/prob/wishart_log.hpp +include/stan/math/prim/prob/wishart_lpdf.hpp +include/stan/math/prim/prob/wishart_rng.hpp +include/stan/math/rev.hpp +include/stan/math/rev/core.hpp +include/stan/math/rev/core/Eigen_NumTraits.hpp +include/stan/math/rev/core/accumulate_adjoints.hpp +include/stan/math/rev/core/arena_allocator.hpp +include/stan/math/rev/core/arena_matrix.hpp +include/stan/math/rev/core/autodiffstackstorage.hpp +include/stan/math/rev/core/build_vari_array.hpp +include/stan/math/rev/core/callback_vari.hpp +include/stan/math/rev/core/chainable_alloc.hpp +include/stan/math/rev/core/chainable_object.hpp +include/stan/math/rev/core/chainablestack.hpp +include/stan/math/rev/core/count_vars.hpp +include/stan/math/rev/core/ddv_vari.hpp +include/stan/math/rev/core/deep_copy_vars.hpp +include/stan/math/rev/core/dv_vari.hpp +include/stan/math/rev/core/dvd_vari.hpp +include/stan/math/rev/core/dvv_vari.hpp +include/stan/math/rev/core/empty_nested.hpp +include/stan/math/rev/core/gevv_vvv_vari.hpp +include/stan/math/rev/core/grad.hpp +include/stan/math/rev/core/init_chainablestack.hpp +include/stan/math/rev/core/matrix_vari.hpp +include/stan/math/rev/core/nested_rev_autodiff.hpp +include/stan/math/rev/core/nested_size.hpp +include/stan/math/rev/core/operator_addition.hpp +include/stan/math/rev/core/operator_divide_equal.hpp +include/stan/math/rev/core/operator_division.hpp +include/stan/math/rev/core/operator_equal.hpp +include/stan/math/rev/core/operator_greater_than.hpp +include/stan/math/rev/core/operator_greater_than_or_equal.hpp +include/stan/math/rev/core/operator_less_than.hpp +include/stan/math/rev/core/operator_less_than_or_equal.hpp +include/stan/math/rev/core/operator_logical_and.hpp +include/stan/math/rev/core/operator_logical_or.hpp +include/stan/math/rev/core/operator_minus_equal.hpp +include/stan/math/rev/core/operator_multiplication.hpp +include/stan/math/rev/core/operator_multiply_equal.hpp +include/stan/math/rev/core/operator_not_equal.hpp +include/stan/math/rev/core/operator_plus_equal.hpp +include/stan/math/rev/core/operator_subtraction.hpp +include/stan/math/rev/core/operator_unary_decrement.hpp +include/stan/math/rev/core/operator_unary_increment.hpp +include/stan/math/rev/core/operator_unary_negative.hpp +include/stan/math/rev/core/operator_unary_not.hpp +include/stan/math/rev/core/operator_unary_plus.hpp +include/stan/math/rev/core/precomp_vv_vari.hpp +include/stan/math/rev/core/precomp_vvv_vari.hpp +include/stan/math/rev/core/precomputed_gradients.hpp +include/stan/math/rev/core/print_stack.hpp +include/stan/math/rev/core/profiling.hpp +include/stan/math/rev/core/read_var.hpp +include/stan/math/rev/core/recover_memory.hpp +include/stan/math/rev/core/recover_memory_nested.hpp +include/stan/math/rev/core/reverse_pass_callback.hpp +include/stan/math/rev/core/save_varis.hpp +include/stan/math/rev/core/scoped_chainablestack.hpp +include/stan/math/rev/core/set_zero_all_adjoints.hpp +include/stan/math/rev/core/set_zero_all_adjoints_nested.hpp +include/stan/math/rev/core/start_nested.hpp +include/stan/math/rev/core/std_complex.hpp +include/stan/math/rev/core/std_isinf.hpp +include/stan/math/rev/core/std_isnan.hpp +include/stan/math/rev/core/std_iterator_traits.hpp +include/stan/math/rev/core/std_numeric_limits.hpp +include/stan/math/rev/core/stored_gradient_vari.hpp +include/stan/math/rev/core/typedefs.hpp +include/stan/math/rev/core/v_vari.hpp +include/stan/math/rev/core/var.hpp +include/stan/math/rev/core/var_value_fwd_declare.hpp +include/stan/math/rev/core/vari.hpp +include/stan/math/rev/core/vd_vari.hpp +include/stan/math/rev/core/vdd_vari.hpp +include/stan/math/rev/core/vdv_vari.hpp +include/stan/math/rev/core/vector_vari.hpp +include/stan/math/rev/core/vv_vari.hpp +include/stan/math/rev/core/vvd_vari.hpp +include/stan/math/rev/core/vvv_vari.hpp +include/stan/math/rev/core/zero_adjoints.hpp +include/stan/math/rev/fun.hpp +include/stan/math/rev/fun/LDLT_factor.hpp +include/stan/math/rev/fun/Phi.hpp +include/stan/math/rev/fun/Phi_approx.hpp +include/stan/math/rev/fun/abs.hpp +include/stan/math/rev/fun/acos.hpp +include/stan/math/rev/fun/acosh.hpp +include/stan/math/rev/fun/adjoint_of.hpp +include/stan/math/rev/fun/arg.hpp +include/stan/math/rev/fun/as_array_or_scalar.hpp +include/stan/math/rev/fun/as_bool.hpp +include/stan/math/rev/fun/as_column_vector_or_scalar.hpp +include/stan/math/rev/fun/asin.hpp +include/stan/math/rev/fun/asinh.hpp +include/stan/math/rev/fun/atan.hpp +include/stan/math/rev/fun/atan2.hpp +include/stan/math/rev/fun/atanh.hpp +include/stan/math/rev/fun/bessel_first_kind.hpp +include/stan/math/rev/fun/bessel_second_kind.hpp +include/stan/math/rev/fun/beta.hpp +include/stan/math/rev/fun/binary_log_loss.hpp +include/stan/math/rev/fun/cbrt.hpp +include/stan/math/rev/fun/ceil.hpp +include/stan/math/rev/fun/cholesky_corr_constrain.hpp +include/stan/math/rev/fun/cholesky_decompose.hpp +include/stan/math/rev/fun/cholesky_factor_constrain.hpp +include/stan/math/rev/fun/columns_dot_product.hpp +include/stan/math/rev/fun/columns_dot_self.hpp +include/stan/math/rev/fun/conj.hpp +include/stan/math/rev/fun/corr_matrix_constrain.hpp +include/stan/math/rev/fun/cos.hpp +include/stan/math/rev/fun/cosh.hpp +include/stan/math/rev/fun/cov_exp_quad.hpp +include/stan/math/rev/fun/cov_matrix_constrain.hpp +include/stan/math/rev/fun/cov_matrix_constrain_lkj.hpp +include/stan/math/rev/fun/csr_matrix_times_vector.hpp +include/stan/math/rev/fun/determinant.hpp +include/stan/math/rev/fun/diag_post_multiply.hpp +include/stan/math/rev/fun/diag_pre_multiply.hpp +include/stan/math/rev/fun/digamma.hpp +include/stan/math/rev/fun/dims.hpp +include/stan/math/rev/fun/divide.hpp +include/stan/math/rev/fun/dot_product.hpp +include/stan/math/rev/fun/dot_self.hpp +include/stan/math/rev/fun/eigenvalues_sym.hpp +include/stan/math/rev/fun/eigenvectors_sym.hpp +include/stan/math/rev/fun/elt_divide.hpp +include/stan/math/rev/fun/elt_multiply.hpp +include/stan/math/rev/fun/erf.hpp +include/stan/math/rev/fun/erfc.hpp +include/stan/math/rev/fun/exp.hpp +include/stan/math/rev/fun/exp2.hpp +include/stan/math/rev/fun/expm1.hpp +include/stan/math/rev/fun/fabs.hpp +include/stan/math/rev/fun/falling_factorial.hpp +include/stan/math/rev/fun/fdim.hpp +include/stan/math/rev/fun/fill.hpp +include/stan/math/rev/fun/floor.hpp +include/stan/math/rev/fun/fma.hpp +include/stan/math/rev/fun/fmax.hpp +include/stan/math/rev/fun/fmin.hpp +include/stan/math/rev/fun/fmod.hpp +include/stan/math/rev/fun/from_var_value.hpp +include/stan/math/rev/fun/gamma_p.hpp +include/stan/math/rev/fun/gamma_q.hpp +include/stan/math/rev/fun/generalized_inverse.hpp +include/stan/math/rev/fun/gp_exp_quad_cov.hpp +include/stan/math/rev/fun/gp_periodic_cov.hpp +include/stan/math/rev/fun/grad.hpp +include/stan/math/rev/fun/grad_inc_beta.hpp +include/stan/math/rev/fun/hypot.hpp +include/stan/math/rev/fun/identity_constrain.hpp +include/stan/math/rev/fun/identity_free.hpp +include/stan/math/rev/fun/if_else.hpp +include/stan/math/rev/fun/inc_beta.hpp +include/stan/math/rev/fun/initialize_fill.hpp +include/stan/math/rev/fun/initialize_variable.hpp +include/stan/math/rev/fun/inv.hpp +include/stan/math/rev/fun/inv_Phi.hpp +include/stan/math/rev/fun/inv_cloglog.hpp +include/stan/math/rev/fun/inv_logit.hpp +include/stan/math/rev/fun/inv_sqrt.hpp +include/stan/math/rev/fun/inv_square.hpp +include/stan/math/rev/fun/inverse.hpp +include/stan/math/rev/fun/is_inf.hpp +include/stan/math/rev/fun/is_nan.hpp +include/stan/math/rev/fun/is_uninitialized.hpp +include/stan/math/rev/fun/lambert_w.hpp +include/stan/math/rev/fun/lb_constrain.hpp +include/stan/math/rev/fun/lbeta.hpp +include/stan/math/rev/fun/ldexp.hpp +include/stan/math/rev/fun/lgamma.hpp +include/stan/math/rev/fun/lmgamma.hpp +include/stan/math/rev/fun/log.hpp +include/stan/math/rev/fun/log10.hpp +include/stan/math/rev/fun/log1m.hpp +include/stan/math/rev/fun/log1m_exp.hpp +include/stan/math/rev/fun/log1m_inv_logit.hpp +include/stan/math/rev/fun/log1p.hpp +include/stan/math/rev/fun/log1p_exp.hpp +include/stan/math/rev/fun/log2.hpp +include/stan/math/rev/fun/log_determinant.hpp +include/stan/math/rev/fun/log_determinant_ldlt.hpp +include/stan/math/rev/fun/log_determinant_spd.hpp +include/stan/math/rev/fun/log_diff_exp.hpp +include/stan/math/rev/fun/log_falling_factorial.hpp +include/stan/math/rev/fun/log_inv_logit.hpp +include/stan/math/rev/fun/log_inv_logit_diff.hpp +include/stan/math/rev/fun/log_mix.hpp +include/stan/math/rev/fun/log_rising_factorial.hpp +include/stan/math/rev/fun/log_softmax.hpp +include/stan/math/rev/fun/log_sum_exp.hpp +include/stan/math/rev/fun/logit.hpp +include/stan/math/rev/fun/lub_constrain.hpp +include/stan/math/rev/fun/matrix_exp_multiply.hpp +include/stan/math/rev/fun/matrix_power.hpp +include/stan/math/rev/fun/mdivide_left.hpp +include/stan/math/rev/fun/mdivide_left_ldlt.hpp +include/stan/math/rev/fun/mdivide_left_spd.hpp +include/stan/math/rev/fun/mdivide_left_tri.hpp +include/stan/math/rev/fun/modified_bessel_first_kind.hpp +include/stan/math/rev/fun/modified_bessel_second_kind.hpp +include/stan/math/rev/fun/multiply.hpp +include/stan/math/rev/fun/multiply_log.hpp +include/stan/math/rev/fun/multiply_lower_tri_self_transpose.hpp +include/stan/math/rev/fun/norm.hpp +include/stan/math/rev/fun/ordered_constrain.hpp +include/stan/math/rev/fun/owens_t.hpp +include/stan/math/rev/fun/polar.hpp +include/stan/math/rev/fun/positive_ordered_constrain.hpp +include/stan/math/rev/fun/pow.hpp +include/stan/math/rev/fun/primitive_value.hpp +include/stan/math/rev/fun/proj.hpp +include/stan/math/rev/fun/quad_form.hpp +include/stan/math/rev/fun/quad_form_sym.hpp +include/stan/math/rev/fun/read_corr_L.hpp +include/stan/math/rev/fun/read_corr_matrix.hpp +include/stan/math/rev/fun/read_cov_L.hpp +include/stan/math/rev/fun/read_cov_matrix.hpp +include/stan/math/rev/fun/rep_matrix.hpp +include/stan/math/rev/fun/rising_factorial.hpp +include/stan/math/rev/fun/round.hpp +include/stan/math/rev/fun/rows_dot_product.hpp +include/stan/math/rev/fun/rows_dot_self.hpp +include/stan/math/rev/fun/sd.hpp +include/stan/math/rev/fun/simplex_constrain.hpp +include/stan/math/rev/fun/sin.hpp +include/stan/math/rev/fun/singular_values.hpp +include/stan/math/rev/fun/sinh.hpp +include/stan/math/rev/fun/softmax.hpp +include/stan/math/rev/fun/sqrt.hpp +include/stan/math/rev/fun/square.hpp +include/stan/math/rev/fun/squared_distance.hpp +include/stan/math/rev/fun/stan_print.hpp +include/stan/math/rev/fun/step.hpp +include/stan/math/rev/fun/sum.hpp +include/stan/math/rev/fun/svd_U.hpp +include/stan/math/rev/fun/svd_V.hpp +include/stan/math/rev/fun/tan.hpp +include/stan/math/rev/fun/tanh.hpp +include/stan/math/rev/fun/tcrossprod.hpp +include/stan/math/rev/fun/tgamma.hpp +include/stan/math/rev/fun/to_arena.hpp +include/stan/math/rev/fun/to_var.hpp +include/stan/math/rev/fun/to_var_value.hpp +include/stan/math/rev/fun/trace.hpp +include/stan/math/rev/fun/trace_gen_inv_quad_form_ldlt.hpp +include/stan/math/rev/fun/trace_gen_quad_form.hpp +include/stan/math/rev/fun/trace_inv_quad_form_ldlt.hpp +include/stan/math/rev/fun/trace_quad_form.hpp +include/stan/math/rev/fun/trigamma.hpp +include/stan/math/rev/fun/trunc.hpp +include/stan/math/rev/fun/ub_constrain.hpp +include/stan/math/rev/fun/unit_vector_constrain.hpp +include/stan/math/rev/fun/value_of.hpp +include/stan/math/rev/fun/value_of_rec.hpp +include/stan/math/rev/fun/variance.hpp +include/stan/math/rev/functor.hpp +include/stan/math/rev/functor/algebra_solver_fp.hpp +include/stan/math/rev/functor/algebra_solver_newton.hpp +include/stan/math/rev/functor/algebra_solver_powell.hpp +include/stan/math/rev/functor/algebra_system.hpp +include/stan/math/rev/functor/apply_scalar_unary.hpp +include/stan/math/rev/functor/apply_vector_unary.hpp +include/stan/math/rev/functor/coupled_ode_system.hpp +include/stan/math/rev/functor/cvodes_integrator.hpp +include/stan/math/rev/functor/cvodes_integrator_adjoint.hpp +include/stan/math/rev/functor/cvodes_utils.hpp +include/stan/math/rev/functor/finite_diff_hessian_auto.hpp +include/stan/math/rev/functor/gradient.hpp +include/stan/math/rev/functor/idas_forward_system.hpp +include/stan/math/rev/functor/idas_integrator.hpp +include/stan/math/rev/functor/idas_system.hpp +include/stan/math/rev/functor/integrate_1d.hpp +include/stan/math/rev/functor/integrate_dae.hpp +include/stan/math/rev/functor/integrate_ode_adams.hpp +include/stan/math/rev/functor/integrate_ode_bdf.hpp +include/stan/math/rev/functor/jacobian.hpp +include/stan/math/rev/functor/kinsol_data.hpp +include/stan/math/rev/functor/kinsol_solve.hpp +include/stan/math/rev/functor/map_rect_concurrent.hpp +include/stan/math/rev/functor/map_rect_reduce.hpp +include/stan/math/rev/functor/ode_adams.hpp +include/stan/math/rev/functor/ode_adjoint.hpp +include/stan/math/rev/functor/ode_bdf.hpp +include/stan/math/rev/functor/ode_store_sensitivities.hpp +include/stan/math/rev/functor/operands_and_partials.hpp +include/stan/math/rev/functor/reduce_sum.hpp +include/stan/math/rev/meta.hpp +include/stan/math/rev/meta/arena_type.hpp +include/stan/math/rev/meta/conditional_var_value.hpp +include/stan/math/rev/meta/is_arena_matrix.hpp +include/stan/math/rev/meta/is_rev_matrix.hpp +include/stan/math/rev/meta/is_var.hpp +include/stan/math/rev/meta/is_vari.hpp +include/stan/math/rev/meta/partials_type.hpp +include/stan/math/rev/meta/plain_type.hpp +include/stan/math/rev/meta/promote_var_matrix.hpp +include/stan/math/rev/meta/return_var_matrix.hpp +include/stan/math/rev/meta/rev_matrix_type.hpp +include/stan/math/version.hpp |