1# By default, Julia/LLVM does not use fused multiply-add operations (FMAs). 2# Since these FMAs can increase the performance of many numerical algorithms, 3# we need to opt-in explicitly. 4# See https://ranocha.de/blog/Optimizing_EC_Trixi for further details. 5@muladd begin 6#! format: noindent 7 8# define types for parabolic solvers 9include("solvers_parabolic.jl") 10 11include("dg.jl") 12include("dgmulti.jl") 13end # @muladd 14 15