NTPoly
|
Wraps the triplet module for calling from other languages. More...
Data Types | |
type | triplet_wrp |
A wrapper for the triplet data type. More... | |
Functions/Subroutines | |
pure subroutine, public | settriplet_wrp (ih_this, index_column, index_row, point_value) |
Set the values of a triplet. More... | |
pure subroutine, public | gettripletvalues_wrp (ih_this, index_column, index_row, point_value) |
Get the values of a triplet. More... | |
Wraps the triplet module for calling from other languages.
pure subroutine, public tripletmodule_wrp::gettripletvalues_wrp | ( | integer(kind=c_int), dimension(size_wrp), intent(in) | ih_this, |
integer(kind=c_int), intent(out) | index_column, | ||
integer(kind=c_int), intent(out) | index_row, | ||
real(ntreal), intent(out) | point_value | ||
) |
Get the values of a triplet.
[in] | ih_this | the triplet to extract the values of. |
[out] | index_column | column value. |
[out] | index_row | row value. |
[out] | point_value | actual stored value. |
pure subroutine, public tripletmodule_wrp::settriplet_wrp | ( | integer(kind=c_int), dimension(size_wrp), intent(inout) | ih_this, |
integer(kind=c_int), intent(in) | index_column, | ||
integer(kind=c_int), intent(in) | index_row, | ||
real(ntreal), intent(in) | point_value | ||
) |
Set the values of a triplet.
[in,out] | ih_this | handle to the triplet to set the values of. |
[in] | index_column | the column value. |
[in] | index_row | the row value. |
[in] | point_value | the value at that point. |