hstnmlinfoinitialized.f90
Go to the documentation of this file.
1 != GTHST_NMLINFO 型の変数初期設定チェック
2 != Checker of initialization of "GTHST_NMLINFO"
3 !
4 ! Authors:: Yasuhiro MORIKAWA
5 ! Version:: $Id: hstnmlinfoinitialized.f90,v 1.1 2009-05-11 15:15:15 morikawa Exp $
6 ! Tag Name:: $Name: $
7 ! Copyright:: Copyright (C) GFD Dennou Club, 2007-2009. All rights reserved.
8 ! License:: See COPYRIGHT[link:../../../COPYRIGHT]
9 !
10  logical function hstnmlinfoinitialized( gthstnml ) result(result)
11  !
12  ! *gthstnml* が初期設定されている場合には .true. が,
13  ! 初期設定されていない場合には .false. が返ります.
14  !
15  ! If *gthstnml* is initialized, .true. is returned.
16  ! If *gthstnml* is not initialized, .false. is returned.
17  !
19  implicit none
20  type(gthst_nmlinfo), intent(in):: gthstnml
21  continue
22  result = gthstnml % initialized
23  end function hstnmlinfoinitialized
logical function hstnmlinfoinitialized(gthstnml)