(int q, int r, int s, int t)
| 72 | int k; |
| 73 | |
| 74 | public Transformation(int q, int r, int s, int t){ |
| 75 | this.q = BigInteger.valueOf(q); |
| 76 | this.r = BigInteger.valueOf(r); |
| 77 | this.s = BigInteger.valueOf(s); |
| 78 | this.t = BigInteger.valueOf(t); |
| 79 | k = 0; |
| 80 | } |
| 81 | |
| 82 | public Transformation(BigInteger q, BigInteger r, BigInteger s, BigInteger t){ |
| 83 | this.q = q; |