FV3 Bundle
FitCoeff_Equal.inc
Go to the documentation of this file.
1  LOGICAL :: is_equal
2 
3  ! Set up
4  is_equal = .FALSE.
5 
6  ! Check the object association status
7  IF ( (.NOT. FitCoeff_Associated(x)) .OR. &
8  (.NOT. FitCoeff_Associated(y)) ) RETURN
9 
10  ! Check contents
11  ! ...Release/version info
12  IF ( (x%Release /= y%Release) .OR. &
13  (x%Version /= y%Version) ) RETURN
14  ! ...Dimensions
15  IF ( ALL(x%Dimensions /= y%Dimensions ) ) RETURN
16  ! ...Arrays
17  IF ( ALL(x%C .EqualTo. y%C) ) &
18  is_equal = .TRUE.
integer, parameter, public up
character(len=128) version
subroutine, public info(self)