Skip to content

Commit

Permalink
Some cleanups in lapack.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
Viral B. Shah committed Sep 25, 2012
1 parent a38893b commit 484e2d2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions base/lapack.jl
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ end

## (GE) general matrices: balancing and back-transforming
for (gebal, gebak, elty) in
(("dgebal_","dgebak_",:Float64),
("sgebal_","sgebak_",:Float32),
("zgebal_","zgebak_",:Complex128),
("cgebal_","cgebak_",:Complex64))
((:dgebal_, :dgebak_, :Float64),
(:sgebal_, :sgebak_, :Float32),
(:zgebal_, :zgebak_, :Complex128),
(:cgebal_, :cgebak_, :Complex64))
@eval begin
# SUBROUTINE DGEBAL( JOB, N, A, LDA, ILO, IHI, SCALE, INFO )
#* .. Scalar Arguments ..
Expand Down

0 comments on commit 484e2d2

Please sign in to comment.