Skip to content

Commit

Permalink
lessen rand-ness in tests #188
Browse files Browse the repository at this point in the history
  • Loading branch information
jarlebring committed Aug 29, 2019
1 parent b5e591d commit d6ed1de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/proj.jl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ using Random
n=5;
Random.seed!(1)
A0=(1:5)*(1:5)'
A1=(1:5)*(3:8)'+I;
A1=(1:5)*(3:7)'+I;
t::Float64=3.0

minusop= S-> -S
Expand All @@ -35,8 +35,8 @@ using Random
n=8;
Random.seed!(1)
A0=(1:n)*(1:n)'/n
A1=(1:n)*(3:(n+3))'+I;
A2=(-1:(n-1))*(3:(n+3))'/8-I
A1=(1:n)*(3:(n+2))'+I;
A2=(-1:(n-1))*(3:(n+2))'/8-I
t=3.0

minusop= S-> -S
Expand Down

0 comments on commit d6ed1de

Please sign in to comment.