Commented out code that prevented rawfile generation.

This commit is contained in:
pnenzi 2008-01-04 14:13:34 +00:00
parent 9b9f858ec5
commit b7a0ee52f1
2 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2008-01-04 Paolo Nenzi <p.nenzi@ieee.org>
* src/frontend/runcoms.c: commented out code that did not allow rawfile
generation for OP and AC analyses. Now rawfile is generated even for
OP and AC. I do not know if this is consistent with spice philosopy but
I think is nice to have.
2008-01-03 Dietmar Warning
* src/main.c: rflag still needed.

View File

@ -358,13 +358,16 @@ bool
ft_getOutReq(FILE **fpp, struct plot **plotp, bool *binp, char *name, char *title)
{
/*struct plot *pl;*/
#ifndef BATCH
/* PN: the following code prevents operating point an AC analysis
* dump in the rawfile -- it is still needed ?
*/
/* #ifndef BATCH
if ( (strcmp(name, "Operating Point")==0) ||
(strcmp(name, "AC Operating Point")==0) ) {
(strcmp(name, "AC Operating Point")==0) ) {
return (FALSE);
};
#endif
#endif */
if (rawfileFp) {
*fpp = rawfileFp;