DAMASK_EICMD/src/test/test_math.f90

18 lines
213 B
Fortran
Raw Normal View History

2023-08-11 13:31:55 +05:30
module test_math
use math
implicit none(type,external)
private
public :: test_math_run
contains
subroutine test_math_run()
call math_selfTest()
end subroutine test_math_run
end module test_math