DistributedStatistics Derived Type

type, public :: DistributedStatistics
sequence


Inherits

type~~distributedstatistics~~InheritsGraph type~distributedstatistics DistributedStatistics type~distributedinteger DistributedInteger type~distributedstatistics->type~distributedinteger num_cycles type~distributedreal64 DistributedReal64 type~distributedstatistics->type~distributedreal64 total, exclusive, min_cycle, max_cycle, mean_cycle, sum_square_deviation

Inherited by

type~~distributedstatistics~~InheritedByGraph type~distributedstatistics DistributedStatistics type~distributedmeter DistributedMeter type~distributedmeter->type~distributedstatistics statistics

Components

Type Visibility Attributes Name Initial
type(DistributedInteger), public :: num_cycles
type(DistributedReal64), public :: exclusive
type(DistributedReal64), public :: max_cycle
type(DistributedReal64), public :: mean_cycle
type(DistributedReal64), public :: min_cycle
type(DistributedReal64), public :: sum_square_deviation
type(DistributedReal64), public :: total

Source Code

   type :: DistributedStatistics
      sequence
      type(DistributedReal64) :: total
      type(DistributedReal64) :: exclusive
      type(DistributedReal64) :: min_cycle
      type(DistributedReal64) :: max_cycle
      type(DistributedReal64) :: mean_cycle
      type(DistributedReal64) :: sum_square_deviation
      type(DistributedInteger) :: num_cycles
   end type DistributedStatistics