This is for Fortran, which doesn't have unsigned long.
| 361 | |
| 362 | // This is for Fortran, which doesn't have unsigned long. |
| 363 | amrex::Long amrex_random_int (amrex::Long n) |
| 364 | { |
| 365 | return static_cast<amrex::Long>(amrex::Random_int(static_cast<amrex::ULong>(n))); |
| 366 | } |
| 367 | } |
nothing calls this directly
no test coverage detected