historyinitialized.f90
Go to the documentation of this file.
1 != 初期設定チェッカ
2 != Checker of initialization
3 !
4 ! Authors:: Yasuhiro MORIKAWA
5 ! Version:: $Id: historyinitialized.f90,v 1.1 2009-05-06 14:23:12 morikawa Exp $
6 ! Tag Name:: $Name: $
7 ! Copyright:: Copyright (C) GFD Dennou Club, 2004-2009. All rights reserved.
8 ! License:: See COPYRIGHT[link:../../../COPYRIGHT]
9 !
10  logical function historyinitialized0( history ) result(result)
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
23  end function historyinitialized0
24 
25  !-------------------------------------------------------------------
26 
27  logical function historyinitialized1( history ) result(result)
28  !
29  ! 使用方法は HistoryInitialized と同様です.
30  !
31  ! Usage is same as "HistoryInitialized".
32  !
33  !--
34  ! 総称名 initialized として提供するための関数です.
35  ! 機能は HistoryInitialized1 と同じです.
36  !++
39  implicit none
40  type(gt_history), intent(in):: history
41  continue
42  result = historyinitialized( history )
43  end function historyinitialized1
44 
logical function historyinitialized0(history)
logical function historyinitialized1(history)