autoppl  v0.8
A C++ template library for probabilistic programming
ppl::expr::dist::details::cauchy_valid_param_dim< LocType, ScaleType > Struct Template Reference

#include <cauchy.hpp>

Static Public Attributes

static constexpr bool value
 

Detailed Description

template<class LocType, class ScaleType>
struct ppl::expr::dist::details::cauchy_valid_param_dim< LocType, ScaleType >

Checks whether loc, scale have proper relative shapes. Must be proper shapes and cannot be matrices.

Member Data Documentation

◆ value

template<class LocType , class ScaleType >
constexpr bool ppl::expr::dist::details::cauchy_valid_param_dim< LocType, ScaleType >::value
staticconstexpr
Initial value:
=
util::is_shape_v<LocType> &&
util::is_shape_v<ScaleType> &&
!util::is_mat_v<LocType> &&
!util::is_mat_v<ScaleType>

The documentation for this struct was generated from the following file: