|
integer(intg) | id |
| The ID of the matrix. More...
|
|
logical | matrix_finished |
| Is .TRUE. if the matrix has finished being created, .FALSE. if not. More...
|
|
integer(intg) | m |
| The number of rows in the matrix. More...
|
|
integer(intg) | n |
| The number of columns in the matrix. More...
|
|
integer(intg) | max_m |
| The maximum number of columns in the matrix storage. More...
|
|
integer(intg) | max_n |
| The maximum number of rows in the matrix storage. More...
|
|
integer(intg) | data_type |
| The data type of the matrix. More...
|
|
integer(intg) | storage_type |
| The storage type of the matrix. More...
|
|
integer(intg) | number_non_zeros |
| The number of non-zero elements in the matrix. More...
|
|
integer(intg) | size |
| The size of the data arrays. More...
|
|
integer(intg) | maximum_column_indices_per_row |
| The maximum number of column indicies for the rows. More...
|
|
integer(intg), dimension(:), allocatable | row_indices |
| ROW_INDICES(i). The row indices for the matrix storage scheme. More...
|
|
integer(intg), dimension(:), allocatable | column_indices |
| COLUMN_INDICES(i). The column indices for the matrix storage scheme. More...
|
|
type(linkedlist), dimension(:), pointer | list |
|
integer(intg), dimension(:), allocatable | data_intg |
| DATA_INTG(i). The integer data for an integer matrix. The i'th component contains the data for the i'th matrix data stored on the domain. More...
|
|
real(sp), dimension(:), allocatable | data_sp |
| DATA_SP(i). The real data for a single precision matrix. The i'th component contains the data for the i'th matrix data stored on the domain. More...
|
|
real(dp), dimension(:), allocatable | data_dp |
| DATA_DP(i). The real data for a double precision matrix. The i'th component contains the data for the i'th matrix data stored on the domain. More...
|
|
logical, dimension(:), allocatable | data_l |
| DATA_L(i). The logical data for a logical matrix. The i'th component contains the data for the i'th matrix data stored on the domain. More...
|
|
Contains information for a matrix.
Definition at line 859 of file types.f90.