From 0e59399e2a0ce64caef7d9eababdb944f89f3e01 Mon Sep 17 00:00:00 2001 From: Francesco Lannutti Date: Mon, 27 May 2013 10:27:08 +0200 Subject: [PATCH] Avoid to verify Delta-V, since it's included in the KCL Verification --- src/maths/ni/niconv.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/maths/ni/niconv.c b/src/maths/ni/niconv.c index b43c68fcf..836594abd 100644 --- a/src/maths/ni/niconv.c +++ b/src/maths/ni/niconv.c @@ -22,15 +22,15 @@ NIconvTest(CKTcircuit *ckt) int size; /* size of the matrix */ CKTnode *node; /* current matrix entry */ -//#ifndef KIRCHHOFF +#ifndef KIRCHHOFF double old; double new; double tol; -//#endif +#endif size = SMPmatSize (ckt->CKTmatrix) ; -//#ifndef KIRCHHOFF +#ifndef KIRCHHOFF #ifdef STEPDEBUG for (i=1;i<=size;i++) { new = ckt->CKTrhs [i] ; @@ -59,8 +59,8 @@ NIconvTest(CKTcircuit *ckt) } } -//#else -#ifdef KIRCHHOFF +#else + /* KCL Verification */ double maximum = 0 ;