From 89a4686f9bba91b956b45df0722ab426f5273ba8 Mon Sep 17 00:00:00 2001 From: Matt Cuffaro Date: Sat, 14 Dec 2024 07:46:07 -0500 Subject: [PATCH] adding flat-sharp to operators dictionary --- src/operators.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/operators.jl b/src/operators.jl index df3186a6..cbbfed52 100644 --- a/src/operators.jl +++ b/src/operators.jl @@ -74,6 +74,8 @@ function default_dec_matrix_generate(sd::HasDeltaSet, my_symbol::Symbol, hodge:: :♭ => dec_♭(sd) + :♭♯ => ♭♯_mat(sd) + # Averaging Operator :avg₀₁ => dec_avg₀₁(sd) @@ -169,6 +171,7 @@ function default_dec_generate(sd::HasDeltaSet, my_symbol::Symbol, hodge::Discret :plus => (+) :(-) || :neg => x -> -1 .* x :ln => (x -> log.(x)) + :mag => x -> norm.(x) _ => error("Unmatched operator $my_symbol") end