Пример #1
0
 /**
  * If the root inner tier is currently at the root inner tier capacity then the decision returns
  * true.
  *
  * @param mutation The mutation state container.
  * @param rootLevel The per level mutation state for the root level.
  * @param root The root inner tier.
  * @return True if root inner tier is at capacity.
  */
 public boolean test(Mutation<T, A> mutation, Level<T, A> rootLevel, Tier<T, A> root) {
   return mutation.getStructure().getInnerSize() == root.getSize();
 }