fix: fix tasks usage initialization
[poolifier.git] / src / utils.ts
index 46ab5051f38ff77eb2fd06c41199bd360b306276..fc328a6c688e2d85f04a04be0e4874584ad5c57c 100644 (file)
@@ -1,11 +1,34 @@
+import type { WorkerChoiceStrategyOptions } from './pools/selection-strategies/selection-strategies-types'
+
 /**
  * An intentional empty function.
  */
-export const EMPTY_FUNCTION: () => void = () => {
+export const EMPTY_FUNCTION: () => void = Object.freeze(() => {
   /* Intentionally empty */
-}
+})
+
+/**
+ * Default worker choice strategy options.
+ */
+export const DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS: WorkerChoiceStrategyOptions =
+  {
+    medRunTime: false
+  }
 
 /**
- * An intentional empty object literal.
+ * Compute the median of the given data set.
+ *
+ * @param dataSet - Data set.
+ * @returns The median of the given data set.
  */
-export const EMPTY_LITERAL = {}
+export const median = (dataSet: number[]): number => {
+  if (Array.isArray(dataSet) && dataSet.length === 1) {
+    return dataSet[0]
+  }
+  const sortedDataSet = dataSet.slice().sort((a, b) => a - b)
+  const middleIndex = Math.floor(sortedDataSet.length / 2)
+  if (sortedDataSet.length % 2 === 0) {
+    return sortedDataSet[middleIndex / 2]
+  }
+  return (sortedDataSet[middleIndex - 1] + sortedDataSet[middleIndex]) / 2
+}