Skip to content

Commit

Permalink
Remove all RowMajor
Browse files Browse the repository at this point in the history
  • Loading branch information
alkino committed Dec 7, 2023
1 parent beaacfa commit 5130833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nrniv/nonlinz.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ NonLinImpRep::NonLinImpRep() {
if (neq_ == 0) {
return;
}
m_ = Eigen::SparseMatrix<std::complex<double>, Eigen::RowMajor>(neq_, neq_);
m_ = Eigen::SparseMatrix<std::complex<double>>(neq_, neq_);
pv_.resize(neq_);
pvdot_.resize(neq_);
v_.resize(neq_);
Expand Down

0 comments on commit 5130833

Please sign in to comment.