lower-case the first string in an IOP("HuGo",...) incantation
This commit is contained in:
parent
c77ad38f30
commit
8bfc98d008
|
|
@ -1,3 +1,12 @@
|
|||
2011-07-26 Robert Larice
|
||||
* src/spicelib/devices/adms/admst/ngspice.xml :
|
||||
lower-case the first string in an IOP("HuGo",...) incantation
|
||||
|
||||
2011-07-26 Laurent Lemaitre
|
||||
* src/spicelib/devices/adms/admst/ngspice.xml :
|
||||
remove perl command in generated Makefime.am
|
||||
which lower-case'ed the first string in an IOP("HuGo",...) incantation
|
||||
|
||||
2011-07-26 Robert Larice
|
||||
* src/include/ngspice.h ,
|
||||
* src/spicelib/devices/adms/admst/ngspice.xml :
|
||||
|
|
|
|||
|
|
@ -5277,10 +5277,10 @@ int $(module)guesstopology (SMPmatrix *matrix, CKTcircuit *ckt, $(module)model *
|
|||
<admst:join select="modulevariablep[#parametertype='instance' and isparameter='yes']" separator=",\n">
|
||||
<admst:choose>
|
||||
<admst:when test="[type='real']">
|
||||
<admst:text format=" IOP("%(name)",$(module)_instance_%(name),IF_REAL,"%(name)")"/>
|
||||
<admst:text format=" IOP("%(lower-case(name))",$(module)_instance_%(name),IF_REAL,"%(name)")"/>
|
||||
</admst:when>
|
||||
<admst:when test="[type='integer']">
|
||||
<admst:text format=" IOP("%(name)",$(module)_instance_%(name),IF_INTEGER,"%(name)")"/>
|
||||
<admst:text format=" IOP("%(lower-case(name))",$(module)_instance_%(name),IF_INTEGER,"%(name)")"/>
|
||||
</admst:when>
|
||||
<admst:otherwise>
|
||||
<admst:fatal format="parameter of type 'string' not supported\n"/>
|
||||
|
|
@ -5292,10 +5292,10 @@ int $(module)guesstopology (SMPmatrix *matrix, CKTcircuit *ckt, $(module)model *
|
|||
<admst:join select="modulevariablep[#parametertype!='instance' and isparameter='yes']" separator=",\n">
|
||||
<admst:choose>
|
||||
<admst:when test="[type='real']">
|
||||
<admst:text format=" IOP("%(name)",$(module)_model_%(name),IF_REAL,"%(name)")"/>
|
||||
<admst:text format=" IOP("%(lower-case(name))",$(module)_model_%(name),IF_REAL,"%(name)")"/>
|
||||
</admst:when>
|
||||
<admst:when test="[type='integer']">
|
||||
<admst:text format=" IOP("%(name)",$(module)_model_%(name),IF_INTEGER,"%(name)")"/>
|
||||
<admst:text format=" IOP("%(lower-case(name))",$(module)_model_%(name),IF_INTEGER,"%(name)")"/>
|
||||
</admst:when>
|
||||
<admst:otherwise>
|
||||
<admst:fatal format="parameter of type 'string' not supported\n"/>
|
||||
|
|
|
|||
Loading…
Reference in New Issue