Added lesser neighbor algorithm and constraints

This commit is contained in:
2025-12-31 19:19:36 -08:00
parent fa8da50db1
commit d6a9c4ac06
10 changed files with 80 additions and 17 deletions

View File

@@ -7,7 +7,7 @@ function obj = plotGraph(obj)
end
% Form graph from adjacency matrix
G = graph(obj.adjacency, 'omitselfloops');
G = graph(obj.constraintAdjacencyMatrix, 'omitselfloops');
% Plot graph object
if isnan(obj.networkGraphIndex)