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

Add output to usurlo

parent 128265a9
Branches
No related tags found
No related merge requests found
...@@ -15,6 +15,9 @@ double precision function usurlo(dq, wn) ...@@ -15,6 +15,9 @@ double precision function usurlo(dq, wn)
double precision, intent(in out) :: dq double precision, intent(in out) :: dq
double precision, intent(in out) :: wn 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 usurlo = 1.0d0
return return
end function usurlo end function usurlo
...@@ -15,6 +15,9 @@ double precision function usurlo(dq, wn) ...@@ -15,6 +15,9 @@ double precision function usurlo(dq, wn)
double precision, intent(in out) :: dq double precision, intent(in out) :: dq
double precision, intent(in out) :: wn 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 usurlo = 1.0d0
return return
end function usurlo end function usurlo
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment