MOOCHO (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Namespaces | Typedefs | Enumerations | Functions
BLAS_Cpp_Types.hpp File Reference
#include "Moocho_ConfigDefs.hpp"
Include dependency graph for BLAS_Cpp_Types.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 BLAS_Cpp
 

Typedefs

typedef size_t BLAS_Cpp::size_type
 Size type. More...
 

Enumerations

enum  BLAS_Cpp::Side { BLAS_Cpp::left, BLAS_Cpp::right }
 SIDE. More...
 
enum  BLAS_Cpp::Transp { BLAS_Cpp::no_trans, BLAS_Cpp::trans, BLAS_Cpp::conj_trans }
 TRANS. More...
 
enum  BLAS_Cpp::Uplo { BLAS_Cpp::upper, BLAS_Cpp::lower }
 UPLO. More...
 
enum  BLAS_Cpp::Diag { BLAS_Cpp::unit, BLAS_Cpp::nonunit }
 DIAG. More...
 

Functions

Uplo BLAS_Cpp::operator! (Uplo uplo)
 Return the opposite of Uplo argument. More...
 
Transp BLAS_Cpp::bool_to_trans (bool return_trans)
 Return Transp given a bool. More...
 
bool BLAS_Cpp::trans_to_bool (Transp _trans)
 Returns true if _trans == trans. More...
 
Transp BLAS_Cpp::operator! (Transp _trans)
 Return the opposite of the transpose argument. More...
 
Transp BLAS_Cpp::trans_not (Transp _trans)
 Return the opposite of the transpose argument. More...
 
Transp BLAS_Cpp::trans_trans (Transp _trans1, Transp _trans2)
 Return the transpose of the transpose argument. More...
 
const char * BLAS_Cpp::trans_to_string (Transp _trans)
 Give a string name to Transp value. More...
 
size_type BLAS_Cpp::rows (size_type rows, size_type cols, BLAS_Cpp::Transp _trans)
 Return rows of a possible transposed matrix. More...
 
size_type BLAS_Cpp::cols (size_type rows, size_type cols, BLAS_Cpp::Transp _trans)
 Return columns of a possible transposed matrix. More...