Browse Source

add braces around statements and cleanup formatting (#107)

master
Daniel Agar 5 years ago committed by Julian Kent
parent
commit
cd185c995b
  1. 24
      matrix/Matrix.hpp
  2. 4
      matrix/SquareMatrix.hpp

24
matrix/Matrix.hpp

@ -587,9 +587,13 @@ Type min(const Type x, const Type y) { @@ -587,9 +587,13 @@ Type min(const Type x, const Type y) {
bool x_is_nan = isnan(x);
bool y_is_nan = isnan(y);
// z > nan for z != nan is required by C the standard
if(x_is_nan || y_is_nan) {
if(x_is_nan && !y_is_nan) return y;
if(!x_is_nan && y_is_nan) return x;
if (x_is_nan || y_is_nan) {
if (x_is_nan && !y_is_nan) {
return y;
}
if (!x_is_nan && y_is_nan) {
return x;
}
return x;
}
return (x < y) ? x : y;
@ -599,16 +603,20 @@ Type max(const Type x, const Type y) { @@ -599,16 +603,20 @@ Type max(const Type x, const Type y) {
bool x_is_nan = isnan(x);
bool y_is_nan = isnan(y);
// z > nan for z != nan is required by C the standard
if(x_is_nan || y_is_nan) {
if(x_is_nan && !y_is_nan) return y;
if(!x_is_nan && y_is_nan) return x;
if (x_is_nan || y_is_nan) {
if (x_is_nan && !y_is_nan) {
return y;
}
if (!x_is_nan && y_is_nan) {
return x;
}
return x;
}
return (x > y) ? x : y;
}
template<typename Type>
Type constrain(const Type x, const Type lower_bound, const Type upper_bound) {
if(lower_bound > upper_bound) {
if (lower_bound > upper_bound) {
return NAN;
} else if(isnan(x)) {
return NAN;
@ -677,7 +685,7 @@ Matrix<Type, M, N> constrain(const Matrix<Type, M, N> &x, @@ -677,7 +685,7 @@ Matrix<Type, M, N> constrain(const Matrix<Type, M, N> &x,
const Type scalar_lower_bound,
const Type scalar_upper_bound) {
Matrix<Type,M,N> m;
if(scalar_lower_bound > scalar_upper_bound) {
if (scalar_lower_bound > scalar_upper_bound) {
m.setNaN();
} else {
for (size_t i = 0; i < M; i++) {

4
matrix/SquareMatrix.hpp

@ -65,7 +65,7 @@ public: @@ -65,7 +65,7 @@ public:
inline SquareMatrix<Type, M> I() const
{
SquareMatrix<Type, M> i;
if(inv(*this, i)) {
if (inv(*this, i)) {
return i;
} else {
i.setZero();
@ -289,7 +289,7 @@ template<typename Type, size_t M> @@ -289,7 +289,7 @@ template<typename Type, size_t M>
SquareMatrix<Type, M> inv(const SquareMatrix<Type, M> & A)
{
SquareMatrix<Type, M> i;
if(inv(A, i)) {
if (inv(A, i)) {
return i;
} else {
i.setZero();

Loading…
Cancel
Save