Loading...
Searching...
No Matches
Functions/Subroutines
historyinitialized.f90 File Reference

Go to the source code of this file.

Functions/Subroutines

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

Function/Subroutine Documentation

◆ historyinitialized0()

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

Definition at line 10 of file historyinitialized.f90.

11 !
12 ! *history* が初期設定されている場合には .true. が,
13 ! 初期設定されていない場合には .false. が返ります.
14 !
15 ! If *history* is initialized, .true. is returned.
16 ! If *history* is not initialized, .false. is returned.
17 !
19 implicit none
20 type(GT_HISTORY), intent(in):: history
21 continue
22 result = history % initialized

◆ historyinitialized1()

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

Definition at line 27 of file historyinitialized.f90.

28 !
29 ! 使用方法は HistoryInitialized と同様です.
30 !
31 ! Usage is same as "HistoryInitialized".
32 !
33 !--
34 ! 総称名 initialized として提供するための関数です.
35 ! 機能は HistoryInitialized1 と同じです.
36 !++
38 use gtool_history_generic, only: historyinitialized
39 implicit none
40 type(GT_HISTORY), intent(in):: history
41 continue
42 result = historyinitialized( history )