Commented out code that prevented rawfile generation.
This commit is contained in:
parent
9b9f858ec5
commit
b7a0ee52f1
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue