Skip to content

Commit 68c48c9

Browse files
committed
Merge branch 'no-small-letter-aliases' into 'development'
No small letter aliases See merge request damask/DAMASK!950
2 parents 65c5ee4 + e0adddf commit 68c48c9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/grid/spectral_utilities.f90

+4-4
Original file line numberDiff line numberDiff line change
@@ -210,13 +210,13 @@ subroutine spectral_utilities_init()
210210
end if
211211

212212
select case(num_grid_fft%get_asStr('FFTW_plan_mode',defaultVal='FFTW_MEASURE'))
213-
case('fftw_estimate', 'FFTW_ESTIMATE') ! ordered from slow execution (but fast plan creation) to fast execution
213+
case('FFTW_ESTIMATE') ! ordered from slow execution (but fast plan creation) to fast execution
214214
FFTW_planner_flag = FFTW_ESTIMATE
215-
case('fftw_measure', 'FFTW_MEASURE')
215+
case('FFTW_MEASURE')
216216
FFTW_planner_flag = FFTW_MEASURE
217-
case('fftw_patient', 'FFTW_PATIENT')
217+
case('FFTW_PATIENT')
218218
FFTW_planner_flag = FFTW_PATIENT
219-
case('fftw_exhaustive', 'FFTW_EXHAUSTIVE')
219+
case('FFTW_EXHAUSTIVE')
220220
FFTW_planner_flag = FFTW_EXHAUSTIVE
221221
case default
222222
call IO_warning(47,'using default FFTW_MEASURE instead of "'//trim(num_grid_fft%get_asStr('FFTW_plan_mode'))//'"')

0 commit comments

Comments
 (0)