rlar
2555eeadef
fix the csh-problem $foo[$bar] and $foo[$&baz]
13 years ago
rlar
909f087237
cp_variablesubst() and cp_bquote(), rewrite
13 years ago
rlar
9eab66131d
cp_variablesubst() and cp_bquote(), rewrite
13 years ago
rlar
c2927128cd
whitespace
13 years ago
rlar
23d0f41e66
ft_find_analysis_parm(), change signature
13 years ago
rlar
4d65fb908d
use type `IFparm' to abbreviate some expressions
13 years ago
rlar
31b455afd4
if_getstat(), rewrite
13 years ago
rlar
fc2dd436fe
abstraction, new function `ft_find_analysis_parm()'
13 years ago
rlar
9d0500027c
abstraction, new function `ft_find_analysis()'
13 years ago
h_vogt
49c1385ba6
bug fix, `#248 Subcircuit call cannot have a node with same name as the subcircuit'
reported by Henrik Forstén
http://sourceforge.net/p/ngspice/bugs/248/
13 years ago
h_vogt
4f39648320
./BUGS, update the list of known bugs
13 years ago
h_vogt
88cd0f324d
bug fix, `#250 "<<NAN, error = 7>>" in op analysis'
http://sourceforge.net/p/ngspice/bugs/250/
13 years ago
rlar
6050e2e0ea
cleanup some extra parentheses
13 years ago
rlar
bedbdb65bb
cleanup some line wraps
13 years ago
rlar
ed6d7df0ce
inpdoopt.c, bug fix, `i' incremented twice when searching for "options"
13 years ago
rlar
852bb7a89f
minor, prepare for automatic indentation
13 years ago
rlar
7381081226
ciderlib, proper types for newCard(), setCardParm(), askCardQuest()
13 years ago
rlar
ccb600f3c1
drop `NIL' macro
13 years ago
rlar
f973e7107f
memory.h, polish macros
13 years ago
Henrik Forstén
44ef3db000
dstring_append_char(), rewrite
13 years ago
rlar
ade2f8c2c2
CKTmodCrt(), cleanup
13 years ago
rlar
86264b9879
CKTmodCrt(), cleanup, always assign to `*modfast'
for all invocations of CKTmodCrt() alias newModel()
the following is true
(modfast != NULL) && (*modfast == NULL)
see
(grep "git --no-pager grep -nH -e 'CKTmodCrt\\|newModel'")
13 years ago
rlar
df5c785a84
drop `INPmodUsed' which is redundant to `INPmodfast'
13 years ago
rlar
468b4b973c
nghash_delete() models and instances in CKTdltMod()
13 years ago
rlar
f29d683770
CKTfndMod(), cleanup
13 years ago
rlar
f0d36d956e
CKTfndMod(), cleanup
13 years ago
rlar
e7def1a0bc
CKTfndMod(), drop unused arguments `type' and `modfast'
13 years ago
rlar
7b495e0a7b
CKTfndMod(), use a hashtable
13 years ago
rlar
59309e196b
CKTfndMod(), cleanup
13 years ago
rlar
b32c15d85f
CKTfndMod(), dont pass the `type' argument by reference any more
13 years ago
rlar
494ef3f628
CKTfndMod(), cleanup
13 years ago
rlar
247ae92ae8
CKTfndMod(), unuse the `type' argument
13 years ago
rlar
f46dbc883b
CKTfndMod(), this wont happen any more and `*type' will be overwritten anyway
13 years ago
rlar
213304f745
CKTfndMod(), rewrite error expressions
13 years ago
rlar
f0882dbdfd
CKTfndMod(), return the found model instead of error code
13 years ago
rlar
b97c2ba5d1
CKTfndMod(), express error return value outside of this function
13 years ago
rlar
4cc57bdfd6
CKTfndMod(), this will never happen, when this series of rewrites is finished
13 years ago
rlar
bd7e93de6c
CKTfndMod(), assert some facts
13 years ago
rlar
e79135c556
CKTfndDev(), cleanup
13 years ago
rlar
ddc78067cc
CKTfndDev(), drop `type' and `fast' argument
13 years ago
rlar
6a9a246526
CKTfndDev(), rewrite invocations where `*fast == NULL'
13 years ago
rlar
f375ec6c10
CKTfndDev(), rewrite invocations where `type == NULL'
13 years ago
rlar
6c80cb4062
CKTfndDev(), unuse the type argument
13 years ago
rlar
390dccd44b
CKTfndDev(), rewrite error expressions
13 years ago
rlar
5daa676163
CKTfndDev(), return the found instance instead of error code
now if (fast != NULL)
CKTfndDev(,,fast, )
is equivalent to
*fast = CKTfndDev(,,fast, )
13 years ago
rlar
7bacfc73d1
CKTfndDev(), express error return value outside of this function
if (fast != NULL) then
err = CKTfndDev(,, fast, );
is equivalent to
err = CKTfndDev(,, fast, );
err = *fast ? OK : E_NODEV;
13 years ago
rlar
6e7d70e4bb
CKTfndDev(), assert some facts
13 years ago
rlar
d9fbb36ac7
CKTfndDev(), unuse `type' argument
13 years ago
rlar
7048bf7c15
CKTfndDev(), cleanup usage of `type' argument
13 years ago
rlar
8a98c784f6
CKTfndDev(), cleanup usage of impossible error codes
13 years ago