ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/mdtools/md_code/generic_list_functions.i90
(Generate patch)

Comparing trunk/mdtools/md_code/generic_list_functions.i90 (file contents):
Revision 252 by chuckv, Tue Jan 28 22:16:55 2003 UTC vs.
Revision 254 by chuckv, Thu Jan 30 20:03:37 2003 UTC

# Line 46 | Line 46 | subroutine find_atype(ident,this_list, atype)
46    if (.not. associated(this_list)) return
47  
48    temp => this_list
49 <
49 >
50    do while (associated(temp))
51       if (temp%atype_ident == ident) then
52          atype => temp
53          exit
54       endif
55 +
56       temp => temp%next
57    end do
58  
59   end subroutine find_atype
60  
61   subroutine create_identPtrList(ident,this_list,identPtrList,status)
62 +  use definitions
63    integer, dimension(:) :: ident
64    type(generic_atype), pointer :: this_list
65    type(generic_atype), pointer :: tmpPtr

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines