Definition at line 192 of file dc_clock.f90.
◆ dcclockgetd()
subroutine dc_clock::get::dcclockgetd |
( |
type(clock), intent(in) |
clk, |
|
|
real(dp), intent(out) |
sec, |
|
|
logical, intent(out), optional |
err |
|
) |
| |
|
private |
Definition at line 385 of file dc_clock.f90.
401 type(clock),
intent(in):: clk
402 real(DP),
intent(out):: sec
403 logical,
intent(out),
optional:: err
404 character(STRING):: cause_c
406 character(*),
parameter:: subname =
'DCClockGetD' 408 call beginsub(subname)
411 if (.not. clk % initialized)
then 412 call messagenotify(
'W', subname,
'Call Create before Get in dc_clock.')
413 call dbgmessage(
'Ignored because input argument was not initialized.')
417 sec = clk % elapsed_time
418 call dbgmessage(
'name=%c, return sec=<%f>', &
419 & c1=trim(clk % name), d=(/sec/))
integer, parameter, public dc_enotinit
subroutine, public storeerror(number, where, err, cause_c, cause_i)
integer, parameter, public dc_noerr
integer, parameter, public dp
倍精度実数型変数
◆ dcclockgetr()
subroutine dc_clock::get::dcclockgetr |
( |
type(clock), intent(in) |
clk, |
|
|
real, intent(out) |
sec, |
|
|
logical, intent(out), optional |
err |
|
) |
| |
|
private |
Definition at line 346 of file dc_clock.f90.
361 type(clock),
intent(in):: clk
362 real,
intent(out):: sec
363 logical,
intent(out),
optional:: err
364 character(STRING):: cause_c
366 character(*),
parameter:: subname =
'DCClockGetR' 368 call beginsub(subname)
371 if (.not. clk % initialized)
then 372 call messagenotify(
'W', subname,
'Call Create before Get in dc_clock.')
373 call dbgmessage(
'Ignored because input argument was not initialized.')
377 sec = clk % elapsed_time
378 call dbgmessage(
'name=%c, return sec=<%r>', &
379 & c1=trim(clk % name), r=(/sec/))
integer, parameter, public dc_enotinit
subroutine, public storeerror(number, where, err, cause_c, cause_i)
integer, parameter, public dc_noerr
integer, parameter, public dp
倍精度実数型変数
The documentation for this interface was generated from the following file: