Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 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,17 +16,17 @@ 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"
SpecialFunctions = "0.7, 0.8, 0.9, 0.10, 1.0, 1.1"
julia = "1"

[extras]
GenericLinearAlgebra = "14197337-ba66-59df-a3e3-ca00e7dcff7a"
GenericSchur = "c145ed77-6b09-5dd9-b285-bf645a82121e"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "SpecialFunctions"]
test = ["Test", "SpecialFunctions", "GenericLinearAlgebra", "GenericSchur"]
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
2 changes: 2 additions & 0 deletions test/linearalgebra.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
using GenericLinearAlgebra, GenericSchur

@testset "linear algebra" begin
@test issquare(reshape(rand(Double32,3*3), 3, 3))

Expand Down