X-Git-Url: http://git.treefish.org/~alex/phys/heatbath.git/blobdiff_plain/a70bf950d14902f91ae0c0e4027537a7e23d3bc5..274a66cdb22fd36ea8cbbc373783d848f1ba253e:/sim-1mr-.hpp?ds=sidebyside diff --git a/sim-1mr-.hpp b/sim-1mr-.hpp index 75c41d9..a7cde92 100644 --- a/sim-1mr-.hpp +++ b/sim-1mr-.hpp @@ -43,9 +43,7 @@ sim::sim(o815 *_O815) : o815::sim( _O815, void sim::updatePhi (const int& x) { - const double theta = gsl_rng_uniform(rangsl) * 2*M_PI; complex V=0; - const double oldarg = arg(conf[x].phi); for (int nu=0; nu<4; nu++) V += conf[ (*nb)[x*4+nu] ].phi; @@ -55,7 +53,7 @@ void sim::updatePhi (const int& x) + 2 * real( conf[x].phi * conj(V) ) ); conf[x].phi = sqrt(std::log( 1./(1-r) )) / sqrt(M) - * polar(1.0, oldarg) + * polar( 1.0, arg(conf[x].phi) ) + V / M; }