Fix hypot(0,0).

This commit is contained in:
Gael Guennebaud 2015-03-27 09:59:24 +01:00
parent 29eaa2b0f1
commit 3d59ae0203

View File

@ -328,6 +328,7 @@ struct hypot_impl
p = _y;
qp = _x / p;
}
if(p==RealScalar(0)) return RealScalar(0);
return p * sqrt(RealScalar(1) + qp*qp);
}
};