io.cpp File Reference
#include <sstream>
#include "main.h"

Classes

struct  check_ostream_impl< Scalar >
 
struct  check_ostream_impl< bool >
 
struct  check_ostream_impl< std::complex< Scalar > >
 

Functions

template<typename Scalar >
static void check_ostream ()
 
 EIGEN_DECLARE_TEST (rand)
 

Function Documentation

◆ check_ostream()

template<typename Scalar >
static void check_ostream ( )
static
47  {
49 }
static void run()
Definition: io.cpp:16

References check_ostream_impl< Scalar >::run().

◆ EIGEN_DECLARE_TEST()

EIGEN_DECLARE_TEST ( rand  )
51  {
52  CALL_SUBTEST(check_ostream<bool>());
53  CALL_SUBTEST(check_ostream<float>());
54  CALL_SUBTEST(check_ostream<double>());
55  CALL_SUBTEST(check_ostream<Eigen::numext::int8_t>());
56  CALL_SUBTEST(check_ostream<Eigen::numext::uint8_t>());
57  CALL_SUBTEST(check_ostream<Eigen::numext::int16_t>());
58  CALL_SUBTEST(check_ostream<Eigen::numext::uint16_t>());
59  CALL_SUBTEST(check_ostream<Eigen::numext::int32_t>());
60  CALL_SUBTEST(check_ostream<Eigen::numext::uint32_t>());
61  CALL_SUBTEST(check_ostream<Eigen::numext::int64_t>());
62  CALL_SUBTEST(check_ostream<Eigen::numext::uint64_t>());
63 }
#define CALL_SUBTEST(FUNC)
Definition: main.h:382

References CALL_SUBTEST.