Skip to content

Commit

Permalink
Update interface of prif_change_team based on latest design doc
Browse files Browse the repository at this point in the history
choices.
  • Loading branch information
ktras committed Dec 13, 2023
1 parent 4939823 commit b71366a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/caffeine/team_type_m.f90
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@ module subroutine prif_form_team(team_number, team, new_index, stat, errmsg, err
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine

module subroutine prif_change_team(team)
type(prif_team_type), target, intent(in) :: team
module subroutine prif_change_team(team, stat, errmsg, errmsg_alloc)
implicit none
type(prif_team_type), intent(in) :: team
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine

module subroutine prif_end_team()
Expand Down

0 comments on commit b71366a

Please sign in to comment.