Skip to content

Commit

Permalink
Update decompose.cxx
Browse files Browse the repository at this point in the history
  • Loading branch information
octoflar authored Jun 19, 2024
1 parent e283c02 commit 67f882d
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/main/cxx/core/decompose.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ especia::D_Decompose::lapack_do (real Z[], real w[]) const
}
else if (info > 0)
{
throw runtime_error (message_int_err);
throw runtime_error (message_int_err); // GCOV_EXCL_LINE LCOV_EXCL_LINE
}
else
{
throw invalid_argument (message_ill_arg);
throw invalid_argument (message_ill_arg); // GCOV_EXCL_LINE LCOV_EXCL_LINE
}
}

Expand All @@ -131,11 +131,11 @@ especia::D_Decompose::lapack_inquire (integer n, integer &lwork,
}
else if (info > 0)
{
throw runtime_error (message_int_err);
throw runtime_error (message_int_err); // GCOV_EXCL_LINE LCOV_EXCL_LINE
}
else
{
throw invalid_argument (message_ill_arg);
throw invalid_argument (message_ill_arg); // GCOV_EXCL_LINE LCOV_EXCL_LINE
}
}

Expand Down Expand Up @@ -180,11 +180,11 @@ especia::R_Decompose::lapack_do (real Z[], real w[]) const
}
else if (info > 0)
{
throw runtime_error (message_int_err);
throw runtime_error (message_int_err); // GCOV_EXCL_LINE LCOV_EXCL_LINE
}
else
{
throw invalid_argument (message_ill_arg);
throw invalid_argument (message_ill_arg); // GCOV_EXCL_LINE LCOV_EXCL_LINE
}
}

Expand All @@ -206,11 +206,11 @@ especia::R_Decompose::lapack_inquire (integer n, integer &lwork,
}
else if (info > 0)
{
throw runtime_error (message_int_err);
throw runtime_error (message_int_err); // GCOV_EXCL_LINE LCOV_EXCL_LINE
}
else
{
throw invalid_argument (message_ill_arg);
throw invalid_argument (message_ill_arg); // GCOV_EXCL_LINE LCOV_EXCL_LINE
}
}

Expand Down Expand Up @@ -255,11 +255,11 @@ especia::X_Decompose::lapack_do (real Z[], real w[]) const
}
else if (info > 0)
{
throw runtime_error (message_int_err);
throw runtime_error (message_int_err); // GCOV_EXCL_LINE LCOV_EXCL_LINE
}
else
{
throw invalid_argument (message_ill_arg);
throw invalid_argument (message_ill_arg); // GCOV_EXCL_LINE LCOV_EXCL_LINE
}
}

Expand All @@ -280,11 +280,11 @@ especia::X_Decompose::lapack_inquire (integer n, integer &lwork)
}
else if (info > 0)
{
throw runtime_error (message_int_err);
throw runtime_error (message_int_err); // GCOV_EXCL_LINE LCOV_EXCL_LINE
}
else
{
throw invalid_argument (message_ill_arg);
throw invalid_argument (message_ill_arg); // GCOV_EXCL_LINE LCOV_EXCL_LINE
}
}

Expand Down

0 comments on commit 67f882d

Please sign in to comment.