Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Fixed duplicate use statement that was giving a problem in util_solve…
Browse files Browse the repository at this point in the history
… with ifort
  • Loading branch information
daminton committed Aug 5, 2021
1 parent ca1d66b commit 8b4d523
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Makefile.Defines
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ GPAR = -fopenmp -ftree-parallelize-loops=4
GMEM = -fsanitize=undefined -fsanitize=address -fsanitize=leak
GWARNINGS = -Wall -Warray-bounds -Wimplicit-interface -Wextra -Warray-temporaries

#FFLAGS = $(IDEBUG) $(HEAPARR)
FFLAGS = $(IDEBUG) $(HEAPARR)
#FFLAGS = -init=snan,arrays -no-wrap-margin -O3 $(STRICTREAL) $(SIMDVEC) $(PAR)
#FORTRAN = ifort
FORTRAN = ifort
#AR = xiar

FORTRAN = gfortran
FFLAGS = -ffree-line-length-none $(GDEBUG) $(GMEM)
#FORTRAN = gfortran
#FFLAGS = -ffree-line-length-none $(GDEBUG) $(GMEM)
AR = ar

# DO NOT include in CFLAGS the "-c" option to compile object only
Expand Down
1 change: 0 additions & 1 deletion src/util/util_solve.f90
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ module function util_solve_linear_system_q(A,b,n,lerr) result(x)
!! Uses Gaussian elimination, so will have issues if system is ill-conditioned.
!! Uses quad precision intermidiate values, so works best on small arrays.
use, intrinsic :: ieee_exceptions
use swiftest
implicit none
! Arguments
integer(I4B), intent(in) :: n
Expand Down

0 comments on commit 8b4d523

Please sign in to comment.