Skip to content

Commit

Permalink
Merge pull request #52 from fortran-lang/uncomment-assertion
Browse files Browse the repository at this point in the history
chore(example): uncomment the result verification
  • Loading branch information
rouson authored Aug 11, 2024
2 parents 023d7a5 + a420183 commit 7c83cf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/complex_transforms.f90
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ program complex_transforms
print complex_format, "fft_f = ", fft_f
print complex_format, "f_round_trip = ",f_round_trip

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

contains

Expand Down

0 comments on commit 7c83cf4

Please sign in to comment.