interface updates for test cases

This commit is contained in:
2026-03-31 21:49:06 -07:00
parent c3fa1de914
commit 0bcdd73882
4 changed files with 13 additions and 11 deletions
+2 -2
View File
@@ -16,11 +16,11 @@ function obj = initializeRandomMvnpdf(obj, domain, discretizationStep, protected
end
% Set random distribution parameters
sig = [2 + rand * 2, 1; 1, 2 + rand * 2];
sig = reshape([2 + rand * 2, 1; 1, 2 + rand * 2], [1 2 2]);
% Set up random bivariate normal distribution function
objectiveFunction = objectiveFunctionWrapper(mu(1:2), sig);
% Regular initialization
obj = obj.initialize(objectiveFunction, domain, discretizationStep, protectedRange);
obj = obj.initialize(objectiveFunction, domain, discretizationStep, protectedRange, 1e-6, mu(1:2), sig);
end