FRONTIER_INITIAL_CAPACITY

private const val FRONTIER_INITIAL_CAPACITY: Int = 11

Initial capacity of the priority queue storing the frontier nodes.

Since the partial ordering of the elements in this priority queue relies on a custom comparator, its constructor is as follows: PriorityQueue(int initialCapacity, Comparator<? super E> comparator).

Technically, the given initial capacity is a dummy value meant only to supply the required arguments of this constructor.