mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
Merge pull request #334 from smharper/implicits
Add 'implicit none' to modules
This commit is contained in:
commit
f5c06ba4e5
6 changed files with 11 additions and 0 deletions
|
|
@ -23,6 +23,7 @@ module eigenvalue
|
|||
reset_result
|
||||
use tracking, only: transport
|
||||
|
||||
implicit none
|
||||
private
|
||||
public :: run_eigenvalue
|
||||
|
||||
|
|
|
|||
|
|
@ -3,6 +3,8 @@ module endf
|
|||
use constants
|
||||
use string, only: to_str
|
||||
|
||||
implicit none
|
||||
|
||||
contains
|
||||
|
||||
!===============================================================================
|
||||
|
|
|
|||
|
|
@ -5,6 +5,8 @@ module energy_grid
|
|||
use list_header, only: ListReal
|
||||
use output, only: write_message
|
||||
|
||||
implicit none
|
||||
|
||||
contains
|
||||
|
||||
!===============================================================================
|
||||
|
|
|
|||
|
|
@ -11,6 +11,8 @@ module fixed_source
|
|||
use tally, only: synchronize_tallies, setup_active_usertallies
|
||||
use tracking, only: transport
|
||||
|
||||
implicit none
|
||||
|
||||
contains
|
||||
|
||||
subroutine run_fixedsource()
|
||||
|
|
|
|||
|
|
@ -3,6 +3,8 @@ module search
|
|||
use constants
|
||||
use error, only: fatal_error
|
||||
|
||||
implicit none
|
||||
|
||||
integer, parameter :: MAX_ITERATION = 64
|
||||
|
||||
interface binary_search
|
||||
|
|
|
|||
|
|
@ -16,6 +16,8 @@ module tracking
|
|||
use track_output, only: initialize_particle_track, write_particle_track, &
|
||||
finalize_particle_track
|
||||
|
||||
implicit none
|
||||
|
||||
contains
|
||||
|
||||
!===============================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue