-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Solved] problems compiling FEHM with intel visual fortran #22
Comments
Hi Jac, try commenting out
|
Hi and thank you for your support thanks |
Great! Thanks for posting your solution. We'll include it in build documentation. I'm marking this as closed, then. Please re-open if any additional issues related to this topic appear. |
Hello
I am trying to build FEHM with intel Visual fortran under windows.
I get a large number of errors of the same type around this portion of code
c add coding to save upwind position
if(iad.le.iad_up) then
fid=0.5
axyd=t8(neighc)
if(axyd.lt.0.0) fid=dnwgt
if(axyd.gt.0.0) fid=upwgt
t9(neighc)=fid
c
call setbit(nbits,neighc,upwind_l(iz4m1),fid)
c
else
if(bit(nbits,neighc,upwind_l(iz4m1))) then
t9(neighc)=1.0
else
t9(neighc)=0.0
endif
endif
the error arises because subroutine setbit accepts integers only but the array upwind_l if real.
I saw that in some routines any reference to setbit was commented
Is it ok to do so ?
thanks
jac
The text was updated successfully, but these errors were encountered: