Commit e74720e5 authored by Graham, Aaron's avatar Graham, Aaron Committed by Stimpson, Shane G
Browse files

Fix indentations (#220)

* Address code that does not adhere to the code standard

Fixes 3 things:
1. Removes author, data, revision, and dependencies from module headers
2. Removes unneeded indentation inside MODULE statments
3. Removes unneeded indentation inside module CONTAINS statements

* Fix coinuation line indentations

* Fix SELECTTYPE and SELECTCASE indentations

* Fix indentation for PROGRAM and MODULE blocks in unit tests

* Fix continuation lines and SELECT TYPE/CASE in unit tests
parent 48918c8a
Loading
Loading
Loading
Loading
+3834 −3864
Original line number Diff line number Diff line
@@ -41,10 +41,6 @@
!> memory used on all processes they will need to perform a REDUCE operation
!> collecting the sum of all values of @ref Allocs::Alloc_nbytes "Alloc_nbytes".
!>
!> @par Module Dependencies
!>  - @ref IntrType "IntrType": @copybrief IntrType
!>  - @ref ExceptionHandler "ExceptionHandler": @copybrief ExceptionHandler
!>
!> @par EXAMPLES
!> @code
!> PROGRAM ExampleAllocs
@@ -77,32 +73,6 @@
!>
!> END PROGRAM
!> @endcode
!>
!> @author Brendan Kochunas
!>   @date 03/19/2009
!>
!> @par Revisions:
!> (01/17/2011) - Brendan Kochunas
!>   - Added documentation for doxygen. Set private public access to variables
!>     and routines. Added module error handling and support for up to rank 7
!>     arrays of all data types.
!> @par
!> (04/26/2011) - Brendan Kochunas
!>   - Added explicit routines for INTEGER(4) and INTEGER(8).
!>   - Changed the naming of public members to include "Allocs" to avoid
!>     conflicts in global name space.
!>   - Added @ref Allocs::demalloc "demalloc" interface for deallocating pointer
!>     arrays.
!>   - Changed query methods from subroutines to functions and added enumerated
!>     data types for return string lengths to list of public members.
!>   - Put under test.
!> @par
!> (06/22/2011) - Brendan Kochunas
!>   - Removed dependency on ErrorMod module, and replaced with ExceptionHandler
!>   - Removed SetAllocsErrorMode, getAllcosErrorCode, getAllocsErrorMessage
!>   - Removed private variables errFileUnit, ALLOC_ERRMESG_LENGTH, errorMode,
!>     and errorCode. alloc_mesg moved to AllocsError
!>   - Updated documentation and format.
!++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++!
MODULE Allocs

+181 −194
Original line number Diff line number Diff line
@@ -11,23 +11,10 @@
!> Currently supported TPLs include:
!>  - Trilinos
!>
!> @par Module Dependencies
!>  - @ref IntrType "IntrType": @copybrief IntrType
!>  - @ref BLAS "BLAS": @copybrief BLAS
!>  - @ref Times "Times": @copybrief Times
!>  - @ref ExceptionHandler "ExceptionHandler": @copybrief ExceptionHandler
!>  - @ref ParameterLists "ParameterLists": @copybrief ParameterLists
!>  - @ref ParallelEnv "ParallelEnv": @copybrief ParallelEnv
!>  - @ref VectorTypes "VectorTypes": @copybrief VectorTypes
!>
!> @par EXAMPLES
!> @code
!>
!> @endcode
!>
!> @author Ben Collins
!>   @date 07/30/2016
!>
!++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++!
MODULE AndersonAccelerationTypes
USE IntrType
+762 −769
Original line number Diff line number Diff line
@@ -10,13 +10,6 @@
!>        Examples include searching for an index in a 1-D real array given a
!>        position, converting an index from one 1-D real array to another 1-D
!>        real array, along with several others.
!>
!> @par Module Dependencies
!>  - @ref IntrType "IntrType": @copybrief IntrType
!>
!> @author Dan Jabaay
!>    @date 04/29/2014
!>
!++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++!
MODULE ArrayUtils

+4 −12
Original line number Diff line number Diff line
@@ -9,14 +9,6 @@
!> @brief The global module for collecting all public members of
!> other BLAS modules. This is the module that should be used elsewhere
!> in the code.
!>
!> @par Module Dependencies
!>  - @ref BLAS1 "BLAS1": @copybrief BLAS1
!>  - @ref BLAS2 "BLAS2": @copybrief BLAS2
!>  - @ref BLAS3 "BLAS3": @copybrief BLAS3
!>
!> @author Brendan Kochunas
!>    @date 03/16/2012
!++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++!
MODULE BLAS

+2125 −2131
Original line number Diff line number Diff line
@@ -26,15 +26,9 @@
!>  - @ref BLAS1::BLAS_scal "BLAS_scal": @copybrief BLAS1::BLAS_scal
!>  - @ref BLAS1::BLAS_swap "BLAS_asum": @copybrief BLAS1::BLAS_swap
!>
!> @par Module Dependencies
!>  - @ref IntrType "IntrType": @copybrief IntrType
!>
!> @par EXAMPLES
!> @code
!> @endcode
!>
!> @author Brendan Kochunas
!>    @date 03/08/2012
!++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++!
MODULE BLAS1

Loading