MultiStatisticNote

data class MultiStatisticNote(val statistics: List<Statistic<Any?>>, val ownerName: String, val iteration: Int) : StatisticNote<Any?>

MultiStatisticNote - multi record statistics.

Unlike SingleStatisticNote, it collects several statistics and creates one general record.

See also

Constructors

Link copied to clipboard
constructor(statistics: List<Statistic<Any?>>, ownerName: String, iteration: Int)

Properties

Link copied to clipboard
open override val iteration: Int

Iteration (GA.iteration on which the calculation was performed)

Link copied to clipboard
open override val ownerName: String

Owner's name (name of population on which the calculation was performed)

Link copied to clipboard
open override val statistic: Statistic<Any?>

Statistical data (calculated statistical information)

Link copied to clipboard

Functions

Link copied to clipboard
open override fun toString(): String