Commit 885b63c3 authored by Yutong Zhao's avatar Yutong Zhao
Browse files

Use regular doubles instead of long double.

parent e8126dd7
......@@ -103,13 +103,13 @@ ObcParameters::ObcType ObcParameters::getObcType() const {
void ObcParameters::setObcTypeParameters(ObcParameters::ObcType obcType) {
if (obcType == ObcTypeI) {
_alphaObc = 0.8L;
_betaObc = 0.0L;
_gammaObc = 2.91L;
_alphaObc = 0.8;
_betaObc = 0.0;
_gammaObc = 2.91;
} else {
_alphaObc = 1.0L;
_betaObc = 0.8L;
_gammaObc = 4.85L;
_alphaObc = 1.0;
_betaObc = 0.8;
_gammaObc = 4.85;
}
_obcType = obcType;
}
......
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