Skip to content

Commit 2ff1b0e

Browse files
author
Gus Hart
committed
Updated makeStr.90 to avoid warning. Exported co_ca from io_utils.f90. Changed FFLAGS for gfortran to avoid people worrying warnings that are not important. Removed unused variables to avoid warnings.
1 parent 6e2d79a commit 2ff1b0e

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

aux_src/makeStr.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ PROGRAM makeStr
1010
implicit none
1111
character(80) fname, title, strname, strNstring
1212
character(maxLabLength) :: labeling
13-
integer ioerr, iline, ic, i, ilab, pgOps, nD, hnfN, iAt, jAt, iSpec, nSpec, idx, foutput_unit
13+
integer ioerr, iline, ic, i, ilab, pgOps, nD, hnfN, iAt, jAt, nSpec, idx, foutput_unit
1414
integer k, strN, istrN, strNi, strNf, sizeN, n, diag(3), a,b,c,d,e,f, nType
1515
integer HNF(3,3), L(3,3), hnf_degen, lab_degen, tot_degen
1616
integer, pointer :: gIndx(:)

src/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ ifeq (${F90},gfortran) # gfortran compiler
1515
FFLAGS = -O3 -ffree-line-length-none -fno-underscoring -I${LBD1}
1616
FOUND = true
1717
else
18-
FFLAGS = -fPIC -g -fbounds-check -Wall -ffree-line-length-none -fno-underscoring -I${LBD1}
18+
FFLAGS = -fPIC -g -fbounds-check -ffree-line-length-none -fno-underscoring -I${LBD1}
19+
#FFLAGS = -fPIC -g -fbounds-check -Wall -ffree-line-length-none -fno-underscoring -I${LBD1}
1920
FOUND = true
2021
endif
2122
endif

src/derivative_structure_generator.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1269,7 +1269,7 @@ SUBROUTINE gen_multilattice_derivatives(title, parLV, nDFull, dFull, k, nMin, nM
12691269

12701270
! Beginning of main routine for enumeration
12711271
open(23,file="VERSION.enum")
1272-
write(23,'(A)') "v2.0.4-65-g49c3-dirty"
1272+
write(23,'(A)') "v2.0.4-67-g6e2d-dirty"
12731273
close(23)
12741274

12751275
![TODO] Get rid of all the junk that crept in (writing files, making inactives table, etc. These should all be in routines so that this main routine is still readable)

src/io_utils.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ MODULE io_utils
99

1010
private
1111
public read_input, write_lattice_symmetry_ops, write_rotperms_list, read_in_cells_from_file, &
12-
read_struct_enum_out, read_arrows, check_for_fixed_cells
12+
read_struct_enum_out, read_arrows, check_for_fixed_cells, co_ca
1313

1414
CONTAINS
1515
!!<summary> This routine looks to see if the enumeration should be limited to a set of fixed cell shapes. If so,

0 commit comments

Comments
 (0)