cro_time_type structure#

    struct cro_time_type{T}
      total::Float32
      analyse::Float32
      factorize::Float32
      solve::Float32
      clock_total::T
      clock_analyse::T
      clock_factorize::T
      clock_solve::T

detailed documentation#

time derived type as a Julia structure

components#

Float32 total

the total CPU time spent in the package

Float32 analyse

the CPU time spent reordering the matrix prior to factorization

Float32 factorize

the CPU time spent factorizing the required matrices

Float32 solve

the CPU time spent computing corrections

T clock_total

the total clock time spent in the package

T clock_analyse

the clock time spent analysing the required matrices prior to factorizat

T clock_factorize

the clock time spent factorizing the required matrices

T clock_solve

the clock time spent computing corrections