build Container Folder Name
fun buildContainerFolderName(datasetName: String, correlationMethod: String, numberOfTopics: Int, numberOfSystems: Int, populationSize: Int, numberOfIterations: Int, numberOfRepetitions: Int, expansionCoefficient: Int, includePercentiles: Boolean, percentiles: List<Int>): String
Builds a container folder name (target-agnostic) by appending a run timestamp to the parameter token produced by buildParamsToken.
Shape:
<dataset>-<correlation>-top<T>-sys<S>-po<P>-i<I>-r<R>-mx<M>[ -peA_B ]-time<RUN_TIMESTAMP>Content copied to clipboard
Return
A target-agnostic container folder name with -time<RUN_TIMESTAMP> appended.
Parameters
dataset Name
Dataset identifier (already human-readable).
correlation Method
Correlation key (e.g., Pearson, Kendall).
number Of Topics
Number of topics (top<T>), included if > 0.
number Of Systems
Number of systems (sys<S>), included if > 0.
population Size
Population size (po<P>), included if > 0.
number Of Iterations
Iterations (i<I>), included if > 0.
number Of Repetitions
Repetitions (r<R>), included if > 0.
expansion Coefficient
Expansion coefficient (mx<M>), included if > 0.
include Percentiles
If true and percentiles is non-empty, appends peA_B using the first and last values.
percentiles
Ordered list of percentiles; only the first and last are used in the token.