From 0d5e1ec9f6cda39c09bb1e7e99a0ef732d3ff31e Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 17 Jan 2025 21:25:41 +0000 Subject: [PATCH] haalp --- Core/Utils/Collections/ProbabilityObjectArray.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Utils/Collections/ProbabilityObjectArray.cs b/Core/Utils/Collections/ProbabilityObjectArray.cs index 3972a11c..74ada0fb 100644 --- a/Core/Utils/Collections/ProbabilityObjectArray.cs +++ b/Core/Utils/Collections/ProbabilityObjectArray.cs @@ -18,7 +18,7 @@ namespace Core.Utils.Collections; * // count the elements which should be distributed according to the relative probabilities * res.filter(x => x==="b").reduce((sum, x) => sum + 1 , 0) */ -public class ProbabilityObjectArray : List> where T : ProbabilityObject +public class ProbabilityObjectArray : List where T : ProbabilityObject { private MathUtil _mathUtil; private ICloner _cloner;