forked from imr/ngspice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
20069 lines (16790 loc) · 671 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2017-08-25 h_vogt
This ChangeLog is no longer maintained.
Starting with ngspice-26, for code changes
please refer to the git repository at
https://sourceforge.net/p/ngspice/ngspice/ci/master/tree/.
Especially the 'history' button on the top of the page
will give all the change log information.
There are still some other ChangeLog files in various
subdirectories. All of them are no longer in use and are
kept only for historical reasons.
2014-01-03 h_vogt <h_vogt>
* INSTALL,
* configure.ac,
* tests/bin/ngspice.pm,
* visualc-shared/include/ngspice/config.h,
* visualc/include/ngspice/config.h:
ngspice-26: substitute 25 --> 26
2014-01-02 h_vogt <h_vogt>
* AUTHORS,
* NEWS:
ngspice-26: Henrik Forstén
2014-01-04 h_vogt <h_vogt>
* ANALYSES,
* AUTHORS,
* COPYING,
* DEVICES,
* FAQ,
* INSTALL,
* NEWS,
* README,
* README.tcl,
* Stuarts_Poly_Notes:
ngspice-26: update documentation
2014-01-04 h_vogt <h_vogt>
* ANALYSES,
* AUTHORS,
* BUGS,
* COPYING,
* DEVICES,
* FAQ,
* INSTALL,
* NEWS,
* README,
* README.adms,
* README.tcl,
* Stuarts_Poly_Notes:
whitespace
2014-01-11 h_vogt <h_vogt>
* tests/mos6/simpleinv.cir:
mos6/simple inverter: true inverter circuit
2014-01-10 h_vogt <h_vogt>
* examples/Monte_Carlo/MC_2_circ.sp,
* examples/Monte_Carlo/MC_2_control.sp:
monte carlo with control script and MOS parameter set containing AGAUSS parameter variations (like commercial parameter libraries)
2014-01-10 rlar <rlar>
* src/frontend/plotting/x11.c:
set X11 window title from `graph->plotname'
in response to a bug report by Dominique Michel
"#272 no title in plots"
http://sourceforge.net/p/ngspice/bugs/272/
2014-01-10 h_vogt <h_vogt>
* src/frontend/inpcom.c:
inpcom.c: E, G source, improved search for 'vol' and 'cur'
in response to a bug report by Marlize Schoeman
"#274 VCVS Exxxx name and node names do not allow VOL as text"
http://sourceforge.net/p/ngspice/bugs/274/
2014-01-09 rlar <rlar>
* src/frontend/numparam/xpressn.c:
parseunit(), support 'T' for "Tera"
in response to a bug report by Andy Fierman
"#273 T = Tera = 1e12 suffix is ignored when used in a parameter in a subcircuit."
http://sourceforge.net/p/ngspice/bugs/273/
2014-01-08 h_vogt <h_vogt>
* src/frontend/inp.c,
* src/spicelib/parser/inp2q.c:
inp.c, inp2q.c improve error message
when we exit() in batch mode due to a missing model definition
2014-01-06 rlar <rlar>
* src/frontend/inp.c:
workaround, avoid batch termination when there are .model issues
these were introduced by commit
"inp.c, evtinit.c: improved error message suggested by Calin Andrian"
and caused ngspice checks to fail unexpectedly
2014-01-05 dwarning <dwarning>
* tests/hisim/nmos/qaSpec,
* tests/hisim/pmos/qaSpec,
* tests/hisimhv1/nmos/qaSpec.basic,
* tests/hisimhv1/pmos/qaSpec.basic:
correct parameter names for hisim qa checks
2014-01-05 h_vogt <h_vogt>
* src/frontend/plotting/gnuplot.c:
gnuplot.c: enable correct terminal for non MINGW/MSVC
2014-01-03 rlar <rlar>
* src/spicelib/analysis/noisean.c,
* src/spicelib/analysis/tfanal.c:
tfanal.c noisean.c, bug fix which was introduced in "CKTfndDev(), rewrite"
the original CKTfndDev() was able to limit its search
for an instance with given name
to instances of a certain "type"
(this was a speed optimisation which is of no use anymore,
because we use a hashtable now)
the new CKTfndDev() does not consider "type"
thus, here in tfanal.c and noisean.c we have to check the "type"
after CKTfndDev() since we no longer can limit its search
to the given "type"
2014-01-04 h_vogt <h_vogt>
* src/frontend/variable.c:
variable.c: prevent buffer overflow by limiting variable output to BSIZE_SP characters
2014-01-03 h_vogt <h_vogt>
* src/include/ngspice/cm.h:
cm.h: add config.h to access #defines
2014-01-03 h_vogt <h_vogt>
* src/frontend/com_ghelp.c:
com_ghelp.c: add info on non-availability of help to console versions w/o X display.
2013-12-30 rlar <rlar>
* src/xspice/icm/analog/square/cfunc.mod,
* src/xspice/icm/analog/square/ifspec.ifs,
* src/xspice/icm/analog/triangle/cfunc.mod,
* src/xspice/icm/analog/triangle/ifspec.ifs:
analog/{square,triangle}, store boolean tran_init in STATIC_VAR itself
2013-12-30 rlar <rlar>
* src/xspice/icm/analog/sine/cfunc.mod,
* src/xspice/icm/analog/sine/ifspec.ifs,
* src/xspice/icm/analog/square/cfunc.mod,
* src/xspice/icm/analog/triangle/cfunc.mod,
* src/xspice/icm/xtradev/core/cfunc.mod,
* src/xspice/icm/xtradev/core/ifspec.ifs:
analog/{sine,square,triangle}, xtradev/core, change array access
avoid copy of parameter array,
which would need to be freed to avoid a memory leak
this is a modified and partial version of a patch provided by
Krzysztof Blaszkowski <kb@sysmikro.com.pl>
2013-12-30 rlar <rlar>
* src/xspice/icm/analog/sine/cfunc.mod,
* src/xspice/icm/analog/sine/sin.h,
* src/xspice/icm/analog/square/cfunc.mod,
* src/xspice/icm/analog/square/square.h,
* src/xspice/icm/analog/triangle/cfunc.mod,
* src/xspice/icm/analog/triangle/triangle.h,
* src/xspice/icm/xtradev/core/cfunc.mod,
* src/xspice/icm/xtradev/core/core.h:
analog/{sine,square,triangle}, xtradev/core, drop .h files
2013-12-30 rlar <rlar>
* src/xspice/icm/analog/sine/cfunc.mod,
* src/xspice/icm/analog/sine/ifspec.ifs,
* src/xspice/icm/analog/sine/sin.h,
* src/xspice/icm/analog/square/cfunc.mod,
* src/xspice/icm/analog/square/ifspec.ifs,
* src/xspice/icm/analog/square/square.h,
* src/xspice/icm/analog/triangle/cfunc.mod,
* src/xspice/icm/analog/triangle/ifspec.ifs,
* src/xspice/icm/analog/triangle/triangle.h,
* src/xspice/icm/xtradev/core/cfunc.mod,
* src/xspice/icm/xtradev/core/core.h,
* src/xspice/icm/xtradev/core/ifspec.ifs:
analog/{sine,square,triangle}, xtradev/core, whitespace cleanup
2013-12-16 dwarning <dwarning>
* examples/various/FFT_Leakage.cir,
* examples/various/FFT_tests.cir:
two examples to show fft/ifft vector command
2013-12-03 dwarning <dwarning>
* src/frontend/trannoise/1-f-code.c:
1-f-code.c, correct the printout for noise generation
2013-12-02 dwarning <dwarning>
* src/frontend/trannoise/1-f-code.c,
* src/spicelib/devices/isrc/isrcacct.c,
* src/spicelib/devices/vsrc/vsrcacct.c:
1-f-code.c, use fftw3
2013-12-02 dwarning <dwarning>
* src/frontend/com_fft.c:
com_fft.c, set hanning as default window
2013-12-02 dwarning <dwarning>
* src/frontend/com_fft.c:
com_fft.c, rename variable `tlen' --> `length'
2013-11-25 dwarning <dwarning>
* src/frontend/com_fft.c:
com_fft.c, correct array size and relay to specific array order for r2c transformation
2013-11-24 dwarning <dwarning>
* src/frontend/com_fft.c:
com_fft.c, use FFTW3 for com_fft() and com_psd()
2013-11-24 dwarning <dwarning>
* src/include/ngspice/fftext.h,
* src/maths/fft/fftext.c:
fftext.c, move the Bourke FFT code to fftext.c (rename macro)
2013-11-24 dwarning <dwarning>
* src/frontend/com_fft.c,
* src/include/ngspice/fftext.h,
* src/maths/fft/fftext.c:
fftext.c, move the Bourke FFT code to fftext.c (as a backup)
2013-11-21 dwarning <dwarning>
* src/maths/cmaths/cmath4.c:
cmath4.c, drop unused doubledouble()
2013-11-25 dwarning <dwarning>
* src/maths/cmaths/cmath4.c:
cmath4.c, correct array size and relay to specific array order for r2c transformation
2013-11-21 dwarning <dwarning>
* src/maths/cmaths/cmath4.c:
cmath4.c, correct scale for ifft
2013-11-21 dwarning <dwarning>
* configure.ac,
* src/maths/cmaths/cmath4.c:
cmath4.c, use FFTW3 for cx_fft() and cx_ifft()
2013-12-29 h_vogt <h_vogt>
* visualc/.gitignore,
* visualc/fftw3/fftw-3.3.3-dll32/README-ngspice.txt,
* visualc/fftw3/fftw-3.3.3-dll64/README-ngspice.txt,
* visualc/vngspice_fftw.sln,
* visualc/vngspice_fftw.vcproj:
VC project with FFTW3 library enabled
2013-11-21 dwarning <dwarning>
* visualc/vngspice_fftw.sln,
* visualc/vngspice_fftw.vcproj:
visualc, copy to new project which uses the FFTW3 library
2013-11-24 dwarning <dwarning>
* src/frontend/com_fft.c,
* src/maths/cmaths/cmath4.c:
cmath4.c, com_fft.c, cleanup
2013-11-24 dwarning <dwarning>
* src/frontend/com_fft.c,
* src/maths/cmaths/cmath4.c:
cmath4.c, com_fft.c, rename `size' --> `N' and `mm' --> `M'
2013-12-31 rlar <rlar>
* .gitignore,
* visualc-shared/.gitignore,
* visualc/.gitignore:
polish .gitignore
2013-12-31 h_vogt <h_vogt>
* visualc/vngspice.vcproj:
bugfix: add CONFIG64 to console64/debug
2013-12-29 h_vogt <h_vogt>
* visualc/vngspice.sln,
* visualc/vngspice.vcproj:
VC project, output directory "64"
2013-12-30 h_vogt <h_vogt>
* src/maths/poly/polyfit.c:
polyfit.c, speed up fitting process when degree == 1
this patch war provided by Henrik Forstén in
"#14 Special case for polyfit, move initw()"
http://sourceforge.net/p/ngspice/patches/14/
2013-12-28 h_vogt <h_vogt>
* src/frontend/inpcom.c:
inpcom.c: allow node names and .func parameters having
equal string representation
2013-12-30 h_vogt <h_vogt>
* src/frontend/outitf.c,
* src/main.c:
main.c, suppress progress report when '-o' is used to redirect output
2013-12-30 h_vogt <h_vogt>
* src/main.c:
main.c, fix stdout and stderr redirection and buffering with regard to '-o' and '-p'
in response to a bug report from Johann Glaser
"#259 Pipe mode: buffering"
http://sourceforge.net/p/ngspice/bugs/259/
2013-12-27 h_vogt <h_vogt>
* src/frontend/inpcom.c:
inpcom.c: enable .include with $end-of-line in .control section
2013-12-27 dwarning <dwarning>
* tests/bsim4/nmos/qaSpec,
* tests/bsim4/pmos/qaSpec:
correct bsim4 parameter mobmod
2013-12-22 h_vogt <h_vogt>
* src/include/ngspice/ngspice.h:
C99 functions are only available in MSVC 2013 and newer. Still needs testing!
2013-12-16 rlar <rlar>
* src/spicelib/parser/ptfuncs.c:
ptfuncs.c, drop inaccurate replacements for ashinh() acosh() and atanh()
2013-12-16 rlar <rlar>
* src/frontend/numparam/xpressn.c,
* src/include/ngspice/ngspice.h,
* tests/regression/parser/xpressn-1.cir,
* visualc/msvc-compat.c:
xpressn.c, introduce fortran style nint() rounding function
2013-12-22 rlar <rlar>
* configure.ac,
* src/frontend/subckt.c,
* tests/regression/Makefile.am,
* tests/regression/subckt-processing/Makefile.am,
* tests/regression/subckt-processing/model-scope-5.cir,
* tests/regression/subckt-processing/model-scope-5.out:
subckt.c, fix .model processing (scope)
2013-12-21 h_vogt <h_vogt>
* src/frontend/inpcom.c:
enable parameter replacement in R, L, C lines, if equation is
without {} and not in a subcircuit
2013-12-21 h_vogt <h_vogt>
* src/frontend/inpcom.c:
inpcom.c: allow proper 'temper' substitution
if device name and parameter name are the same,
or if parameter name is the last token in the line.
2013-12-21 h_vogt <h_vogt>
* src/frontend/inp.c:
inp.c: evaluate for 'temper' only the models which have
been entered into the hash table ckt->MODnameHash
2013-12-17 h_vogt <h_vogt>
* src/spicelib/analysis/dctran.c:
dctran.c bug fix, reported by Berk Özer
2013-12-14 h_vogt <h_vogt>
* src/frontend/inpcom.c:
inpcom.c remove bug: parens around equation h, f
add equation + temper capability to gain of F-Source
2013-12-13 h_vogt <h_vogt>
* src/frontend/inpcom.c:
inpcom.c: H Source with equation and temper in transresistance
2013-12-17 h_vogt <h_vogt>
* visualc-shared/sharedspice.vcproj:
sharedspice.vcproj, add soa
2013-12-07 dwarning <dwarning>
* examples/various/modelcard.nmos,
* examples/various/modelcard.pmos,
* examples/various/nic_soa.cir:
soa check example
2013-10-31 dwarning <dwarning>
* src/spicelib/devices/vbic/Makefile.am,
* src/spicelib/devices/vbic/vbic.c,
* src/spicelib/devices/vbic/vbicdefs.h,
* src/spicelib/devices/vbic/vbicext.h,
* src/spicelib/devices/vbic/vbicinit.c,
* src/spicelib/devices/vbic/vbicmask.c,
* src/spicelib/devices/vbic/vbicmpar.c,
* src/spicelib/devices/vbic/vbicsetup.c,
* src/spicelib/devices/vbic/vbicsoachk.c,
* visualc/vngspice.vcproj:
devices/vbic, implement VBICsoaCheck()
2013-10-31 dwarning <dwarning>
* src/spicelib/devices/hisim2/Makefile.am,
* src/spicelib/devices/hisim2/hsm2.c,
* src/spicelib/devices/hisim2/hsm2def.h,
* src/spicelib/devices/hisim2/hsm2ext.h,
* src/spicelib/devices/hisim2/hsm2init.c,
* src/spicelib/devices/hisim2/hsm2mask.c,
* src/spicelib/devices/hisim2/hsm2mpar.c,
* src/spicelib/devices/hisim2/hsm2set.c,
* src/spicelib/devices/hisim2/hsm2soachk.c,
* visualc/vngspice.vcproj:
devices/hisim2, implement HSM2soaCheck()
2013-10-30 dwarning <dwarning>
* src/spicelib/devices/hisimhv1/Makefile.am,
* src/spicelib/devices/hisimhv1/hsmhv.c,
* src/spicelib/devices/hisimhv1/hsmhvdef.h,
* src/spicelib/devices/hisimhv1/hsmhvext.h,
* src/spicelib/devices/hisimhv1/hsmhvinit.c,
* src/spicelib/devices/hisimhv1/hsmhvmask.c,
* src/spicelib/devices/hisimhv1/hsmhvmpar.c,
* src/spicelib/devices/hisimhv1/hsmhvset.c,
* src/spicelib/devices/hisimhv1/hsmhvsoachk.c,
* visualc/vngspice.vcproj:
devices/hisimhv1, implement HSMHVsoaCheck()
2013-10-30 dwarning <dwarning>
* src/spicelib/devices/bsimsoi/Makefile.am,
* src/spicelib/devices/bsimsoi/b4soi.c,
* src/spicelib/devices/bsimsoi/b4soidef.h,
* src/spicelib/devices/bsimsoi/b4soiext.h,
* src/spicelib/devices/bsimsoi/b4soiinit.c,
* src/spicelib/devices/bsimsoi/b4soimask.c,
* src/spicelib/devices/bsimsoi/b4soimpar.c,
* src/spicelib/devices/bsimsoi/b4soiset.c,
* src/spicelib/devices/bsimsoi/b4soisoachk.c,
* visualc/vngspice.vcproj:
devices/bsimsoi, implement B4SOIsoaCheck()
2013-10-30 dwarning <dwarning>
* src/spicelib/devices/bsim4v6/Makefile.am,
* src/spicelib/devices/bsim4v6/b4v6.c,
* src/spicelib/devices/bsim4v6/b4v6mask.c,
* src/spicelib/devices/bsim4v6/b4v6mpar.c,
* src/spicelib/devices/bsim4v6/b4v6set.c,
* src/spicelib/devices/bsim4v6/b4v6soachk.c,
* src/spicelib/devices/bsim4v6/bsim4v6def.h,
* src/spicelib/devices/bsim4v6/bsim4v6ext.h,
* src/spicelib/devices/bsim4v6/bsim4v6init.c,
* visualc/vngspice.vcproj:
devices/bsim4v6, implement BSIM4v6soaCheck()
2013-10-30 dwarning <dwarning>
* src/spicelib/devices/bsim4v5/Makefile.am,
* src/spicelib/devices/bsim4v5/b4v5.c,
* src/spicelib/devices/bsim4v5/b4v5mask.c,
* src/spicelib/devices/bsim4v5/b4v5mpar.c,
* src/spicelib/devices/bsim4v5/b4v5set.c,
* src/spicelib/devices/bsim4v5/b4v5soachk.c,
* src/spicelib/devices/bsim4v5/bsim4v5def.h,
* src/spicelib/devices/bsim4v5/bsim4v5ext.h,
* src/spicelib/devices/bsim4v5/bsim4v5init.c,
* visualc/vngspice.vcproj:
devices/bsim4v5, implement BSIM4v5soaCheck()
2013-10-30 dwarning <dwarning>
* src/spicelib/devices/bsim4/Makefile.am,
* src/spicelib/devices/bsim4/b4.c,
* src/spicelib/devices/bsim4/b4mask.c,
* src/spicelib/devices/bsim4/b4mpar.c,
* src/spicelib/devices/bsim4/b4set.c,
* src/spicelib/devices/bsim4/b4soachk.c,
* src/spicelib/devices/bsim4/bsim4def.h,
* src/spicelib/devices/bsim4/bsim4ext.h,
* src/spicelib/devices/bsim4/bsim4init.c,
* visualc/vngspice.vcproj:
devices/bsim4, implement BSIM4soaCheck()
2013-10-30 dwarning <dwarning>
* src/spicelib/devices/bsim3v32/Makefile.am,
* src/spicelib/devices/bsim3v32/b3v32.c,
* src/spicelib/devices/bsim3v32/b3v32mask.c,
* src/spicelib/devices/bsim3v32/b3v32mpar.c,
* src/spicelib/devices/bsim3v32/b3v32set.c,
* src/spicelib/devices/bsim3v32/b3v32soachk.c,
* src/spicelib/devices/bsim3v32/bsim3v32def.h,
* src/spicelib/devices/bsim3v32/bsim3v32ext.h,
* src/spicelib/devices/bsim3v32/bsim3v32init.c,
* visualc/vngspice.vcproj:
devices/bsim3v32, implement BSIM3v32soaCheck()
2013-10-30 dwarning <dwarning>
* src/spicelib/devices/bsim3/Makefile.am,
* src/spicelib/devices/bsim3/b3.c,
* src/spicelib/devices/bsim3/b3mask.c,
* src/spicelib/devices/bsim3/b3mpar.c,
* src/spicelib/devices/bsim3/b3set.c,
* src/spicelib/devices/bsim3/b3soachk.c,
* src/spicelib/devices/bsim3/bsim3def.h,
* src/spicelib/devices/bsim3/bsim3ext.h,
* src/spicelib/devices/bsim3/bsim3init.c,
* visualc/vngspice.vcproj:
devices/bsim3, implement BSIM3soaCheck()
2013-11-01 dwarning <dwarning>
* src/spicelib/devices/bjt/Makefile.am,
* src/spicelib/devices/bjt/bjt.c,
* src/spicelib/devices/bjt/bjtdefs.h,
* src/spicelib/devices/bjt/bjtext.h,
* src/spicelib/devices/bjt/bjtinit.c,
* src/spicelib/devices/bjt/bjtmask.c,
* src/spicelib/devices/bjt/bjtmpar.c,
* src/spicelib/devices/bjt/bjtsetup.c,
* src/spicelib/devices/bjt/bjtsoachk.c,
* visualc/vngspice.vcproj:
devices/bjt, implement BJTsoaCheck()
2013-10-30 dwarning <dwarning>
* src/spicelib/devices/dio/Makefile.am,
* src/spicelib/devices/dio/dio.c,
* src/spicelib/devices/dio/diodefs.h,
* src/spicelib/devices/dio/dioext.h,
* src/spicelib/devices/dio/dioinit.c,
* src/spicelib/devices/dio/diomask.c,
* src/spicelib/devices/dio/diompar.c,
* src/spicelib/devices/dio/diosetup.c,
* src/spicelib/devices/dio/diosoachk.c,
* visualc/vngspice.vcproj:
devices/dio, implement DIOsoaCheck()
2013-10-30 dwarning <dwarning>
* src/spicelib/devices/cap/Makefile.am,
* src/spicelib/devices/cap/cap.c,
* src/spicelib/devices/cap/capask.c,
* src/spicelib/devices/cap/capdefs.h,
* src/spicelib/devices/cap/capext.h,
* src/spicelib/devices/cap/capinit.c,
* src/spicelib/devices/cap/capmask.c,
* src/spicelib/devices/cap/capmpar.c,
* src/spicelib/devices/cap/capparam.c,
* src/spicelib/devices/cap/capsetup.c,
* src/spicelib/devices/cap/capsoachk.c,
* visualc/vngspice.vcproj:
devices/cap, implement CAPsoaCheck()
2013-10-30 dwarning <dwarning>
* src/spicelib/devices/res/Makefile.am,
* src/spicelib/devices/res/res.c,
* src/spicelib/devices/res/resask.c,
* src/spicelib/devices/res/resdefs.h,
* src/spicelib/devices/res/resext.h,
* src/spicelib/devices/res/resinit.c,
* src/spicelib/devices/res/resmask.c,
* src/spicelib/devices/res/resmpar.c,
* src/spicelib/devices/res/resparam.c,
* src/spicelib/devices/res/ressetup.c,
* src/spicelib/devices/res/ressoachk.c,
* visualc/vngspice.vcproj:
devices/res, implement RESsoaCheck()
2013-11-01 rlar <rlar>
* src/include/ngspice/cktdefs.h,
* src/spicelib/analysis/dcop.c,
* src/spicelib/analysis/dctran.c,
* src/spicelib/analysis/dctrcurv.c,
* src/spicelib/devices/cktsoachk.c:
introduce CKTsoaInit()
2013-10-30 dwarning <dwarning>
* src/frontend/inp.c,
* src/include/ngspice/cktdefs.h,
* src/include/ngspice/ngspice.h,
* src/main.c,
* src/spicelib/analysis/dcop.c,
* src/spicelib/analysis/dctran.c,
* src/spicelib/analysis/dctrcurv.c,
* src/spicelib/devices/Makefile.am,
* src/spicelib/devices/cktsoachk.c,
* src/spicelib/devices/devsup.c,
* visualc/vngspice.vcproj:
implement CKTsoaCheck()
2013-10-30 dwarning <dwarning>
* src/include/ngspice/devdefs.h,
* src/spicelib/devices/adms/admst/ngspiceMODULEinit.c.xml,
* src/spicelib/devices/asrc/asrcinit.c,
* src/spicelib/devices/bjt/bjtinit.c,
* src/spicelib/devices/bsim1/bsim1init.c,
* src/spicelib/devices/bsim2/bsim2init.c,
* src/spicelib/devices/bsim3/bsim3init.c,
* src/spicelib/devices/bsim3soi_dd/b3soiddinit.c,
* src/spicelib/devices/bsim3soi_fd/b3soifdinit.c,
* src/spicelib/devices/bsim3soi_pd/b3soipdinit.c,
* src/spicelib/devices/bsim3v0/bsim3v0init.c,
* src/spicelib/devices/bsim3v1/bsim3v1init.c,
* src/spicelib/devices/bsim3v32/bsim3v32init.c,
* src/spicelib/devices/bsim4/bsim4init.c,
* src/spicelib/devices/bsim4v4/bsim4v4init.c,
* src/spicelib/devices/bsim4v5/bsim4v5init.c,
* src/spicelib/devices/bsim4v6/bsim4v6init.c,
* src/spicelib/devices/bsimsoi/b4soiinit.c,
* src/spicelib/devices/cap/capinit.c,
* src/spicelib/devices/cccs/cccsinit.c,
* src/spicelib/devices/ccvs/ccvsinit.c,
* src/spicelib/devices/cpl/cplinit.c,
* src/spicelib/devices/csw/cswinit.c,
* src/spicelib/devices/dio/dioinit.c,
* src/spicelib/devices/hfet1/hfetinit.c,
* src/spicelib/devices/hfet2/hfet2init.c,
* src/spicelib/devices/hisim2/hsm2init.c,
* src/spicelib/devices/hisimhv1/hsmhvinit.c,
* src/spicelib/devices/ind/indinit.c,
* src/spicelib/devices/isrc/isrcinit.c,
* src/spicelib/devices/jfet/jfetinit.c,
* src/spicelib/devices/jfet2/jfet2init.c,
* src/spicelib/devices/ltra/ltrainit.c,
* src/spicelib/devices/mes/mesinit.c,
* src/spicelib/devices/mesa/mesainit.c,
* src/spicelib/devices/mos1/mos1init.c,
* src/spicelib/devices/mos2/mos2init.c,
* src/spicelib/devices/mos3/mos3init.c,
* src/spicelib/devices/mos6/mos6init.c,
* src/spicelib/devices/mos9/mos9init.c,
* src/spicelib/devices/nbjt/nbjtinit.c,
* src/spicelib/devices/nbjt2/nbt2init.c,
* src/spicelib/devices/ndev/ndevinit.c,
* src/spicelib/devices/numd/numdinit.c,
* src/spicelib/devices/numd2/numd2init.c,
* src/spicelib/devices/numos/numosinit.c,
* src/spicelib/devices/res/resinit.c,
* src/spicelib/devices/soi3/soi3init.c,
* src/spicelib/devices/sw/swinit.c,
* src/spicelib/devices/tra/trainit.c,
* src/spicelib/devices/txl/txlinit.c,
* src/spicelib/devices/urc/urcinit.c,
* src/spicelib/devices/vbic/vbicinit.c,
* src/spicelib/devices/vccs/vccsinit.c,
* src/spicelib/devices/vcvs/vcvsinit.c,
* src/spicelib/devices/vsrc/vsrcinit.c,
* src/xspice/cmpp/writ_ifs.c:
introduce new SPICEdev operation `DEVsoaCheck()'
2013-08-03 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, drop cp_tildexpand() in expand_this(), inp_pathresolve_at() shall do this
2013-08-04 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, rewrite .lib reading
use canonical file names to remember known .lib files
remember their directories in `habitat'
use inp_pathresolve_at() to find .lib files with regard to `searchpath' and current directory
2013-07-31 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, recurse expand_section_ref()
2013-07-31 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, cleanup
2013-08-03 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, whitespace cleanup
2013-08-03 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, reorder
2013-08-03 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, abstraction, introduce expand_section_ref()
2013-08-03 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, simplify `.include' file processing using inp_pathresolve_at()
2013-08-03 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, introduce inp_pathresolve_at()
2013-10-24 h_vogt <h_vogt>
* src/misc/tilde.c:
tilde.c, enable search for home dir under MS Windows
2013-10-31 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, introduce inp_pathresolve(), rewrite inp_pathopen() using this
2013-10-25 h_vogt <h_vogt>
* src/frontend/inpcom.c:
inpcom.c, for mingw absolute pathnames may begin with /d/
allow this when variable 'mingwpath' is set in .spinit
2013-11-09 h_vogt <h_vogt>
* src/frontend/inpcom.c,
* src/main.c:
inpcom.c, remove variable "sourcefile" and references to "sourcefile"
this will no longer be required for access to input file residing
in the executable's directory
2013-10-31 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, fix inp_pathopen(), always try to fopen() relative to the current working directory first
2013-10-31 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, fix inp_pathopen(), relative path shall be expanded regarding "sourcepath"
2013-12-08 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, simplify using is_plain_filename(), fix incorrect comments
2013-12-08 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, implement is_absolute_pathname() and is_plain_filename()
2013-12-11 h_vogt <h_vogt>
* src/spicelib/devices/dev.c:
remove redundant #include
2013-12-11 h_vogt <h_vogt>
* src/frontend/inp.c,
* src/xspice/evt/evtinit.c:
inp.c, evtinit.c: improved error message
suggested by Calin Andrian
2013-12-11 h_vogt <h_vogt>
* src/frontend/inp.c:
prevent crash, if due to input bug ckt is not created,
reported by Andrian
2013-12-08 rlar <rlar>
* src/xspice/icm/GNUmakefile.in,
* src/xspice/icm/makedefs.in:
xspice, move `-lm' to the end of the linker command line
2013-12-07 h_vogt <h_vogt>
* src/frontend/numparam/xpressn.c,
* src/include/ngspice/ngspice.h,
* visualc-shared/sharedspice.vcproj,
* visualc/msvc-compat.c,
* visualc/vngspice.vcproj:
replacements for functions missing in the msvc world
2013-12-05 Calin Andrian <calin.andrian@gmail.com>
* src/xspice/mif/mifgetvalue.c:
MIFget_boolean(), allow numeric values 0 and 1 too
2013-12-05 Anthony J. Bentley <anthony@cathet.us>
* src/maths/misc/randnumb.c:
remove unnecessary include of sys/timeb.h.
2013-12-05 Anthony J. Bentley <anthony@cathet.us>
* man/man1/ngmultidec.1,
* man/man1/ngnutmeg.1,
* man/man1/ngsconvert.1,
* man/man1/ngspice.1:
man page fixes.
- Start new sentences on a new line, so that troff gets inter-sentence
spacing correct.
- Remove unterminated quotation mark.
- Replace no-longer-defined "spice" macro with a literal string.
- Remove trailing whitespace.
- Close literal contexts instead of letting them propagate throughout an
entire section.
2013-11-09 rlar <rlar>
* configure.ac,
* tests/regression/Makefile.am,
* tests/regression/parser/Makefile.am,
* tests/regression/parser/minus-minus.cir,
* tests/regression/parser/minus-minus.out,
* tests/regression/parser/xpressn-1.cir,
* tests/regression/parser/xpressn-1.out,
* tests/regression/parser/xpressn-2.cir,
* tests/regression/parser/xpressn-2.out:
tests/regression/parser
check xpressn.c parser capability to parse {2--3}
check .control parser capability to parse 2--3
check B parser capability to parse 2--3
check echo commands capability to print "--"
check echo commands capability to print upper and lower case
check xpressn.c parser capabilities
check precision of some transcendental functions
2013-11-08 rlar <rlar>
* tests/regression/lib-processing/ex1a.out,
* tests/regression/lib-processing/ex1b.out,
* tests/regression/lib-processing/ex2a.out,
* tests/regression/lib-processing/ex3a.out:
tests/regression/lib-processing, fix upper/lower case
2013-11-09 rlar <rlar>
* src/frontend/numparam/spicenum.c,
* src/frontend/numparam/xpressn.c:
numparam, almost full precision for stringified double float numbers
2013-11-07 rlar <rlar>
* src/frontend/numparam/xpressn.c:
xpressn.c, drop initkeys()
2013-11-07 rlar <rlar>
* src/frontend/numparam/xpressn.c:
xpressn.c, drop "AND OR NOT DIV MOD DEFINED" keywords
2013-11-07 rlar <rlar>
* src/frontend/numparam/xpressn.c:
xpressn.c, use C strings for the arguments of `keywords()'
2013-11-07 rlar <rlar>
* src/frontend/numparam/xpressn.c:
xpressn.c, drop '&' and '|' operators, (we have '&&' and '||')
2013-11-07 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, exclude currently unused functions
2013-11-07 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, drop ternary_fcn code in inpcom.c, the extended "formula" shall process ternary expressions
2013-11-07 rlar <rlar>
* src/frontend/numparam/xpressn.c:
xpressn.c, whitespace cleanup
2013-10-15 rlar <rlar>
* src/frontend/numparam/xpressn.c:
xpressn.c, implement a?b:c in the "formula" parser
2013-12-01 rlar <rlar>
* src/frontend/numparam/xpressn.c:
xpressn.c, drop XFU_V
probably accidentally introduced in commit
> Author: h_vogt <h_vogt>
> Date: Sun Feb 7 11:27:59 2010 +0000
>
> improved numparam error message
2013-12-01 rlar <rlar>
* src/frontend/numparam/xpressn.c:
xpressn.c, use enums instead of literals
2013-12-01 rlar <rlar>
* src/frontend/numparam/numparam.h,
* src/frontend/numparam/xpressn.c:
xpressn.c, drop "Defd" enum, to be incorporated into a bigger enum
2013-11-24 rlar <rlar>
* src/frontend/numparam/numparam.h,
* src/frontend/numparam/xpressn.c:
xpressn.c, fix semantics of `int(x)' and remove dangerous macros
int(x) most probably shall be trunc(x) instead of floor(x)
note trunc(x) was #defined beeing floor(x)
note ln(x) was #defined beeing log(x)
2013-11-29 rlar <rlar>
* src/frontend/numparam/general.h,
* src/frontend/numparam/mystring.c,
* src/frontend/numparam/nupatest.c,
* src/frontend/numparam/spicenum.c:
fix an endless loop waiting for y/n when the input is at EOF
reported by Calin Andrian
Subject: [Ngspice-devel] Invaild number bug
2013-11-01 rlar <rlar>
* src/frontend/numparam/xpressn.c:
xpressn.c, fix semantics of '&&' and '||'
these shall interpret a value as a bool according to (value != 0)
and these shall evaluate to either 1.0 or 0.0
2013-11-01 rlar <rlar>
* src/frontend/numparam/xpressn.c:
xpressn.c, whitespace cleanup
2013-11-01 rlar <rlar>
* src/frontend/numparam/xpressn.c:
xpressn.c, fix `truth' for ternary_fcn()
0.0 is `false', everything else is `true'
2013-11-23 rlar <rlar>
* src/frontend/parse-bison.c,
* src/frontend/parse-bison.h,
* src/spicelib/parser/inpptree-parser.c,
* src/spicelib/parser/inpptree-parser.h:
update bison generated files
2013-11-20 rlar <rlar>
* src/frontend/parse-bison.y,
* src/spicelib/parser/inpptree-parser.y:
.control and `B' parser, fix precedence of '-' versus '^'
-2^2 shall be -(2^2) instead of (-2)^2
2013-11-23 h_vogt <h_vogt>
* src/frontend/trannoise/1-f-code_d.c,
* src/frontend/trannoise/Makefile.am:
remove unused code
2013-11-18 rlar <rlar>
* src/spicelib/devices/hisim2/hsm2eval.c,
* src/spicelib/devices/hisimhv1/hsmhveval.c:
devices/hisimhv1, devices/hisim2, avoid overlapping globals TMF1 ... TMF6
reported by James Jackson in message:
[Ngspice-users] Problem building git head --with-ngspice Mac OS X
2013-11-16 rlar <rlar>
* src/maths/misc/isinf.c,
* src/misc/dup2.c:
avoid overlapping "Dummy" symbols
reported by James Jackson in message:
[Ngspice-users] Problem building git head --with-ngspice Mac OS X
2013-11-03 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, add missing condition `!comfile' for .title and .end processing
2013-11-03 dwarning <dwarning>
* src/spicelib/analysis/cktsens.c:
correct the step incrementing type to SENS_LINEAR
2013-11-02 h_vogt <h_vogt>
* src/frontend/inpcom.c:
fix criterion to start `.lib' and `.global gnd' processing
2013-06-02 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c: MSVC compatibility
2013-06-02 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, cleanup inp_readall() #7/7, drop misleading comment
2013-06-02 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, cleanup inp_readall() #6/7, tautology `call_depth == 0'
2013-06-02 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, cleanup inp_readall() #5/7, use `rv . line_number' itself
2013-06-02 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, cleanup inp_readall() #4/7, move inp_read() epilog to inp_readall()
2013-06-02 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, cleanup inp_readall() #3/7, return `line_number' too
2013-06-02 rlar <rlar>
* src/frontend/inpcom.c:
inpcom.c, cleanup inp_readall() #2/7, move inp_read() prolog to inp_readall()
2013-06-02 rlar <rlar>
* src/frontend/device.c,
* src/frontend/inp.c,
* src/frontend/inpcom.c,
* src/frontend/nutinp.c,
* src/include/ngspice/fteext.h:
inpcom.c, cleanup inp_readall() #1/7, introduce inp_read()
2013-11-02 rlar <rlar>
* src/frontend/inpcom.c:
bug fix, .include and .lib files don't have a `title' line
2013-11-02 dwarning <dwarning>
* src/spicelib/devices/cap/capask.c,
* src/spicelib/devices/ind/indask.c:
add missing tc1 and tc2 parameter entries in ask function
2013-11-02 dwarning <dwarning>
* src/spicelib/devices/cap/capask.c,
* src/spicelib/devices/ind/indask.c:
whitespaces
2013-10-31 dwarning <dwarning>
* src/spicelib/devices/vbic/vbicdefs.h:
fix an overlap in parameter definitions
2013-10-28 rlar <rlar>
* src/main.c: