mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 17:42:33 -06:00
18 lines
580 B
Java
18 lines
580 B
Java
package com.google.common.graph;
|
|
|
|
import com.google.common.base.Optional;
|
|
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes3.dex */
|
|
abstract class AbstractGraphBuilder<N> {
|
|
final boolean directed;
|
|
boolean allowsSelfLoops = false;
|
|
ElementOrder<N> nodeOrder = ElementOrder.insertion();
|
|
ElementOrder<N> incidentEdgeOrder = ElementOrder.unordered();
|
|
Optional<Integer> expectedNodeCount = Optional.absent();
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public AbstractGraphBuilder(boolean z) {
|
|
this.directed = z;
|
|
}
|
|
}
|