|
Britbot
|
Get the dimension vector which later will be used to create the iteration over all possible Group-Target assignments.
Definition at line 528 of file Commander.cs. {
//allocate a new array for the dimensions of each group's target
int[] dimensions = new int[Commander.Groups.Count];
//go over all the groups and read number of priorities to dimension
for (int i = 0; i < Groups.Count; i++)
dimensions[i] = Commander.Groups[i].Priorities.Count;
return dimensions;
}
|
1.7.6.1