Remove an edge from a dag.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(dag), | intent(inout) | :: | me | |||
integer(kind=ip), | intent(in) | :: | ivertex |
vertex number |
||
integer(kind=ip), | intent(in) | :: | iedge |
the edge to remove |
subroutine dag_remove_edge(me,ivertex,iedge) class(dag),intent(inout) :: me integer(ip),intent(in) :: ivertex !! vertex number integer(ip),intent(in) :: iedge !! the edge to remove call me%vertices(ivertex)%remove_edge(iedge) end subroutine dag_remove_edge