eqp_time_type structure#

    struct eqp_time_type{T}
      total::T
      find_dependent::T
      factorize::T
      solve::T
      solve_inter::T
      clock_total::T
      clock_find_dependent::T
      clock_factorize::T
      clock_solve::T

detailed documentation#

time derived type as a Julia structure

components#

T total

the total CPU time spent in the package

T find_dependent

the CPU time spent detecting linear dependencies

T factorize

the CPU time spent factorizing the required matrices

T solve

the CPU time spent computing the search direction

T solve_inter

see solve

T clock_total

the total clock time spent in the package

T clock_find_dependent

the clock time spent detecting linear dependencies

T clock_factorize

the clock time spent factorizing the required matrices

T clock_solve

the clock time spent computing the search direction