buds  0.1
FORTRAN reference counted types
Data Types | Functions/Subroutines | Variables

Data Types

interface  assignment(=)
 Assignment of bud to another bud. More...
 
interface  attach
 Retrieve access to sparse pattern variables via pointers. More...
 
interface  delete
 Deletes the bud by decreasing references to the underlying data. More...
 
interface  initialize
 Initialization of data container. More...
 
interface  initialized
 See interface is_initialized More...
 
interface  is_initd
 See interface is_initialized More...
 
interface  is_initialized
 Query whether bud is associated with any data. More...
 
interface  is_same
 Check whether two buds point to the same data (function) More...
 
type  lsm_csr_c
 Sparse matrix type in the CSR format. More...
 
interface  mat_cols
 Number of columns in matrix. More...
 
interface  mat_columnp
 Retrieve a pointer to the column indices. More...
 
interface  mat_fold
 Fold a sparse matrix to form a smaller sparse matrix. More...
 
interface  mat_offsetp
 See interface #mat_pointerp More...
 
interface  mat_pointerp
 Retrieve a pointer to the row offsets/pointers. More...
 
interface  mat_rows
 Number of rows in matrix. More...
 
interface  mat_sort
 Sorts columns in the sparse pattern. More...
 
interface  new
 Create a new sparse matrix. More...
 
interface  new_lsm_csr_c
 See interface #new More...
 
interface  nonzeros
 Return number of non-zero elements stored in the sparse matrix. More...
 
interface  nullify
 Nullifies the current bud. More...
 
interface  print
 Print, to std-out, some basic information of the data-container. More...
 
interface  references
 Query number of references to the bud. More...
 
interface  refs
 See interface #references More...
 
interface  same
 See interface #is_same More...
 

Functions/Subroutines

subroutine initialize_ (this)
 
pure logical function is_initialized_ (this)
 
elemental logical function is_same_ (lhs, rhs)
 
elemental subroutine delete_ (this)
 
elemental subroutine nullify_ (this)
 
subroutine assign_ (lhs, rhs)
 
elemental integer function references_ (this)
 
elemental integer function nonzeros_ (this)
 
elemental integer function mat_rows_ (this)
 
elemental integer function mat_cols_ (this)
 
subroutine new_dim_ (this, nr, nc, nz)
 
subroutine new_copy_ (this, nr, nc, nz, rptr, col)
 
subroutine attach_ (this, D, nr, nc, nz, rptr, col )
 
subroutine fold_ (from, nr, nc, to, single)
 
subroutine fold_col_only (from, nc, to, single)
 
subroutine fold_row_only (from, nr, to)
 
integer(il_) function, dimension(:), pointer, contiguous get_row_offsetp_ (this)
 
integer(il_) function, dimension(:), pointer, contiguous get_columnp_ (this)
 
subroutine sort_ (this, err, pvt)
 
subroutine print_ (this, info, indent)
 

Variables

integer, parameter, private bud_id_len = 36
 Size of ID parameter for bud data-containers. More...
 
character(len=*), parameter, private bud_mod = "bud_" // "bud_lSM_CSR_C"
 Name of module. More...
 
character(len=*), parameter, private bud_type = "lSM_CSR_C"
 Name of bud in this module. More...
 
integer, parameter, public sm_none = 0
 Errors with a negative number refers to the -err element. More...
 
integer, parameter, public sm_entry_multiple = 1
 Signals two or more equivalent sparse elements. More...
 
integer, parameter, public sm_input = 1000
 The input argument that is wrong by err-SM_INPUT More...
 

Function/Subroutine Documentation

subroutine bud_lsm_csr_c::fold_col_only ( class(lsm_csr_c), intent(in)  from,
integer(il_), intent(in)  nc,
class(lsm_csr_c), intent(inout)  to,
logical, intent(in), optional  single 
)
Parameters
[in]fromthe originating sparse pattern
[in]ncnew number of columns in the sparse pattern
[in,out]tothe resulting sparse pattern
[in]singleoptional=.false. if .true.: will compress equivalent entries to a single entry, no double entries will be found subsequently.

Here is the call graph for this function:

Here is the caller graph for this function:

integer(il_) function, dimension(:), pointer, contiguous bud_lsm_csr_c::get_row_offsetp_ ( class(lsm_csr_c), intent(in)  this)
Parameters
[in]thissparse matrix
Returns
a pointer to the row offsets for the sparse matrix (contiguous)
subroutine bud_lsm_csr_c::print_ ( class(lsm_csr_c), intent(in)  this,
character(len=*), intent(in), optional  info,
integer, intent(in), optional  indent 
)
Parameters
[in]thissparse matrix
[in]infooptional="lSM_CSR_C" additional information printed
[in]indentoptional=1 possible indentation of printed statement