# By default, Julia/LLVM does not use fused multiply-add operations (FMAs).1# Since these FMAs can increase the performance of many numerical algorithms,2# we need to opt-in explicitly.3# See https://ranocha.de/blog/Optimizing_EC_Trixi for further details.4@muladd begin5#! format: noindent67include("tree_mesh.jl")8include("structured_mesh.jl")9include("structured_mesh_view.jl")10include("surface_interpolant.jl")11include("unstructured_mesh.jl")12include("face_interpolant.jl")13include("transfinite_mappings_3d.jl")14include("p4est_mesh.jl")15include("p4est_mesh_view.jl")16include("t8code_mesh.jl")17include("dgmulti_meshes.jl")18include("mesh_io.jl")19end # @muladd202122