C_ommp_set_verbose Subroutine

public subroutine C_ommp_set_verbose(verb) bind(c, name="0")

Set the verbosity level of the library to verb

Arguments

Type IntentOptional Attributes Name
integer(kind=ommp_integer), intent(in), value :: verb

Requested verbosityi of library


Calls

proc~~c_ommp_set_verbose~~CallsGraph proc~c_ommp_set_verbose C_ommp_set_verbose proc~set_verbosity set_verbosity proc~c_ommp_set_verbose->proc~set_verbosity

Contents

Source Code


Source Code

        subroutine C_ommp_set_verbose(verb) bind(c, name='ommp_set_verbose')
            !! Set the verbosity level of the library to verb
            implicit none 

            integer(ommp_integer), intent(in), value :: verb
            
            !! Requested verbosityi of library
            call ommp_set_verbose(verb)
        end subroutine C_ommp_set_verbose