Skip to content

Commit e73b15b

Browse files
committed
Rename package and update to 0.7
1 parent 2915f28 commit e73b15b

File tree

12 files changed

+20
-19
lines changed

12 files changed

+20
-19
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ os:
44
- linux
55

66
julia:
7-
- 0.6
7+
- 0.7
88
- nightly
99

1010
matrix:

REQUIRE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
julia 0.6
1+
julia 0.7-beta

src/LinearAlgebra.jl renamed to src/GenericLinearAlgebra.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__precompile__()
22

3-
module LinearAlgebra
3+
module GenericLinearAlgebra
44

55
include("juliaBLAS.jl")
66
include("lapack.jl")

test/cholesky.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using Base.Test, LinearAlgebra
2-
using LinearAlgebra.CholeskyModule: cholUnblocked!, cholBlocked!, cholRecursive!
1+
using Test, LinearAlgebra
2+
using GenericLinearAlgebra.CholeskyModule: cholUnblocked!, cholBlocked!, cholRecursive!
33

44
n = 50
55

test/eigengeneral.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using LinearAlgebra
1+
using GenericLinearAlgebra
22

33
@testset "General eigen problems" begin
44
n = 10

test/eigenselfadjoint.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Base.Test, LinearAlgebra, Quaternions
1+
using Test, GenericLinearAlgebra, Quaternions
22
Base.isreal(q::Quaternion) = q.v1 == q.v2 == q.v3 == 0
33

44
@testset "The selfadjoint eigen problem" begin

test/lapack.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using Base.Test
2-
using LinearAlgebra
3-
using LinearAlgebra.LAPACK2
1+
using Test
2+
using GenericLinearAlgebra
3+
using GenericLinearAlgebra.LAPACK2
44

55
@testset "LAPACK wrappers" begin
66

test/qr.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using Base.Test
2-
using LinearAlgebra
3-
using LinearAlgebra.QRModule.qrBlocked!
1+
using Test
2+
using GenericLinearAlgebra
3+
using GenericLinearAlgebra.QRModule.qrBlocked!
44

55
@testset "The QR decomposition" begin
66
@testset "Problem dimension ($m,$n) with block size $bz" for (m, n) in (( 10, 5), ( 10, 10), ( 5, 10),

test/rectfullpacked.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using Base.Test
2-
import LinearAlgebra
3-
import LinearAlgebra: Ac_mul_A_RFP, TriangularRFP
1+
using Test
2+
import GenericLinearAlgebra
3+
import GenericLinearAlgebra: Ac_mul_A_RFP, TriangularRFP
44

55
@testset "Rectuangular Full Pack Format" begin
66

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Base.Test
1+
using Test
22

33
# @testset "The LinearAlgebra Test Suite" begin
44
include("cholesky.jl")

0 commit comments

Comments
 (0)