POC alu code

This commit is contained in:
Willem 2022-02-04 22:44:11 +01:00
parent 5a0b3978d1
commit bde611e456
13 changed files with 134 additions and 25 deletions

View file

@ -27,7 +27,12 @@ public class GroßGetậlŌṁDiamond6ˢᴰ extends AbstractGroßGetậlŌṁ6ˢ
}
@Override
public GroßGetậlŌṁDiamond6ˢᴰ toClone() {
public GroßGetậlŌṁDiamond6ˢᴰ toClone(BaseIteratorOctal values) {
return new GroßGetậlŌṁDiamond6ˢᴰ(getFractalLevel(), values);
}
@Override
public BaseIteratorOctal iteratorOctalsByClone() {
BaseIteratorOctalStack cloneStack = new BaseIteratorOctalStack();
for (int x=0;x<getMatrix1Length();x++) {
setMatrix1(x);
@ -39,6 +44,6 @@ public class GroßGetậlŌṁDiamond6ˢᴰ extends AbstractGroßGetậlŌṁ6ˢ
}
}
}
return new GroßGetậlŌṁDiamond6ˢᴰ(getFractalLevel(), cloneStack);
return cloneStack;
}
}