You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello
I have built lagrit under windows with MSVC/IFORT, using the lagrit-windows distribution.
When I try to run the executable - calling the initlagrit
partname='global_lg'
number_of_globals=7
call mfindbk('global_name',partname,ipglobal_name,len,ierror)
i get ierror =-16
because calling
call mm_index_by_name (aname, pname, index)
returns index =0
inside mm_index_by_name
subroutine mm_index_by_name (aname, pname, index)
implicit none
character*(*) aname, pname
integer index ,i
include 'mm2000.h'
index = first
do i=1,100000000
if (index .lt. 1) then
index = 0
return
end if
if (aname .eq. ad_name(1,index) .and.
& pname .eq. ad_name(2,index)) return
index = link(index)
end do
return
end
the variable first is equal to zero and this is what causes the problem
where is "first" initialized ?
best
jac
The text was updated successfully, but these errors were encountered:
Hi Jacob,
I see a few messages from you that are coming from github.
I am not sure of your current status or how to respond, and the dev team is not always on github.
Can you send your questions to this email at ***@***.***
and also include your email address?
Terry A. Miller
Research Technologist EES-16
https://meshing.lanl.gov/<https://d.lanl.gov/>
lagrit.lanl.gov
Pronouns: she/her
Mobile: +1 (505) 412-3626
Hello
I have built lagrit under windows with MSVC/IFORT, using the lagrit-windows distribution.
When I try to run the executable - calling the initlagrit
partname='global_lg'
number_of_globals=7
call mfindbk('global_name',partname,ipglobal_name,len,ierror)
i get ierror =-16
because calling
call mm_index_by_name (aname, pname, index)
returns index =0
inside mm_index_by_name
the variable first is equal to zero and this is what causes the problem
where is "first" initialized ?
best
jac
The text was updated successfully, but these errors were encountered: