lms_time_type structure#

    struct lms_time_type{T}
      total::T
      setup::T
      form::T
      apply::T
      clock_total::T
      clock_setup::T
      clock_form::T
      clock_apply::T

detailed documentation#

time derived type as a Julia structure

components#

T total

total cpu time spent in the package

T setup

cpu time spent setting up space for the secant approximation

T form

cpu time spent updating the secant approximation

T apply

cpu time spent applying the secant approximation

T clock_total

total clock time spent in the package

T clock_setup

clock time spent setting up space for the secant approximation

T clock_form

clock time spent updating the secant approximation

T clock_apply

clock time spent applying the secant approximation