Loading...
Searching...
No Matches
historyvarinfoinitialized.f90
Go to the documentation of this file.
1!= GT_HISTORY_VARINFO の初期設定チェッカ
2!= Checker of initialization of GT_HISTORY_VARINFO
3!
4! Authors:: Yasuhiro MORIKAWA
5! Version:: $Id: historyvarinfoinitialized.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 historyvarinfoinitialized0( varinfo ) result(result)
11 !
12 ! *varinfo* が初期設定されている場合には .true. が,
13 ! 初期設定されていない場合には .false. が返ります.
14 !
15 ! If *varinfo* is initialized, .true. is returned.
16 ! If *varinfo* is not initialized, .false. is returned.
17 !
19 implicit none
20 type(gt_history_varinfo),intent(in) :: varinfo
21 continue
22 result = varinfo % initialized
logical function historyvarinfoinitialized0(varinfo)