Skip to content

Commit

Permalink
Update scalar_biharmonic_diffusivity.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
simone-silvestri committed Jun 13, 2023
1 parent 9f3b273 commit d2ad49c
Showing 1 changed file with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,8 @@ Holds viscosity and diffusivities for models with prescribed isotropic diffusivi
struct ScalarBiharmonicDiffusivity{F, V, K, N} <: AbstractScalarBiharmonicDiffusivity{F, N}
ν :: V
κ :: K

<<<<<<< HEAD
function ScalarBiharmonicDiffusivity{F, N}::V, κ::K) where {F, V, K, N}
return new{F, V, K, N}(ν, κ)
end
=======
ScalarBiharmonicDiffusivity{F}::N, κ::K) where {F, N, K} =
new{F, N, K}(ν, κ)
>>>>>>> main
ScalarBiharmonicDiffusivity{F, N}::V, κ::K) where {F, V, K, N} =
new{F, V, K, N}(ν, κ)
end

# Aliases that allow specify the floating type, assuming that the discretization is Explicit in time
Expand Down

2 comments on commit d2ad49c

@navidcy
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

damn! I fixed it and forgot to save before committing -- sorry

@simone-silvestri
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no worries 😄

Please sign in to comment.