autoppl  v0.8
A C++ template library for probabilistic programming
ppl::expr::dist::details::uniform_valid_param_dim< MinType, MaxType > Struct Template Reference

#include <uniform.hpp>

Static Public Attributes

static constexpr bool value
 

Detailed Description

template<class MinType, class MaxType>
struct ppl::expr::dist::details::uniform_valid_param_dim< MinType, MaxType >

Checks whether min, max have proper relative shapes. Must be proper shapes and cannot be matrices.

Member Data Documentation

◆ value

template<class MinType , class MaxType >
constexpr bool ppl::expr::dist::details::uniform_valid_param_dim< MinType, MaxType >::value
staticconstexpr
Initial value:
=
util::is_shape_v<MinType> &&
util::is_shape_v<MaxType> &&
!util::is_mat_v<MinType> &&
!util::is_mat_v<MaxType>

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