gtool5 Fortran 90/95 Library 1.0.0-rc5
日本語
Loading...
Searching...
No Matches
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)
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)
55 implicit none
56 type(gt_history), intent(in):: history
57 continue
58 result = historyinitialized( history )
59 end function historyinitialized1
60
logical function historyinitialized1(history)
logical function historyinitialized0(history)