Skip to content

Commit

Permalink
cleanup and perhaps bump version
Browse files Browse the repository at this point in the history
the LAPACK wrappers were not used in published code, so shouldn't be here.
  • Loading branch information
RalphAS committed Jul 30, 2021
1 parent fe51ded commit 116db25
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 219 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "GenericSchur"
uuid = "c145ed77-6b09-5dd9-b285-bf645a82121e"
version = "0.5.1"
version = "0.5.2"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
5 changes: 2 additions & 3 deletions src/GenericSchur.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import LinearAlgebra: schur!, eigvals!, eigvecs, eigen!
# These are introduced here.
export triangularize, eigvalscond, subspacesep, balance!

STypes = Union{AbstractFloat, Complex{<:AbstractFloat}}
const STypes = Union{AbstractFloat, Complex{T} where T<:AbstractFloat}

if VERSION < v"1.2-"
eigsortby = nothing
Expand All @@ -37,7 +37,7 @@ end

# This is probably the best we can do unless LinearAlgebra coöperates
"""
eigvecs(S::Schur{<:Complex}; left=false) => Matrix
eigvecs(S::Schur{Complex{<:AbstractFloat}}; left=false) -> Matrix
Compute right or left eigenvectors from a Schur decomposition.
Eigenvectors are returned as columns of a matrix, ordered to match `S.values`.
Expand Down Expand Up @@ -245,7 +245,6 @@ function _fmt_nr(x::Real)
end

include("util.jl")
include("lapack_extras.jl")
include("hessenberg.jl")

if VERSION < v"1.3"
Expand Down
215 changes: 0 additions & 215 deletions src/lapack_extras.jl

This file was deleted.

2 comments on commit 116db25

@RalphAS
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
Copy link

Choose a reason for hiding this comment

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

Registration pull request created: JuliaRegistries/General/41815

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.2 -m "<description of version>" 116db25f0de016620132bb10df831b36f8c14ea4
git push origin v0.5.2

Please sign in to comment.