"...git@developer.sourcefind.cn:renzhc/diffusers_dcu.git" did not exist on "e7e45bd127150e30e61cbbe912cdeb8804f30b18"
Commit deccc99c authored by Davis King's avatar Davis King
Browse files

Fixed bug in unit tests.

parent af1af6d2
......@@ -816,7 +816,8 @@ namespace
{
rs.add(rnd.get_random_gaussian() + 1);
tmp[i] += rs.mean();
tmp_var[i] += rs.variance();
if (i > 0)
tmp_var[i] += rs.variance();
}
}
......@@ -845,8 +846,11 @@ namespace
{
rs.add(rnd.get_random_gaussian() + 1, rnd.get_random_gaussian() + 1);
tmp[i] += (rs.mean_y()+rs.mean_x())/2;
tmp_var[i] += (rs.variance_y()+rs.variance_x())/2;
tmp_covar[i] += rs.covariance();
if (i > 0)
{
tmp_var[i] += (rs.variance_y()+rs.variance_x())/2;
tmp_covar[i] += rs.covariance();
}
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment