gtool5 Fortran 90/95 Library 1.0.0-rc5
日本語
Loading...
Searching...
No Matches
Functions/Subroutines
historyinitialized.f90 File Reference

Checker of initialization of GT_HISTORY . More...

Go to the source code of this file.

Functions/Subroutines

logical function historyinitialized0 (history)
 
logical function historyinitialized1 (history)
 

Detailed Description

Checker of initialization of GT_HISTORY

.

Author
Yasuhiro MORIKAWA

Definition in file historyinitialized.f90.

Function/Subroutine Documentation

◆ historyinitialized0()

logical function historyinitialized0 ( type(gt_history), intent(in)  history)

Check if GT_HISTORY is initialized

Returns .true. if history is initialized, .false. otherwise.

Parameters
[in]historyHistory handle
Returns
.true. if initialized

Definition at line 32 of file historyinitialized.f90.

34 implicit none
35 type(GT_HISTORY), intent(in):: history
36 continue
37 result = history % initialized

◆ historyinitialized1()

logical function historyinitialized1 ( type(gt_history), intent(in)  history)

Check if GT_HISTORY is initialized (generic interface)

Usage is same as HistoryInitialized.

Definition at line 52 of file historyinitialized.f90.

55 implicit none
56 type(GT_HISTORY), intent(in):: history
57 continue
58 result = historyinitialized( history )