summaryrefslogtreecommitdiff
path: root/graphics/asymptote/runarray.cc
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2023-01-24 03:02:57 +0000
committerNorbert Preining <norbert@preining.info>2023-01-24 03:02:57 +0000
commitb06c6695162b493aeec3b594c6beb518c15c98ba (patch)
tree0c1dc3cfc73ea789d6bdc4673d776f3ef652d6d8 /graphics/asymptote/runarray.cc
parent4451a2090261307c963209bc65fea9fde4eceeea (diff)
CTAN sync 202301240302
Diffstat (limited to 'graphics/asymptote/runarray.cc')
-rw-r--r--graphics/asymptote/runarray.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/asymptote/runarray.cc b/graphics/asymptote/runarray.cc
index 3e7a6f7093..f841e0f522 100644
--- a/graphics/asymptote/runarray.cc
+++ b/graphics/asymptote/runarray.cc
@@ -2348,7 +2348,7 @@ void gen_runarray70(stack *Stack)
#ifdef HAVE_EIGEN_DENSE
size_t n=checkArray(a);
- MatrixXd A=MatrixXd::Random(n,n);
+ MatrixXd A(n,n);
RealSchur<MatrixXd> schur(n);
array *S=new array(2);
@@ -2400,7 +2400,7 @@ void gen_runarray71(stack *Stack)
#ifdef HAVE_EIGEN_DENSE
size_t n=checkArray(a);
- MatrixXcd A=MatrixXcd::Random(n,n);
+ MatrixXcd A(n,n);
ComplexSchur<MatrixXcd> schur(n);
array *S=new array(2);