Skip to content

Commit

Permalink
remove GenericSVD and GenericSchur as dependencies
Browse files Browse the repository at this point in the history
Due to type piracy, these packages cause problems with precompilation and don't play nice with GenericLinearAlgebra (see discussion in JuliaLinearAlgebra/GenericLinearAlgebra.jl#71). Additionally, GenericSVD has now been deprecated (JuliaLinearAlgebra/GenericSVD.jl#30).
  • Loading branch information
simonbyrne committed Mar 30, 2021
1 parent 8a4f826 commit b12955f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
4 changes: 0 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ repo = "https://github.com/JuliaMath/DoubleFloats.jl.git"
version = "1.1.18"

[deps]
GenericSVD = "01680d73-4ee2-5a08-a1aa-533608c188bb"
GenericSchur = "c145ed77-6b09-5dd9-b285-bf645a82121e"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Polynomials = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Expand All @@ -18,8 +16,6 @@ Requires = "ae029012-a4dd-5104-9daa-d747884805df"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"

[compat]
GenericSVD = "0.3, 0.4, 0.5"
GenericSchur = "0.3, 0.4, 0.5"
Polynomials = "1, 2"
Quadmath = "0.4, 0.5, 0.6"
Requires = "1"
Expand Down
4 changes: 2 additions & 2 deletions docs/src/linearalgebra.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
## Using

```julia
using DoubleFloats, GenericSchur, GenericSVD, LinearAlgebra
using DoubleFloats, LinearAlgebra
```

## Vectors and Matrices

```julia
using DoubleFloats, GenericSchur, GenericSVD, LinearAlgebra
using DoubleFloats, LinearAlgebra

n = 25
vector = rand(Double64, n)
Expand Down
1 change: 0 additions & 1 deletion src/DoubleFloats.jl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ import Random: rand, randn

using Polynomials

using GenericSVD, GenericSchur
using LinearAlgebra
import LinearAlgebra: norm, mul!

Expand Down

0 comments on commit b12955f

Please sign in to comment.