mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Removed bools forwarding at AbstractSpiceKernel::createSubNetlsit()
This commit is contained in:
parent
4eda84deda
commit
97b944f3d2
@ -507,10 +507,7 @@ void LibraryDialog::slotSave()
|
||||
"Check these components: %2 \n")
|
||||
.arg(Doc->DocName).arg(err_lst.join("; ")));
|
||||
}
|
||||
if ((QucsSettings.DefaultSimulator == spicecompat::simXyceSer)||
|
||||
(QucsSettings.DefaultSimulator == spicecompat::simXycePar))
|
||||
kern->createSubNetlsit(ts,true);
|
||||
else kern->createSubNetlsit(ts,false);
|
||||
kern->createSubNetlsit(ts);
|
||||
intoStream(Stream, tmp, "Spice");
|
||||
delete kern;
|
||||
}
|
||||
|
@ -185,7 +185,7 @@ void AbstractSpiceKernel::createNetlist(QTextStream&, int ,QStringList&,
|
||||
* \param xyce Default is false. Should be set in true if netlist is
|
||||
* prepared for Xyce simulator. For Ngspice should be false.
|
||||
*/
|
||||
void AbstractSpiceKernel::createSubNetlsit(QTextStream &stream, bool xyce)
|
||||
void AbstractSpiceKernel::createSubNetlsit(QTextStream &stream)
|
||||
{
|
||||
QString header;
|
||||
QString f = misc::properFileName(Sch->DocName);
|
||||
@ -223,6 +223,9 @@ void AbstractSpiceKernel::createSubNetlsit(QTextStream &stream, bool xyce)
|
||||
|
||||
header += "\n";
|
||||
stream<<header;
|
||||
bool xyce = false;
|
||||
if ((QucsSettings.DefaultSimulator == spicecompat::simXyceSer)||
|
||||
(QucsSettings.DefaultSimulator == spicecompat::simXycePar)) xyce = true;
|
||||
startNetlist(stream,xyce);
|
||||
stream<<".ENDS\n";
|
||||
}
|
||||
|
@ -63,7 +63,7 @@ public:
|
||||
~AbstractSpiceKernel();
|
||||
|
||||
bool checkSchematic(QStringList &incompat);
|
||||
virtual void createSubNetlsit(QTextStream& stream, bool xyce = false);
|
||||
virtual void createSubNetlsit(QTextStream& stream);
|
||||
|
||||
void parseNgSpiceSimOutput(QString ngspice_file,
|
||||
QList< QList<double> > &sim_points,
|
||||
|
@ -1796,10 +1796,7 @@ bool Schematic::createSubNetlist(QTextStream *stream, int& countInit,
|
||||
ErrText->insertPlainText(s);
|
||||
return false;
|
||||
}
|
||||
if ((QucsSettings.DefaultSimulator == spicecompat::simXyceSer)||
|
||||
(QucsSettings.DefaultSimulator == spicecompat::simXycePar))
|
||||
kern->createSubNetlsit(*stream,true);
|
||||
else kern->createSubNetlsit(*stream,false);
|
||||
kern->createSubNetlsit(*stream);
|
||||
|
||||
delete kern;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user