Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielDoehring committed Oct 23, 2024
1 parent b961bd8 commit 17a440e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
DiffEqCallbacks = "459566f4-90b8-5000-8ac3-15dfb0a30def"
DoubleFloats = "497a8b3b-efae-58df-a0af-a86822472b78"
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
EllipsisNotation = "da5c29d0-fa7d-589e-88eb-ea29b0a81949"
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
Expand All @@ -31,7 +30,6 @@ Polyester = "f517fe37-dbe3-4b94-8317-1923a5111588"
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
Preferences = "21216c6a-2e73-6563-6e65-726566657250"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Quadmath = "be4d8f0f-7fa4-5f49-b795-2f01399ab2dd"
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
Expand Down
6 changes: 0 additions & 6 deletions src/solvers/dgsem/basis_lobatto_legendre.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
@muladd begin
#! format: noindent

using Quadmath, DoubleFloats

"""
LobattoLegendreBasis([RealT=Float64,] polydeg::Integer)
Expand Down Expand Up @@ -572,8 +570,6 @@ function gauss_lobatto_nodes_weights(RealT, n_nodes::Integer)
tolerance = 10 * eps(RealT)
if RealT == Float64
tolerance = 1e-15
elseif RealT == Float128 || RealT == Double64
tolerance = RealT(10)^(-31)
end

# Initialize output
Expand Down Expand Up @@ -690,8 +686,6 @@ function gauss_nodes_weights(RealT, n_nodes::Integer)
tolerance = 10 * eps(RealT)
if RealT == Float64
tolerance = 1e-15
elseif RealT == Float128 || RealT == Double64
tolerance = tolerance = RealT(10)^(-31)
end

# Initialize output
Expand Down

0 comments on commit 17a440e

Please sign in to comment.