Files
witness_seed/fortran/witness_seed_3.0/src/kairos.f90
T

10 lines
250 B
Fortran

module kairos
use iso_fortran_env, only: real64
implicit none
contains
subroutine update_coherence(I, phase)
real(real64), intent(inout) :: I(:)
real(real64), intent(in) :: phase
I = I * cos(phase)
end subroutine
end module kairos