Try to fix netlist build visual studio 2015

This commit is contained in:
yz70s 2016-03-30 10:12:18 +02:00
parent 913ab1e140
commit f7dd940081
2 changed files with 2 additions and 2 deletions

View File

@ -512,7 +512,7 @@ int matrix_solver_sm_t<m_N, _storage_N>::solve_non_dynamic(ATTR_UNUSED const boo
}
else
{
if (not incremental)
if (!incremental)
{
for (int row = 0; row < iN; row ++)
for (int k = 0; k < iN; k++)

View File

@ -596,7 +596,7 @@ int matrix_solver_w_t<m_N, _storage_N>::solve_non_dynamic(ATTR_UNUSED const bool
}
/* Back substitution */
//inv(H) w = t w = H t
nl_double t[rowcount];
nl_double *t=new nl_double[rowcount];
for (int j = rowcount - 1; j >= 0; j--)
{
nl_double tmp = 0;