Merge pull request #334 from smharper/implicits

Add 'implicit none' to modules
This commit is contained in:
Paul Romano 2014-10-24 22:56:27 -04:00
commit f5c06ba4e5
6 changed files with 11 additions and 0 deletions

View file

@ -23,6 +23,7 @@ module eigenvalue
reset_result
use tracking, only: transport
implicit none
private
public :: run_eigenvalue

View file

@ -3,6 +3,8 @@ module endf
use constants
use string, only: to_str
implicit none
contains
!===============================================================================

View file

@ -5,6 +5,8 @@ module energy_grid
use list_header, only: ListReal
use output, only: write_message
implicit none
contains
!===============================================================================

View file

@ -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()

View file

@ -3,6 +3,8 @@ module search
use constants
use error, only: fatal_error
implicit none
integer, parameter :: MAX_ITERATION = 64
interface binary_search

View file

@ -16,6 +16,8 @@ module tracking
use track_output, only: initialize_particle_track, write_particle_track, &
finalize_particle_track
implicit none
contains
!===============================================================================