ITM Grid Service Library: Fortran 90
|
Data Types | |
type | SimplexDict |
type | simplexDictIterator |
Functions/Subroutines | |
subroutine | createSimplexDict (dict, dim, nNodes, nMaxParents) |
integer | countSimplexes (dict) |
integer | sortSimplex (simplex) |
subroutine | insertSimplex (dict, simplex) |
subroutine | resetIterator (iterator) |
subroutine | nextSimplex (dict, iter, simplex) |
logical | simplexUndefined (simplex) |
integer | simplexIndex (dict, simplex) |
Get global index of given sorted simplex. | |
integer, dimension(size(simplex), max(size(simplex)-1, 1)) | listChildren (simplex) |
integer itm_grid_simplex_dict::countSimplexes | ( | type(SimplexDict),intent(in) | dict | ) |
Definition at line 55 of file itm_grid_simplex_dict.f90.
subroutine itm_grid_simplex_dict::createSimplexDict | ( | type(SimplexDict),intent(out) | dict, |
integer,intent(in) | dim, | ||
integer,intent(in) | nNodes, | ||
integer,intent(in) | nMaxParents | ||
) |
Definition at line 41 of file itm_grid_simplex_dict.f90.
subroutine itm_grid_simplex_dict::insertSimplex | ( | type(SimplexDict),intent(inout) | dict, |
integer,dimension(:),intent(in) | simplex | ||
) |
Definition at line 70 of file itm_grid_simplex_dict.f90.
integer,dimension(size(simplex), max(size(simplex)-1, 1)) itm_grid_simplex_dict::listChildren | ( | integer,dimension(:),intent(in) | simplex | ) |
Definition at line 177 of file itm_grid_simplex_dict.f90.
subroutine itm_grid_simplex_dict::nextSimplex | ( | type(SimplexDict),intent(in) | dict, |
type(SimplexDictIterator),intent(inout) | iter, | ||
integer,dimension(dict%dim + 1),intent(out) | simplex | ||
) |
Definition at line 112 of file itm_grid_simplex_dict.f90.
subroutine itm_grid_simplex_dict::resetIterator | ( | type(SimplexDictIterator),intent(inout) | iterator | ) |
Definition at line 105 of file itm_grid_simplex_dict.f90.
integer itm_grid_simplex_dict::simplexIndex | ( | type(SimplexDict),intent(in) | dict, |
integer,dimension(:),intent(in) | simplex | ||
) |
Get global index of given sorted simplex.
Definition at line 152 of file itm_grid_simplex_dict.f90.
logical itm_grid_simplex_dict::simplexUndefined | ( | integer,dimension(:),intent(in) | simplex | ) |
Definition at line 145 of file itm_grid_simplex_dict.f90.
integer itm_grid_simplex_dict::sortSimplex | ( | integer,dimension(:),intent(in) | simplex | ) |
Definition at line 61 of file itm_grid_simplex_dict.f90.