43 lines
837 B
Java
43 lines
837 B
Java
package androidx.constraintlayout.solver.widgets;
|
|
|
|
import java.util.HashSet;
|
|
import java.util.Iterator;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class ResolutionNode {
|
|
HashSet<ResolutionNode> a = new HashSet<>(2);
|
|
int b = 0;
|
|
|
|
public void a(ResolutionNode resolutionNode) {
|
|
this.a.add(resolutionNode);
|
|
}
|
|
|
|
public void b() {
|
|
this.b = 0;
|
|
Iterator<ResolutionNode> it = this.a.iterator();
|
|
while (it.hasNext()) {
|
|
it.next().b();
|
|
}
|
|
}
|
|
|
|
public boolean c() {
|
|
return this.b == 1;
|
|
}
|
|
|
|
public void d() {
|
|
this.b = 0;
|
|
this.a.clear();
|
|
}
|
|
|
|
public void e() {
|
|
}
|
|
|
|
public void a() {
|
|
this.b = 1;
|
|
Iterator<ResolutionNode> it = this.a.iterator();
|
|
while (it.hasNext()) {
|
|
it.next().e();
|
|
}
|
|
}
|
|
}
|