Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
mrychlik committed Oct 3, 2024
1 parent 7797f29 commit 9db39e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ void fpe_handler(int sig) {
int main()
{
// Enable trapping for specific floating-point exceptions
feenableexcept(FE_DIVBYZERO | FE_INVALID | FE_OVERFLOW);
sighandler_t old_handler = signal(SIGFPE, fpe_handler);
//feenableexcept(FE_DIVBYZERO | FE_INVALID | FE_OVERFLOW);
//sighandler_t old_handler = signal(SIGFPE, fpe_handler);

test_gauss_solve();
test_lu_in_place();
Expand Down

0 comments on commit 9db39e0

Please sign in to comment.