rlar
|
4c1c95e20f
|
everywhere, use `TMALLOC()' instead of `alloc()'
|
10 years ago |
rlar
|
232debc6ec
|
drop `NEWN', use `TMALLOC'
|
11 years ago |
rlar
|
5ac7858a79
|
rewrite, use tprintf
|
11 years ago |
rlar
|
426f567287
|
spiceif.c, parmlookup(), allow more than one `IF_REDUNDANT' parameter alias
|
11 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 |
rlar
|
6050e2e0ea
|
cleanup some extra parentheses
|
13 years ago |
rlar
|
df5c785a84
|
drop `INPmodUsed' which is redundant to `INPmodfast'
|
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
|
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
|
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
|
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
|
0ab6a6e463
|
CKTfndDev(), drop unused argument `modfast'
|
13 years ago |
rlar
|
29c57dd857
|
cleanup IFnewUid() invocations
checked for object file invariance
|
13 years ago |
rlar
|
2f2da2bab2
|
cleanup OUTpBeginPlot() invocations
checked for object file invariance
|
13 years ago |
rlar
|
4ad4877e30
|
CKTfndDev(), drop unused argument `modname' which is always NULL
|
13 years ago |
rlar
|
7c9e6e6569
|
unify, use `ckt' instead of `ck'
|
13 years ago |
h_vogt
|
c15608c903
|
unique modtab for each circuit, store in ckt structure
|
13 years ago |
Stefano Perticaroli
|
79bffc78a1
|
next version of PSS2
which was reviewed and rewritten on branch `PSS-2-try-to-rebase+4'
by Stefano Perticaroli and Francesco Lannutti
|
13 years ago |
rlar
|
0be61b3e5a
|
remove PSS2
|
13 years ago |
dwarning
|
12b2287aa6
|
remove of modtab after the job is done to issue additional source commands
|
13 years ago |
h_vogt
|
d8d8cf147e
|
spiceif.c: correct types being loaded by snload()
|
14 years ago |
h_vogt
|
65b976dab7
|
rename commands 'savesnap', 'loadsnap' to 'snsave', 'snload'
to avoid conflict with command 'save'
|
14 years ago |
rlar
|
fe1acd3757
|
src/frontend/** remove superfluous `return' invocations
|
14 years ago |
rlar
|
ab98f03622
|
src/frontend/** whitespace, indentation, ...
checked for object file invariance on linux
|
14 years ago |
rlar
|
7454a6d486
|
src/frontend/**, whitespace, indentation, ...
untabify
delete-trailing-whitespace
braces
...
checked for object file invariance on linux
|
14 years ago |
rlar
|
64139a243c
|
spiceif.c, cleanup (checked for code invariance)
|
14 years ago |
rlar
|
0c230b2970
|
spiceif.c, cleanup (checked for code invariance)
|
14 years ago |
rlar
|
d50ffdd987
|
swallow warnings
|
14 years ago |
dwarning
|
99b167b272
|
correct alter of mos geometries for binned models
|
14 years ago |
h_vogt
|
07727f74f0
|
commands.c: 'options' equivalent to 'option' and allow 'loadsnap' and 'savesnap'
which have been EXPERIMENTAL_CODE so far
|
14 years ago |