gtool5 Fortran 90/95 ライブラリ
1.0.0-rc5
English
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
Loading...
Searching...
No Matches
gtool
gtool_history
historyinitialized.f90
Go to the documentation of this file.
1
!> @file historyinitialized.f90
2
!>
3
!> @author Yasuhiro MORIKAWA
4
!> @copyright Copyright (C) GFD Dennou Club, 2004-2026. All rights reserved. <br/>
5
!> License is BSD-2-Clause. See [COPYRIGHT](@ref COPYRIGHT) in detail
6
!>
7
!> @en
8
!> @brief Checker of initialization of GT_HISTORY
9
!> @enden
10
!>
11
!> @ja
12
!> @brief GT_HISTORY の初期設定チェッカ
13
!> @endja
14
15
!>
16
!> @en
17
!> @brief Check if GT_HISTORY is initialized
18
!>
19
!> Returns .true. if history is initialized, .false. otherwise.
20
!> @param[in] history History handle
21
!> @return .true. if initialized
22
!> @enden
23
!> @ja
24
!> @brief GT_HISTORY の初期設定チェック
25
!>
26
!> history が初期設定されている場合には .true. が、
27
!> 初期設定されていない場合には .false. が返ります。
28
!> @param[in] history ヒストリーハンドル
29
!> @return 初期設定済みなら .true.
30
!> @endja
31
!>
32
logical
function
historyinitialized0
( history )
result
(result)
33
use
gtool_history_types
,
only
:
gt_history
34
implicit none
35
type
(
gt_history
),
intent(in)
:: history
36
continue
37
result = history % initialized
38
end function
historyinitialized0
39
40
!-------------------------------------------------------------------
41
42
!> @en
43
!> @brief Check if GT_HISTORY is initialized (generic interface)
44
!>
45
!> Usage is same as HistoryInitialized.
46
!> @enden
47
!> @ja
48
!> @brief GT_HISTORY の初期設定チェック (総称インターフェース)
49
!>
50
!> 使用方法は HistoryInitialized と同様です。
51
!> @endja
52
logical
function
historyinitialized1
( history )
result
(result)
53
use
gtool_history_types
,
only
:
gt_history
54
use
gtool_history_generic
,
only
:
historyinitialized
55
implicit none
56
type
(
gt_history
),
intent(in)
:: history
57
continue
58
result =
historyinitialized
( history )
59
end function
historyinitialized1
60
historyinitialized1
logical function historyinitialized1(history)
Definition
historyinitialized.f90:53
historyinitialized0
logical function historyinitialized0(history)
Definition
historyinitialized.f90:33
gtool_history_generic::historyinitialized
Definition
gtool_history_generic.f90:164
gtool_history_generic
Definition
gtool_history_generic.f90:31
gtool_history_types
Definition
gtool_history_types.f90:38
gtool_history_types::gt_history
Definition
gtool_history_types.f90:78
Generated on
for gtool5 Fortran 90/95 ライブラリ by
1.15.0