Fixed minor bug from incorrect 'use'.

This commit is contained in:
Paul Romano 2011-04-12 22:27:10 +00:00
parent 0830adde61
commit 3a0fc12647
4 changed files with 12 additions and 4 deletions

View file

@ -1,3 +1,12 @@
2011-04-12 Paul Romano <romano7@mit.edu>
* ace.f90: Fixed bug relating to 'use' of str_to_real from wrong
module
* cross_section.f90: Fixed bug relating to 'use' of str_to_real
from wrong module
* fileio.f90: Fixed bug relating to 'use' of str_to_real from wrong
module
2011-04-01 Paul Romano <romano7@mit.edu>
* ace.f90: Added ability to read S(a,b) data through the

View file

@ -4,7 +4,7 @@ module ace
use output, only: error, message
use string, only: lower_case
use fileio, only: read_line, read_data, skip_lines
use string, only: split_string, str_to_real
use string, only: split_string
use data_structures, only: dict_create, dict_add_key, dict_has_key, &
& dict_get_key, dict_delete
use endf, only: reaction_name

View file

@ -1,7 +1,7 @@
module cross_section
use global
use string, only: split_string, str_to_real
use string, only: split_string
use data_structures, only: dict_create, dict_add_key, dict_get_key
use output, only: error, message
use types, only: xsData

View file

@ -2,8 +2,7 @@ module fileio
use global
use types, only: Cell, Surface, ExtSource, ListKeyValueCI
use string, only: split_string_wl, lower_case, str_to_real, split_string, &
& concatenate
use string, only: split_string_wl, lower_case, split_string, concatenate
use output, only: message, warning, error
use data_structures, only: dict_create, dict_add_key, dict_get_key, &
& dict_has_key, DICT_NULL, dict_keys, list_size