Skip to content
Snippets Groups Projects
Commit dc36a1e5 authored by kamischi's avatar kamischi
Browse files

Add output to usurlo

parent 128265a9
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,9 @@ double precision function usurlo(dq, wn)
double precision, intent(in out) :: dq
double precision, intent(in out) :: wn
if ((wn .GT. 0).AND.(dq.GT.0)) then
write(*,*) 'hello, here is the user loss function'
endif
usurlo = 1.0d0
return
end function usurlo
......@@ -15,6 +15,9 @@ double precision function usurlo(dq, wn)
double precision, intent(in out) :: dq
double precision, intent(in out) :: wn
if ((wn .GT. 0).AND.(dq.GT.0)) then
write(*,*) 'hello, here is the user loss function'
endif
usurlo = 1.0d0
return
end function usurlo
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment