flawed GA implementation

This commit is contained in:
2025-11-30 09:52:17 -08:00
parent 352d2ed1de
commit f9f070e2d0
4 changed files with 43 additions and 10 deletions

View File

@@ -27,13 +27,15 @@ classdef agent
% Communication
comRange = NaN;
performance = 0;
% Plotting
scatterPoints;
end
methods (Access = public)
[obj] = initialize(obj, pos, vel, pan, tilt, collisionGeometry, sensorModel, guidanceModel, comRange, index, label);
[obj] = run(obj, sensingObjective, domain, partitioning);
[obj] = run(obj, domain, partitioning);
[obj, f] = plot(obj, ind, f);
updatePlots(obj);
end