set_temperature Subroutine

private pure elemental subroutine set_temperature(this, temperature)

Type Bound

Translation

Arguments

Type IntentOptional Attributes Name
class(Translation), intent(inout) :: this
real, intent(in) :: temperature

Called by

proc~~set_temperature~3~~CalledByGraph proc~set_temperature~3 foropenai_Translation::Translation%set_temperature proc~set_translation_data foropenai_Translation::Translation%set_Translation_data proc~set_translation_data->proc~set_temperature~3 program~test_translation test_Translation program~test_translation->proc~set_translation_data

Source Code

   elemental pure subroutine set_temperature(this, temperature)
      class(Translation), intent(inout) :: this
      real,               intent(in)    :: temperature
      this%temperature = temperature
   end subroutine set_temperature