I want to assign a unique priority to each element in an array, but with the snippet below I'm getting the same priority m
repeated for elements with the same working time values. How do I set a unique priority for each element?
// assign priority number according to working times
#m := 0;
FOR #m := 0 TO 10 DO
FOR #l := 0 TO 10 DO
IF #OrderedList[#m] = #WorkingTimes[#l]."Time" THEN
#WorkingTimes[#l].Priority := #m;
END_IF;
END_FOR;
END_FOR;
Set some default priority then exit the inner
FOR
loop when you update an elementI haven't tested this, but the concept should work.