diff options
author | 2020-04-18 22:23:32 +0200 | |
---|---|---|
committer | 2020-04-18 22:23:32 +0200 | |
commit | 6d35a38bf299379ff30e9f622e44c2c4b75ab5af (patch) | |
tree | 281ea5a258f1315b72de62a2ca2ade2c247c50ea /src/lib/netlist/solver/nld_ms_gcr.h | |
parent | 39d7e8063a5b3f70891c363c0b130eba24d2f1c0 (diff) |
netlist: clang-tidy, srcclean and pedantic warnings fixed. (nw)
Diffstat (limited to 'src/lib/netlist/solver/nld_ms_gcr.h')
-rw-r--r-- | src/lib/netlist/solver/nld_ms_gcr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/solver/nld_ms_gcr.h b/src/lib/netlist/solver/nld_ms_gcr.h index 38f2dceabaa..da45c0e2880 100644 --- a/src/lib/netlist/solver/nld_ms_gcr.h +++ b/src/lib/netlist/solver/nld_ms_gcr.h @@ -158,7 +158,7 @@ namespace solver strm("\t{1};\n", terms); //for (std::size_t i = 0; i < railstart; i++) - // *tcr_r[i] += static_cast<FT>(go[i]); + // *tcr_r[i] += static_cast<FT>(go[i]); for (std::size_t i = 0; i < net.railstart(); i++) { @@ -172,7 +172,7 @@ namespace solver for (std::size_t i=1; i < net.count(); i++) terms += plib::pfmt(" + Idr[{1}]")(this->m_Idrn.didx(k,i)); //for (std::size_t i = railstart; i < term_count; i++) - // RHS_t += (- go[i]) * *cnV[i]; + // RHS_t += (- go[i]) * *cnV[i]; for (std::size_t i = net.railstart(); i < net.count(); i++) terms += plib::pfmt(" - go[{1}] * *cnV[{1}]")(this->m_gonn.didx(k,i), this->m_connected_net_Vn.didx(k,i)); |