From 2578a8f6ba7c83faa984cf7cb4e23d3e722593cb Mon Sep 17 00:00:00 2001 From: pnenzi Date: Sun, 29 Aug 2004 17:40:07 +0000 Subject: [PATCH] Updated bug list. --- BUGS | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/BUGS b/BUGS index 65c5eb59d..3c28e68ea 100644 --- a/BUGS +++ b/BUGS @@ -1,7 +1,23 @@ This file contais a list of known but not yet fixed bugs in ngspice. ==================================================================== -Rework 14: - If you run tests in the test tree, you will discover that some - of them fails because of a different value in "Reference Value". - Anyway, analyses results are not affected. +Rework15fixed: + +define/let commands: +the following code causes a segmentation fault: + +ngspice 1 -> define max(x,y) ( x gt y ) * x + ( x le y ) * y +ngspice 2 -> let z = max(2,3) +vec_free: Internal Error: not in plot +Segmentation fault (core dumped) + +--------------------------------------------------------------------- + +output redirection: + +ngspice 1 -> print v(1) > data.txt + +This syntax does not work anymore. If you wanto to use +output redirection you have to remove spaces around ">": + +ngspice 1 -> print v(1)>data.txt