/* this*=i where i = sqrt(-1+sqrt(-1)) */ public void times_i() { norm(); FP2 s = new FP2(b); FP2 t = new FP2(b); s.times_i(); t.add(s); // t.norm(); b.copy(a); a.copy(t); }