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

Commit

Permalink
Merge branch 'debug'
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Oct 21, 2021
2 parents 4ba22ae + fc91ba2 commit 85078c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Makefile.Defines
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ FSTRICTFLAGS = $(IPRODUCTION) $(STRICTREAL) $(OPTREPORT)
FFLAGS = $(IPRODUCTION) -fp-model=fast $(OPTREPORT)
FORTRAN = ifort
AR = xiar
CC = icc

#FORTRAN = gfortran
#FFLAGS = $(GDEBUG) $(GMEM) #$(GPAR)
Expand Down
2 changes: 1 addition & 1 deletion src/io/io.f90
Original file line number Diff line number Diff line change
Expand Up @@ -2141,7 +2141,7 @@ module subroutine io_write_frame_system(self, param)
else if ((param%out_type == NETCDF_FLOAT_TYPE) .or. (param%out_type == NETCDF_DOUBLE_TYPE)) then

param%nciu%id_chunk = pl%nbody + tp%nbody
param%nciu%time_chunk = param%istep_out / param%istep_dump
param%nciu%time_chunk = max(param%istep_dump / param%istep_out, 1)
if (lfirst) then
inquire(file=param%outfile, exist=fileExists)

Expand Down

0 comments on commit 85078c5

Please sign in to comment.