diff options
author | 2020-06-06 20:41:53 +0200 | |
---|---|---|
committer | 2020-06-06 20:43:12 +0200 | |
commit | 8a1ece4a3b10d035af91e71adef4384ced0e3fca (patch) | |
tree | 80a856030cd3e8e85cda249abf17259885cf98b4 /src/lib/netlist/plib/mat_cr.h | |
parent | e3901f419cb241be55bba6dd6dc29f0cf5778ae3 (diff) |
netlist: Reduce macro usage and make use of pstring utf8. (nw)
Diffstat (limited to 'src/lib/netlist/plib/mat_cr.h')
-rw-r--r-- | src/lib/netlist/plib/mat_cr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/netlist/plib/mat_cr.h b/src/lib/netlist/plib/mat_cr.h index 9dc5cc7b1f5..061e186d37f 100644 --- a/src/lib/netlist/plib/mat_cr.h +++ b/src/lib/netlist/plib/mat_cr.h @@ -160,7 +160,7 @@ namespace plib void mult_vec(VTR & res, const VTV & x) const noexcept { - // res = A * x + // res = A * x #if 0 //plib::omp::set_num_threads(4); plib::omp::for_static(0, constants<std::size_t>::zero(), m_size, [this, &res, &x](std::size_t row) |