Skip to content

Commit

Permalink
Use genericla (#51)
Browse files Browse the repository at this point in the history
* Update Project.toml

* Update matrixfunctions.md

* Update expmatrix.jl

* Update ArbNumerics.jl

* Update ArbComplex.jl

* Update Project.toml
  • Loading branch information
JeffreySarnoff committed Apr 5, 2021
1 parent 3ca872d commit 8facfe1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
6 changes: 2 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
GenericLinearAlgebra = "14197337-ba66-59df-a3e3-ca00e7dcff7a"
BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
GenericSVD = "01680d73-4ee2-5a08-a1aa-533608c188bb"
GenericSchur = "c145ed77-6b09-5dd9-b285-bf645a82121e"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
Readables = "0d4725de-cd7c-5e44-8a85-a48caeef9fa5"
GMP_jll = "781609d7-10c4-51f6-84f2-b8444358ff6d"
Expand All @@ -30,7 +29,6 @@ test = ["Test"]
[compat]
SpecialFunctions = "0.7, 0.8, 0.9, 0.10, 1"
BinaryProvider = "0.4, 0.5, 0.6, 0.7, 0.9, 1"
GenericSVD = "0.3, 0.4, 0.5"
GenericSchur = "0.4, 0.5, 0.6"
GenericLinearAlgebra = "0.2.5, 0.3, 0.4, 0.5, 0.6"
Readables = "0.3"
julia = "1"
2 changes: 1 addition & 1 deletion docs/exemplars/expmatrix.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ with a 500x500 matrix of Float64s, working with 350 bits used 25 seconds
with a 750x750 matrix of Float64s, working with 175 bits used 25 seconds
=#

using ArbNumerics # GenericSVD, LinearAlgebra, Readables
using ArbNumerics # GenericLinearAlgebra, LinearAlgebra, Readables

#=
ArbNumerics' interactive users see the "viewable precision"; computations utilize "working precision".
Expand Down
2 changes: 1 addition & 1 deletion docs/src/matrixfunctions.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

## Matrix Functions

#### `using ArbNumerics, GenericSchur, GenericSVD, LinearAlgebra`
#### `using ArbNumerics, GenericLinearAlgebra, LinearAlgebra`

- `det`, `tr`
- `transpose`, `adjoint`, `inv`
Expand Down
2 changes: 1 addition & 1 deletion src/ArbNumerics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ import SpecialFunctions: gamma, lgamma, lfact, digamma, invdigamma, polygamma, t
besselj, besselj0, besselj1, bessely, bessely0, bessely1, besseli, besselk,
eta, zeta

using GenericSVD
using GenericLinearAlgebra

using LinearAlgebra
import LinearAlgebra: tr, det, transpose, transpose!, norm, lu, ldlt,
Expand Down
2 changes: 1 addition & 1 deletion src/libarb/ArbComplex.jl
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ function Base.angle(x::ArbComplex{P}) where {P}
!(signbit(a) || signbit(T(pi) - a)) ? a : (signbit(a) ? zero(T) : T(pi))
end

# needed for GenericSVD
# needed for GenericLinearAlgebra

flipsign(x::ArbComplex{P}, y::T) where {P, T<:Base.IEEEFloat} =
signbit(y) ? -x : x
Expand Down

2 comments on commit 8facfe1

@JeffreySarnoff
Copy link
Owner Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

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

Error while trying to register: "Tag with name v1.2.4 already exists and points to a different commit"

Please sign in to comment.