Skip to content

Commit

Permalink
Merge 677c6f3 into f803e27
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasnoack committed Aug 10, 2018
2 parents f803e27 + 677c6f3 commit 679fb8f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ os:
- linux
- osx
julia:
- 0.7
- 1.0
- nightly
notifications:
email: true
Expand Down
2 changes: 1 addition & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
julia 0.7-alpha
julia 0.7
6 changes: 3 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using WoodburyMatrices
using LinearAlgebra, SparseArrays, Test
using Random: srand
using Random: seed!

@testset "WoodburyMatrices" begin
srand(123)
seed!(123)
n = 5

d = 1 .+ rand(n)
Expand All @@ -18,7 +18,7 @@ C = randn(2,2)

for elty in (Float32, Float64, ComplexF32, ComplexF64, Int)
if elty == Int
srand(61516384)
seed!(61516384)
d = rand(1:100, n)
dl = -rand(0:10, n-1)
du = -rand(0:10, n-1)
Expand Down
2 changes: 1 addition & 1 deletion test/runtests_sym.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using WoodburyMatrices
using Test

srand(123)
seed!(123)
n = 5

for elty in (Float32, Float64, ComplexF32, ComplexF64, Int), AMat in (x -> Matrix(Diagonal(x)),)
Expand Down

0 comments on commit 679fb8f

Please sign in to comment.