Skip to content

Commit 7c83cf4

Browse files
authored
Merge pull request #52 from fortran-lang/uncomment-assertion
chore(example): uncomment the result verification
2 parents 023d7a5 + a420183 commit 7c83cf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/complex_transforms.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ program complex_transforms
3333
print complex_format, "fft_f = ", fft_f
3434
print complex_format, "f_round_trip = ",f_round_trip
3535

36-
!call assert(all(abs(f_round_trip - f) < tolerance), "inverse of forward FFT must yield the original function")
36+
call assert(all(abs(f_round_trip - f) < tolerance), "inverse of forward FFT must yield the original function")
3737

3838
contains
3939

0 commit comments

Comments
 (0)