Searched refs:mArrayGoals (Results 1 – 1 of 1) sorted by relevance
30 private SolverVariable[] mArrayGoals = new SolverVariable[mTableSize]; field in PriorityGoalRow166 SolverVariable variable = mArrayGoals[i]; in getPivotCandidate()175 } else if (mAccessor.isSmallerThan(mArrayGoals[pivot])) { in getPivotCandidate()182 return mArrayGoals[pivot]; in getPivotCandidate()194 if (mNumGoals + 1 > mArrayGoals.length) { in addToGoal()195 mArrayGoals = Arrays.copyOf(mArrayGoals, mArrayGoals.length * 2); in addToGoal()196 mSortArray = Arrays.copyOf(mArrayGoals, mArrayGoals.length * 2); in addToGoal()198 mArrayGoals[mNumGoals] = variable; in addToGoal()201 if (mNumGoals > 1 && mArrayGoals[mNumGoals - 1].id > variable.id) { in addToGoal()203 mSortArray[i] = mArrayGoals[i]; in addToGoal()[all …]