Skip to content

Commit

Permalink
Update check_structures.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Jan 28, 2025
1 parent dbd6b55 commit d0f6a5e
Show file tree
Hide file tree
Showing 10 changed files with 43 additions and 43 deletions.
10 changes: 5 additions & 5 deletions src/arc/arc.F90
Original file line number Diff line number Diff line change
Expand Up @@ -391,24 +391,24 @@ MODULE GALAHAD_ARC_precision

! the total CPU time spent in the package

REAL :: total = 0.0
REAL ( KIND = sp_ ) :: total = 0.0

! the CPU time spent preprocessing the problem

REAL :: preprocess = 0.0
REAL ( KIND = sp_ ) :: preprocess = 0.0

! the CPU time spent analysing the required matrices prior to
! factorization

REAL :: analyse = 0.0
REAL ( KIND = sp_ ) :: analyse = 0.0

! the CPU time spent factorizing the required matrices

REAL :: factorize = 0.0
REAL ( KIND = sp_ ) :: factorize = 0.0

! the CPU time spent computing the search direction

REAL :: solve = 0.0
REAL ( KIND = sp_ ) :: solve = 0.0

! the total clock time spent in the package

Expand Down
6 changes: 3 additions & 3 deletions src/bgo/bgo.F90
Original file line number Diff line number Diff line change
Expand Up @@ -192,15 +192,15 @@ MODULE GALAHAD_BGO_precision

! the total CPU time spent in the package

REAL :: total = 0.0
REAL ( KIND = sp_ ) :: total = 0.0

! the CPU time spent performing univariate global optimization

REAL :: univariate_global = 0.0
REAL ( KIND = sp_ ) :: univariate_global = 0.0

! the CPU time spent performing multivariate local optimization

REAL :: multivariate_local = 0.0
REAL ( KIND = sp_ ) :: multivariate_local = 0.0

! the total clock time spent in the package

Expand Down
10 changes: 5 additions & 5 deletions src/bnls/bnls.F90
Original file line number Diff line number Diff line change
Expand Up @@ -399,23 +399,23 @@ MODULE GALAHAD_BNLS_precision

! the total CPU time spent in the package

REAL :: total = 0.0
REAL ( KIND = sp_ ) :: total = 0.0

! the CPU time spent preprocessing the problem

REAL :: preprocess = 0.0
REAL ( KIND = sp_ ) :: preprocess = 0.0

! the CPU time spent analysing the required matrices prior to factorization

REAL :: analyse = 0.0
REAL ( KIND = sp_ ) :: analyse = 0.0

! the CPU time spent factorizing the required matrices

REAL :: factorize = 0.0
REAL ( KIND = sp_ ) :: factorize = 0.0

! the CPU time spent computing the search direction

REAL :: solve = 0.0
REAL ( KIND = sp_ ) :: solve = 0.0

! the total clock time spent in the package

Expand Down
8 changes: 4 additions & 4 deletions src/bqp/bqp.F90
Original file line number Diff line number Diff line change
Expand Up @@ -222,19 +222,19 @@ MODULE GALAHAD_BQP_precision

! total time

REAL :: total = 0.0
REAL ( KIND = sp_ ) :: total = 0.0

! time for the analysis phase

REAL :: analyse = 0.0
REAL ( KIND = sp_ ) :: analyse = 0.0

! time for the factorization phase

REAL :: factorize = 0.0
REAL ( KIND = sp_ ) :: factorize = 0.0

! time for the linear solution phase

REAL :: solve = 0.0
REAL ( KIND = sp_ ) :: solve = 0.0
END TYPE BQP_time_type

! - - - - - - - - - - - - - - - - - - - - - - -
Expand Down
10 changes: 5 additions & 5 deletions src/nls/nls.F90
Original file line number Diff line number Diff line change
Expand Up @@ -399,23 +399,23 @@ MODULE GALAHAD_NLS_precision

! the total CPU time spent in the package

REAL :: total = 0.0
REAL ( KIND = sp_ ) :: total = 0.0

! the CPU time spent preprocessing the problem

REAL :: preprocess = 0.0
REAL ( KIND = sp_ ) :: preprocess = 0.0

! the CPU time spent analysing the required matrices prior to factorization

REAL :: analyse = 0.0
REAL ( KIND = sp_ ) :: analyse = 0.0

! the CPU time spent factorizing the required matrices

REAL :: factorize = 0.0
REAL ( KIND = sp_ ) :: factorize = 0.0

! the CPU time spent computing the search direction

REAL :: solve = 0.0
REAL ( KIND = sp_ ) :: solve = 0.0

! the total clock time spent in the package

Expand Down
12 changes: 6 additions & 6 deletions src/psls/psls.F90
Original file line number Diff line number Diff line change
Expand Up @@ -221,27 +221,27 @@ MODULE GALAHAD_PSLS_precision

! total time

REAL :: total = 0.0
REAL ( KIND = sp_ ) :: total = 0.0

! time to assemble the preconditioner prior to factorization

REAL :: assemble = 0.0
REAL ( KIND = sp_ ) :: assemble = 0.0

! time for the analysis phase

REAL :: analyse = 0.0
REAL ( KIND = sp_ ) :: analyse = 0.0

! time for the factorization phase

REAL :: factorize = 0.0
REAL ( KIND = sp_ ) :: factorize = 0.0

! time for the linear solution phase

REAL :: solve = 0.0
REAL ( KIND = sp_ ) :: solve = 0.0

! time to update the factorization

REAL :: update = 0.0
REAL ( KIND = sp_ ) :: update = 0.0

! total clock time spent in the package

Expand Down
8 changes: 4 additions & 4 deletions src/slls/slls.F90
Original file line number Diff line number Diff line change
Expand Up @@ -262,19 +262,19 @@ MODULE GALAHAD_SLLS_precision

! total time

REAL :: total = 0.0
REAL ( KIND = sp_ ) :: total = 0.0

! time for the analysis phase

REAL :: analyse = 0.0
REAL ( KIND = sp_ ) :: analyse = 0.0

! time for the factorization phase

REAL :: factorize = 0.0
REAL ( KIND = sp_ ) :: factorize = 0.0

! time for the linear solution phase

REAL :: solve = 0.0
REAL ( KIND = sp_ ) :: solve = 0.0
END TYPE SLLS_time_type

! - - - - - - - - - - - - - - - - - - - - - - -
Expand Down
10 changes: 5 additions & 5 deletions src/trb/trb.F90
Original file line number Diff line number Diff line change
Expand Up @@ -399,23 +399,23 @@ MODULE GALAHAD_TRB_precision

! the total CPU time spent in the package

REAL :: total = 0.0
REAL ( KIND = sp_ ) :: total = 0.0

! the CPU time spent preprocessing the problem

REAL :: preprocess = 0.0
REAL ( KIND = sp_ ) :: preprocess = 0.0

! the CPU time spent analysing the required matrices prior to factorization

REAL :: analyse = 0.0
REAL ( KIND = sp_ ) :: analyse = 0.0

! the CPU time spent factorizing the required matrices

REAL :: factorize = 0.0
REAL ( KIND = sp_ ) :: factorize = 0.0

! the CPU time spent computing the search direction

REAL :: solve = 0.0
REAL ( KIND = sp_ ) :: solve = 0.0

! the total clock time spent in the package

Expand Down
10 changes: 5 additions & 5 deletions src/tru/tru.F90
Original file line number Diff line number Diff line change
Expand Up @@ -387,23 +387,23 @@ MODULE GALAHAD_TRU_precision

! the total CPU time spent in the package

REAL :: total = 0.0
REAL ( KIND = sp_ ) :: total = 0.0

! the CPU time spent preprocessing the problem

REAL :: preprocess = 0.0
REAL ( KIND = sp_ ) :: preprocess = 0.0

! the CPU time spent analysing the required matrices prior to factorization

REAL :: analyse = 0.0
REAL ( KIND = sp_ ) :: analyse = 0.0

! the CPU time spent factorizing the required matrices

REAL :: factorize = 0.0
REAL ( KIND = sp_ ) :: factorize = 0.0

! the CPU time spent computing the search direction

REAL :: solve = 0.0
REAL ( KIND = sp_ ) :: solve = 0.0

! the total clock time spent in the package

Expand Down
2 changes: 1 addition & 1 deletion src/ugo/ugo.F90
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ MODULE GALAHAD_UGO_precision

! the total CPU time spent in the package

REAL :: total = 0.0
REAL ( KIND = sp_ ) :: total = 0.0

! the total clock time spent in the package

Expand Down

0 comments on commit d0f6a5e

Please sign in to comment.