Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(abst_matrix), | intent(in) | :: | self |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(abst_matrix), | intent(inout) | :: | self |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(abst_matrix), | intent(in) | :: | self | |||
integer(kind=int32), | intent(in) | :: | row | |||
integer(kind=int32), | intent(in) | :: | col | |||
integer(kind=int32), | intent(inout) | :: | index |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(abst_matrix), | intent(inout) | :: | self | |||
type(type_domain), | intent(inout) | :: | domain |
type, abstract :: abst_matrix ! Abstract base type for matrices. contains procedure(abst_initialize), pass(self), deferred :: initialize procedure(abst_find), pass(self), deferred :: find procedure(abst_copy), pass(self), deferred :: copy procedure(abst_destory), pass(self), deferred :: destory end type abst_matrix