Skip to content

Commit

Permalink
latest logic
Browse files Browse the repository at this point in the history
  • Loading branch information
crowlogic committed Jan 20, 2024
1 parent 9c18d21 commit da4c5e2
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/main/java/arb/functions/P.java
Original file line number Diff line number Diff line change
Expand Up @@ -144,26 +144,22 @@ public P()

public void initializeContextualFunctions()
{
A var10001 = this.A = new A();
this.A = new A();
this.A.α = this.α;
this.A.β = this.β;
this.A.initializeContextualFunctions();
this.A = var10001;
B var1 = this.B = new B();
this.B = new B();
this.B.α = this.α;
this.B.β = this.β;
this.B.initializeContextualFunctions();
this.B = var1;
C var2 = this.C = new C();
this.C = new C();
this.C.α = this.α;
this.C.β = this.β;
this.C.initializeContextualFunctions();
this.C = var2;
E var3 = this.E = new E();
this.E = new E();
this.E.α = this.α;
this.E.β = this.β;
this.E.initializeContextualFunctions();
this.E = var3;
}

public P(P var1)
Expand Down

0 comments on commit da4c5e2

Please sign in to comment.