From cc4b4fa5b037caf3b926e90591b0a94750887d52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Rueda-Ram=C3=ADrez?= Date: Wed, 25 Oct 2023 13:53:01 +0200 Subject: [PATCH] Declare `n_nonconservative_terms` in equations.jl as a function without a method Co-authored-by: Michael Schlottke-Lakemper --- src/equations/equations.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/equations/equations.jl b/src/equations/equations.jl index 6e588a62544..0e77b92e045 100644 --- a/src/equations/equations.jl +++ b/src/equations/equations.jl @@ -245,7 +245,7 @@ Number of nonconservative terms in the form local * symmetric for a particular e This function needs to be specialized only if equations with nonconservative terms are combined with certain solvers (e.g., subcell limiting). """ -function n_nonconservative_terms(::AbstractEquations) end +function n_nonconservative_terms end have_constant_speed(::AbstractEquations) = False() default_analysis_errors(::AbstractEquations) = (:l2_error, :linf_error)