-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path8100sparse.fodt
5414 lines (5413 loc) · 417 KB
/
8100sparse.fodt
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
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:officeooo="http://openoffice.org/2009/office" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:generator>LibreOffice/7.4.6.2$Windows_X86_64 LibreOffice_project/5b1f5509c2decdade7fda905e3e1429a67acd63d</meta:generator><meta:initial-creator>Preferred Customer</meta:initial-creator><meta:creation-date>1995-11-16T01:43:00</meta:creation-date><dc:creator>Preferred Customer</dc:creator><dc:date>1995-11-16T00:18:00</dc:date><dc:language>en-US</dc:language><meta:editing-cycles>2</meta:editing-cycles><meta:editing-duration>PT15M0S</meta:editing-duration><meta:document-statistic meta:table-count="0" meta:image-count="0" meta:object-count="0" meta:page-count="97" meta:paragraph-count="2338" meta:word-count="17764" meta:character-count="122766"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">32597</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">41753</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">22756</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">19881</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">14259</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">32597</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">41751</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">55351</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item>
<config:config-item config:name="HideWhitespace" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">true</config:config-item>
</config:config-item-map-entry>
</config:config-item-map-indexed>
</config:config-item-set>
<config:config-item-set config:name="ooo:configuration-settings">
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterName" config:type="string">HP Officejet Pro 8600 (Network)</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="PrinterSetup" config:type="base64Binary">KQv+/0hQIE9mZmljZWpldCBQcm8gODYwMCAoTmV0d29yaykAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASFAgT2ZmaWNlamV0IFBybyA4NjAwAAAAAAAAAAAAAAAWAAEASgoAAAAAAAAIAFZUAAAkbQAAM1ROVwAAAAAKAEgAUAAgAE8AZgBmAGkAYwBlAGoAZQB0ACAAUAByAG8AIAA4ADYAMAAwACAAKABOAGUAdAB3AG8AcgBrAAAAAAABBAMG3ABkCUP/gQcBAAEA6gpvCGQAAQAPAFgCAgABAFgCAgABAEwAZQB0AHQAZQByAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAgAAAAIAAAAVAQAAAQEAAAAAAAAAAAAAAAAAAAAAAABESU5VIgC4AhQFUAS7D207AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAABwAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuAIAAFNNVEoAAAAAEACoAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAExQUEgBAAAAUQjbYFEI22AHAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAABYAgAAWAIAAFgCAABYAgAAAgAAAOwTAADIGQAAoRMAAH0ZAABLAAAASwAAADwAAAA8AAAAPAAAADwAAAAAAAAAAQAAAA8nAAABAAAAAQAAAAEAAAAPJwAAAAAAAA8nAAAPJwAAAAAAAA8nAAAPJwAADycAAA8nAAAPJwAADycAAA8nAAAPJwAADycAAA8nAAAPJwAADycAAA8nAAAPJwAADycAAA8nAAAPJwAADycAAA8nAAAPJwAADycAAA8nAAAPJwAADycAAA8nAAAPJwAADycAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVHVlIEFwciAxOCAxMToxNjo0Mjo1MTIgMjAyMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd7oPYEsAAABLAAAAAQAAAAAAAAAEAAAAAAEAAHe6D2AAAAAAEgBDT01QQVRfRFVQTEVYX01PREUPAER1cGxleE1vZGU6Ok9mZg==</config:config-item>
<config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">true</config:config-item>
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="SmallCapsPercentage66" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">disabled</config:config-item>
<config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompMinLineHeightByFly" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseOldNumbering" config:type="boolean">true</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">true</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">true</config:config-item>
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaLineSpacingToTableCells" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerTextWrapping" config:type="boolean">true</config:config-item>
<config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">true</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="RsidRoot" config:type="int">468820</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">true</config:config-item>
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="Rsid" config:type="int">468820</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverflow" config:type="boolean">false</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabOverMargin" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">false</config:config-item>
<config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">false</config:config-item>
<config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">true</config:config-item>
<config:config-item config:name="DisableOffPagePositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="ContinuousEndnotes" config:type="boolean">false</config:config-item>
<config:config-item config:name="ProtectBookmarks" config:type="boolean">false</config:config-item>
<config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item>
<config:config-item config:name="HeaderSpacingBelowLastPara" config:type="boolean">false</config:config-item>
<config:config-item config:name="FrameAutowidthWithMorePara" config:type="boolean">false</config:config-item>
<config:config-item config:name="GutterAtTop" config:type="boolean">false</config:config-item>
<config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">false</config:config-item>
<config:config-item config:name="ImagePreferredDPI" config:type="int">0</config:config-item>
<config:config-item config:name="AutoFirstLineIndentDisregardLineSpace" config:type="boolean">false</config:config-item>
<config:config-item config:name="WordLikeWrapForAsCharFlys" config:type="boolean">false</config:config-item>
<config:config-item config:name="NoNumberingShowFollowBy" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintFaxName" config:type="string"/>
<config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintEmptyPages" config:type="boolean">true</config:config-item>
</config:config-item-set>
</office:settings>
<office:scripts>
<office:script script:language="ooo:Basic">
<ooo:libraries xmlns:ooo="http://openoffice.org/2004/office" xmlns:xlink="http://www.w3.org/1999/xlink"/>
</office:script>
</office:scripts>
<office:font-face-decls>
<style:font-face style:name="Albany" svg:font-family="Albany" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Arial" svg:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Arial Unicode MS" svg:font-family="'Arial Unicode MS'" style:font-pitch="variable"/>
<style:font-face style:name="HG Mincho Light J" svg:font-family="'HG Mincho Light J'" style:font-pitch="variable"/>
<style:font-face style:name="Thorndale" svg:font-family="Thorndale" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="Times New Roman" svg:font-family="'Times New Roman'" style:font-family-generic="roman" style:font-pitch="variable"/>
</office:font-face-decls>
<office:styles>
<style:default-style style:family="graphic">
<style:graphic-properties svg:stroke-color="#808080" draw:fill-color="#cfe7f5" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="true"/>
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:font-independent-line-spacing="false">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties fo:color="#000000" loext:opacity="100%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="Thorndale" fo:font-size="12pt" fo:language="en" fo:country="US" style:font-name-asian="HG Mincho Light J" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-name-complex="Arial Unicode MS" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none"/>
</style:default-style>
<style:default-style style:family="paragraph">
<style:paragraph-properties fo:hyphenation-ladder-count="no-limit" style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging" style:line-break="strict" style:tab-stop-distance="0.5in" style:writing-mode="page"/>
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Thorndale" fo:font-size="12pt" fo:language="en" fo:country="US" style:font-name-asian="HG Mincho Light J" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-name-complex="Arial Unicode MS" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" fo:hyphenate="false" fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2" loext:hyphenation-no-caps="false" loext:hyphenation-no-last-word="false" loext:hyphenation-word-char-count="no-limit" loext:hyphenation-zone="no-limit"/>
</style:default-style>
<style:default-style style:family="table">
<style:table-properties table:border-model="separating"/>
</style:default-style>
<style:default-style style:family="table-row">
<style:table-row-properties fo:keep-together="always"/>
</style:default-style>
<style:style style:name="Standard" style:family="paragraph" style:class="text">
<style:paragraph-properties fo:orphans="2" fo:widows="2"/>
<style:text-properties style:use-window-font-color="true" loext:opacity="0%" style:font-name="Times New Roman" fo:font-family="'Times New Roman'" style:font-family-generic="roman" style:font-pitch="variable" fo:font-size="10pt" fo:language="en" fo:country="US" style:font-size-asian="10pt"/>
</style:style>
<style:style style:name="Text_20_body" style:display-name="Text body" style:family="paragraph" style:parent-style-name="Standard" style:class="text">
<style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0835in" style:contextual-spacing="false"/>
</style:style>
<style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
<style:paragraph-properties fo:margin-top="0.1665in" fo:margin-bottom="0.0835in" style:contextual-spacing="false" fo:keep-with-next="always"/>
<style:text-properties style:font-name="Albany" fo:font-family="Albany" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="14pt" style:font-name-asian="HG Mincho Light J" style:font-family-asian="'HG Mincho Light J'" style:font-pitch-asian="variable" style:font-size-asian="14pt" style:font-name-complex="Arial Unicode MS" style:font-family-complex="'Arial Unicode MS'" style:font-pitch-complex="variable" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Standard" style:default-outline-level="1" style:class="text">
<style:paragraph-properties fo:margin-top="0.1665in" fo:margin-bottom="0.0417in" style:contextual-spacing="false" fo:keep-with-next="always"/>
<style:text-properties style:font-name="Arial" fo:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="14pt" fo:font-weight="bold" style:letter-kerning="true" style:font-size-asian="14pt" style:font-weight-asian="bold"/>
</style:style>
<style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Standard" style:default-outline-level="2" style:class="text">
<style:paragraph-properties fo:margin-top="0.1665in" fo:margin-bottom="0.0417in" style:contextual-spacing="false" fo:keep-with-next="always"/>
<style:text-properties style:font-name="Arial" fo:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="12pt" fo:font-style="italic" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="italic" style:font-weight-asian="bold"/>
</style:style>
<style:style style:name="Heading_20_3" style:display-name="Heading 3" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Standard" style:class="text">
<style:paragraph-properties fo:margin-top="0.1665in" fo:margin-bottom="0.0417in" style:contextual-spacing="false" fo:keep-with-next="always"/>
<style:text-properties fo:font-size="12pt" fo:font-weight="bold" style:font-size-asian="12pt" style:font-weight-asian="bold"/>
</style:style>
<style:style style:name="WW-Default_20_Paragraph_20_Font" style:display-name="WW-Default Paragraph Font" style:family="text"/>
<style:style style:name="Footnote_20_Symbol" style:display-name="Footnote Symbol" style:family="text"/>
<style:style style:name="Endnote_20_Symbol" style:display-name="Endnote Symbol" style:family="text"/>
<style:style style:name="Footnote_20_anchor" style:display-name="Footnote anchor" style:family="text">
<style:text-properties style:text-position="super 58%"/>
</style:style>
<style:style style:name="Endnote_20_anchor" style:display-name="Endnote anchor" style:family="text">
<style:text-properties style:text-position="super 58%"/>
</style:style>
<style:style style:name="Frame" style:family="graphic">
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content"/>
</style:style>
<style:style style:name="Graphics" style:family="graphic">
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" style:wrap="none" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph"/>
</style:style>
<style:style style:name="OLE" style:family="graphic">
<style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in" style:wrap="none" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph"/>
</style:style>
<text:outline-style style:name="Outline">
<text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format="">
<style:list-level-properties/>
</text:outline-level-style>
<text:outline-level-style text:level="2" loext:num-list-format="%2%" style:num-format="">
<style:list-level-properties/>
</text:outline-level-style>
<text:outline-level-style text:level="3" loext:num-list-format="%3%" style:num-format="">
<style:list-level-properties/>
</text:outline-level-style>
<text:outline-level-style text:level="4" loext:num-list-format="%4%" style:num-format="">
<style:list-level-properties/>
</text:outline-level-style>
<text:outline-level-style text:level="5" loext:num-list-format="%5%" style:num-format="">
<style:list-level-properties/>
</text:outline-level-style>
<text:outline-level-style text:level="6" loext:num-list-format="%6%" style:num-format="">
<style:list-level-properties/>
</text:outline-level-style>
<text:outline-level-style text:level="7" loext:num-list-format="%7%" style:num-format="">
<style:list-level-properties/>
</text:outline-level-style>
<text:outline-level-style text:level="8" loext:num-list-format="%8%" style:num-format="">
<style:list-level-properties/>
</text:outline-level-style>
<text:outline-level-style text:level="9" loext:num-list-format="%9%" style:num-format="">
<style:list-level-properties/>
</text:outline-level-style>
<text:outline-level-style text:level="10" loext:num-list-format="%10%" style:num-format="">
<style:list-level-properties/>
</text:outline-level-style>
</text:outline-style>
<text:notes-configuration text:note-class="footnote" text:citation-style-name="Footnote_20_Symbol" text:citation-body-style-name="Footnote_20_anchor" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="page"/>
<text:notes-configuration text:note-class="endnote" text:citation-style-name="Endnote_20_Symbol" text:citation-body-style-name="Endnote_20_anchor" text:master-page-name="Endnote" style:num-format="1" text:start-value="0"/>
<text:linenumbering-configuration text:number-lines="false" text:offset="0.1965in" style:num-format="1" text:number-position="left" text:increment="5"/>
</office:styles>
<office:automatic-styles>
<style:page-layout style:name="pm1">
<style:page-layout-properties fo:page-width="8.5in" fo:page-height="11in" style:num-format="1" style:print-orientation="portrait" fo:margin-top="1in" fo:margin-bottom="1in" fo:margin-left="1.25in" fo:margin-right="1.25in" style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0" style:layout-grid-lines="20" style:layout-grid-base-height="0.278in" style:layout-grid-ruby-height="0.139in" style:layout-grid-mode="none" style:layout-grid-ruby-below="false" style:layout-grid-print="false" style:layout-grid-display="false" style:footnote-max-height="0in" loext:margin-gutter="0in">
<style:footnote-sep style:width="0.0071in" style:distance-before-sep="0.0398in" style:distance-after-sep="0.0398in" style:line-style="solid" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
</style:page-layout-properties>
<style:header-style/>
<style:footer-style/>
</style:page-layout>
<style:page-layout style:name="pm2">
<style:page-layout-properties fo:page-width="8.5in" fo:page-height="11in" style:num-format="1" style:print-orientation="portrait" fo:margin-top="0.7874in" fo:margin-bottom="0.7874in" fo:margin-left="0.7874in" fo:margin-right="0.7874in" style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0" style:layout-grid-lines="20" style:layout-grid-base-height="0.278in" style:layout-grid-ruby-height="0.139in" style:layout-grid-mode="none" style:layout-grid-ruby-below="false" style:layout-grid-print="false" style:layout-grid-display="false" style:footnote-max-height="0in" loext:margin-gutter="0in">
<style:footnote-sep style:line-style="solid" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
</style:page-layout-properties>
<style:header-style/>
<style:footer-style/>
</style:page-layout>
<style:style style:name="dp1" style:family="drawing-page">
<style:drawing-page-properties draw:background-size="full"/>
</style:style>
</office:automatic-styles>
<office:master-styles>
<style:master-page style:name="Standard" style:page-layout-name="pm1" draw:style-name="dp1"/>
<style:master-page style:name="Endnote" style:page-layout-name="pm2" draw:style-name="dp1"/>
</office:master-styles>
<office:body>
<office:text text:use-soft-page-breaks="true">
<text:sequence-decls>
<text:sequence-decl text:display-outline-level="0" text:name="Illustration"/>
<text:sequence-decl text:display-outline-level="0" text:name="Table"/>
<text:sequence-decl text:display-outline-level="0" text:name="Text"/>
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
<text:sequence-decl text:display-outline-level="0" text:name="Figure"/>
</text:sequence-decls>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:h text:style-name="Heading_20_1" text:outline-level="1">Sparse User's Guide</text:h>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="22"/>A Sparse Linear Equation Solver</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="31"/>Version 1.3a</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="31"/>1 April 1988</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="28"/>Kenneth S. Kundert</text:p>
<text:p text:style-name="Standard"><text:s text:c="22"/>Alberto Sangiovanni-Vincentelli</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="30"/>Department of</text:p>
<text:p text:style-name="Standard"><text:s text:c="15"/>Electrical Engineering and Computer Sciences</text:p>
<text:p text:style-name="Standard"><text:s text:c="20"/>University of California, Berkeley</text:p>
<text:p text:style-name="Standard"><text:s text:c="26"/>Berkeley, Calif. 94720</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="23"/>June 23, 1988</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:soft-page-break/></text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:h text:style-name="Heading_20_1" text:outline-level="1">Table of Contents</text:h>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">1: <text:s/>Introduction ..................................................... <text:s text:c="3"/>1</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>1.1: <text:s/>Features of Sparse1.3 .................................. <text:s text:c="3"/>1</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>1.2: <text:s/>Enhancements of Sparse1.3 over Sparse1.2 ............... <text:s text:c="3"/>2</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>1.3: <text:s/>Copyright Information .................................. <text:s text:c="3"/>3</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">2: <text:s/>Primer ........................................................... <text:s text:c="3"/>4</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>2.1: <text:s/>Solving Matrix Equations ............................... <text:s text:c="3"/>4</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>2.2: <text:s/>Error Control .......................................... <text:s text:c="3"/>5</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>2.3: <text:s/>Building the Matrix .................................... <text:s text:c="3"/>6</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>2.4: <text:s/>Initializing the Matrix ................................ <text:s text:c="3"/>7</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>2.5: <text:s/>Indices ................................................ <text:s text:c="3"/>8</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>2.6: <text:s/>Configuring Sparse ..................................... <text:s text:c="3"/>9</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">3: <text:s/>Introduction to the Sparse Routines .............................. <text:s text:c="2"/>10</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>3.1: <text:s/>Creating the Matrix .................................... <text:s text:c="2"/>10</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>3.2: <text:s/>Building the Matrix .................................... <text:s text:c="2"/>10</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>3.3: <text:s/>Clearing the Matrix .................................... <text:s text:c="2"/>10</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>3.4: <text:s/>Placing Data in the Matrix ............................. <text:s text:c="2"/>11</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>3.5: <text:s/>Influencing the Factorization .......................... <text:s text:c="2"/>11</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>3.6: <text:s/>Factoring the Matrix ................................... <text:s text:c="2"/>11</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>3.7: <text:s/>Solving the Matrix Equation ............................ <text:s text:c="2"/>12</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>3.8: <text:s/>Numerical Error Estimation ............................. <text:s text:c="2"/>12</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>3.9: <text:s/>Matrix Operations ...................................... <text:s text:c="2"/>13</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>3.10: <text:s/>Matrix Statistics and Documentation ................... <text:s text:c="2"/>13</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">4: <text:s/>Routines ......................................................... <text:s text:c="2"/>15</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:soft-page-break/></text:p>
<text:p text:style-name="Standard"><text:s text:c="23"/>June 23, 1988</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.1: <text:s/>spClear() .............................................. <text:s text:c="2"/>15</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.2: <text:s/>spCondition() .......................................... <text:s text:c="2"/>16</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.3: <text:s/>spCreate() ............................................. <text:s text:c="2"/>17</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.4: <text:s/>spDeleteRowAndCol() .................................... <text:s text:c="2"/>18</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.5: <text:s/>spDestroy() ............................................ <text:s text:c="2"/>18</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.6: <text:s/>spDeterminant() ........................................ <text:s text:c="2"/>19</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.7: <text:s/>spElementCount() ....................................... <text:s text:c="2"/>20</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.8: <text:s/>spError() .............................................. <text:s text:c="2"/>20</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.9: <text:s/>spFactor() ............................................. <text:s text:c="2"/>21</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.10: <text:s/>spFileMatrix() ........................................ <text:s text:c="2"/>22</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.11: <text:s/>spFileStats() ......................................... <text:s text:c="2"/>23</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.12: <text:s/>spFileVector() ........................................ <text:s text:c="2"/>24</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.13: <text:s/>spFillinCount() ....................................... <text:s text:c="2"/>25</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.14: <text:s/>spGetAdmittance() ..................................... <text:s text:c="2"/>26</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.15: <text:s/>spGetElement() ........................................ <text:s text:c="2"/>27</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.16: <text:s/>spGetInitInfo() ....................................... <text:s text:c="2"/>28</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.17: <text:s/>spGetOnes() ........................................... <text:s text:c="2"/>30</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.18: <text:s/>spGetQuad() ........................................... <text:s text:c="2"/>32</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.19: <text:s/>spGetSize() ........................................... <text:s text:c="2"/>32</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.20: <text:s/>spInitialize() ........................................ <text:s text:c="2"/>34</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.21: <text:s/>spInstallInitInfo() ................................... <text:s text:c="2"/>34</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.22: <text:s/>spLargestElement() .................................... <text:s text:c="2"/>35</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.23: <text:s/>spMNA Preorder() ...................................... <text:s text:c="2"/>36</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.24: <text:s/>spMultiply() .......................................... <text:s text:c="2"/>37</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:soft-page-break/><text:s text:c="8"/>4.25: <text:s/>spMultTransposed() .................................... <text:s text:c="2"/>38</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.26: <text:s/>spNorm() .............................................. <text:s text:c="2"/>39</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.27: <text:s/>spOrderAndFactor() .................................... <text:s text:c="2"/>39</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="23"/>June 23, 1988</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.28: <text:s/>spPartition() ......................................... <text:s text:c="2"/>42</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.29: <text:s/>spPrint() ............................................. <text:s text:c="2"/>42</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.30: <text:s/>spPseudoCondition() ................................... <text:s text:c="2"/>43</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.31: <text:s/>spRoundoff() .......................................... <text:s text:c="2"/>44</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.32: <text:s/>spScale() ............................................. <text:s text:c="2"/>45</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.33: <text:s/>spSetComplex() ........................................ <text:s text:c="2"/>46</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.34: <text:s/>spSetReal() ........................................... <text:s text:c="2"/>46</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.35: <text:s/>spSolve() ............................................. <text:s text:c="2"/>47</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.36: <text:s/>spSolveTransposed() ................................... <text:s text:c="2"/>48</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.37: <text:s/>spStripFills() ........................................ <text:s text:c="2"/>49</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>4.38: <text:s/>spWhereSingular() ..................................... <text:s text:c="2"/>49</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">5: <text:s/>Macro Functions .................................................. <text:s text:c="2"/>50</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>5.1: <text:s/>spADD REAL ELEMENT() ................................... <text:s text:c="2"/>50</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>5.2: <text:s/>spADD IMAG ELEMENT() ................................... <text:s text:c="2"/>50</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>5.3: <text:s/>spADD COMPLEX ELEMENT() ................................ <text:s text:c="2"/>51</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>5.4: <text:s/>spADD REAL QUAD() ...................................... <text:s text:c="2"/>51</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>5.5: <text:s/>spADD IMAG QUAD() ...................................... <text:s text:c="2"/>52</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>5.6: <text:s/>spADD COMPLEX QUAD() ................................... <text:s text:c="2"/>52</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">6: <text:s/>Configuring Sparse ............................................... <text:s text:c="2"/>53</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>6.1: <text:s/>Sparse Options ......................................... <text:s text:c="2"/>53</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:soft-page-break/><text:s text:c="8"/>6.2: <text:s/>Sparse Constants ....................................... <text:s text:c="2"/>57</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>6.3: <text:s/>Machine Constants ...................................... <text:s text:c="2"/>59</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">7: <text:s/>Exports .......................................................... <text:s text:c="2"/>61</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>7.1: <text:s/>Error Codes ............................................ <text:s text:c="2"/>61</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="8"/>7.2: <text:s/>Data Structures ........................................ <text:s text:c="2"/>62</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">8: <text:s/>FORTRAN Compatibility ............................................ <text:s text:c="2"/>63</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">9: <text:s/>Sparse Test Program .............................................. <text:s text:c="2"/>65</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="23"/>June 23, 1988</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">10: <text:s/>Sparse Files .................................................... <text:s text:c="2"/>67</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">References ........................................................... <text:s text:c="2"/>72</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:soft-page-break/></text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="23"/>June 23, 1988</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:h text:style-name="Heading_20_1" text:outline-level="1">1: <text:s/>INTRODUCTION</text:h>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>Sparse1.3 is a flexible package of subroutines written in <text:s/>C <text:s/>used <text:s/>to</text:p>
<text:p text:style-name="Standard">quickly and accurately solve large sparse systems of linear equations. <text:s/>The</text:p>
<text:p text:style-name="Standard">package is able to handle arbitrary real and complex <text:s/>square <text:s/>matrix <text:s/>equa-</text:p>
<text:p text:style-name="Standard">tions. <text:s text:c="2"/>Besides <text:s/>being <text:s/>able <text:s/>to <text:s/>solve linear systems, it is also able to</text:p>
<text:p text:style-name="Standard">quickly solve transposed systems, find determinants, <text:s/>and <text:s/>estimate <text:s/>errors</text:p>
<text:p text:style-name="Standard">due <text:s/>to <text:s/>ill-conditioning in the system of equations and instability in the</text:p>
<text:p text:style-name="Standard">computations. <text:s/>Sparse also provides a test program that is able read matrix</text:p>
<text:p text:style-name="Standard">equations <text:s/>from <text:s/>a file, solve them, and print useful information about the</text:p>
<text:p text:style-name="Standard">equation and its solution.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>Sparse1.3 is generally as fast or faster <text:s/>than <text:s/>other <text:s/>popular <text:s/>sparse</text:p>
<text:p text:style-name="Standard">matrix <text:s/>packages <text:s/>when <text:s/>solving many matrices of similar structure. <text:s/>Sparse</text:p>
<text:p text:style-name="Standard">does not require or assume symmetry and is able to perform numerical pivot-</text:p>
<text:p text:style-name="Standard">ing <text:s/>to avoid unnecessary error in the solution. <text:s/>It handles its own memory</text:p>
<text:p text:style-name="Standard">allocation, which allows the user to forgo the hassle of providing adequate</text:p>
<text:p text:style-name="Standard">memory. <text:s text:c="2"/>It <text:s/>also <text:s/>has a natural, flexible, and efficient interface to the</text:p>
<text:p text:style-name="Standard">calling program.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>Sparse was originally written for use in <text:s/>circuit <text:s/>simulators <text:s/>and <text:s/>is</text:p>
<text:p text:style-name="Standard">particularly <text:s/>apt <text:s/>at handling node- and modified-node admittance matrices.</text:p>
<text:p text:style-name="Standard">The systems of linear generated in a circuit simulator <text:s/>stem <text:s/>from <text:s/>solving</text:p>
<text:p text:style-name="Standard">large <text:s/>systems of nonlinear equations using Newton's method and integrating</text:p>
<text:p text:style-name="Standard">large stiff systems of ordinary differential equations. <text:s/>However, Sparse is</text:p>
<text:p text:style-name="Standard">also <text:s/>suitable <text:s/>for other uses, one in particular is solving the very large</text:p>
<text:p text:style-name="Standard">systems of linear equations resulting from the numerical solution <text:s/>of <text:s/>par-</text:p>
<text:p text:style-name="Standard"><text:soft-page-break/>tial differential equations.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:h text:style-name="Heading_20_2" text:outline-level="2">1.1: <text:s/>Features of Sparse1.3</text:h>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>Beyond the basic capability of being able to create, factor and <text:s/>solve</text:p>
<text:p text:style-name="Standard">systems of equations, this package features several other capabilities that</text:p>
<text:p text:style-name="Standard">enhance its utility. <text:s/>These features are:</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">o <text:s text:c="3"/>Ability to handle both real and complex systems <text:s/>of <text:s/>equations. <text:s text:c="2"/>Both</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>types <text:s/>may <text:s/>resident <text:s/>and <text:s/>active at the same time. <text:s/>In fact, the same</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>matrix may alternate between being real and complex.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">o <text:s text:c="3"/>Ability to quickly solve the transposed system. <text:s/>This feature is <text:s/>use-</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>ful <text:s/>when <text:s/>computing <text:s/>the <text:s/>sensitivity <text:s/>of a circuit using the adjoint</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>method.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">o <text:s text:c="3"/>Memory for elements in the matrix is <text:s/>allocated <text:s/>dynamically, <text:s/>so <text:s/>the</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>size <text:s/>of <text:s/>the matrix is only limited by the amount of memory available</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>to Sparse and the range of the integer data type, <text:s/>which <text:s/>is <text:s/>used <text:s/>to</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>hold matrix indices.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">o <text:s text:c="3"/>Ability to efficiently compute the condition number of the matrix <text:s/>and</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>an <text:s/>a posteriori estimate of the error caused by growth in the size of</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>the elements during the factorization.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">o <text:s text:c="3"/>Much <text:s/>of <text:s/>the <text:s/>matrix <text:s/>initialization <text:s/>can <text:s/>be <text:s/>performed <text:s/>by <text:s/>Sparse,</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="23"/>June 23, 1988</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="27"/>- 2 -</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>providing <text:s/>advantages <text:s/>in <text:s/>speed <text:s/>and simplified coding of the calling</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>program.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">o <text:s text:c="3"/>Ability to preorder modified node admittance matrices to enhance accu-</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>racy and speed.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">o <text:s text:c="3"/>Ability to exploit sparsity in the right-hand side <text:s/>vector <text:s/>to <text:s/>reduce</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>unnecessary computation.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">o <text:s text:c="3"/>Ability to scale matrices prior to factoring to reduce uncertainty <text:s/>in</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>the solution.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">o <text:s text:c="3"/>The ability to create and build a matrix <text:s/>without <text:s/>knowing <text:s/>its <text:s/>final</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>size.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">o <text:s text:c="3"/>The ability to add elements, and rows and columns, to a <text:s/>matrix <text:s/>after</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>the matrix has been reordered.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:soft-page-break/>o <text:s text:c="3"/>The ability to delete rows and columns from a matrix.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">o <text:s text:c="3"/>The ability to strip the fill-ins from a matrix. <text:s/>This can improve the</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>efficiency of a subsequent reordering.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">o <text:s text:c="3"/>The ability to handle matrices that have rows and columns missing from</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>their input description.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">o <text:s text:c="3"/>Ability to output the matrix in forms readable by either by people <text:s/>or</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>by <text:s/>the <text:s/>Sparse <text:s/>package. <text:s text:c="2"/>Basic statistics on the matrix can also be</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>output.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">o <text:s text:c="3"/>By default all arithmetic operations and <text:s/>number <text:s/>storage <text:s/>use <text:s/>double</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>precision. <text:s text:c="2"/>Thus, <text:s/>Sparse <text:s/>usually <text:s/>gives <text:s/>accurate <text:s/>results, even on</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>highly ill-conditioned systems. <text:s/>If so desired, Sparse can <text:s/>be <text:s/>easily</text:p>
<text:p text:style-name="Standard"><text:s text:c="5"/>configured to use single precision arithmetic.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:h text:style-name="Heading_20_2" text:outline-level="2">1.2: <text:s/>Enhancements of Sparse1.3 over Sparse1.2</text:h>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>Most notable of the enhancements provided by Sparse1.3 is that <text:s/>it <text:s/>is</text:p>
<text:p text:style-name="Standard">considerably faster on dense matrices. <text:s/>Also, external names have been made</text:p>
<text:p text:style-name="Standard">unique to 7 characters and the Sparse prefix sp has been prepended <text:s/>to <text:s/>all</text:p>
<text:p text:style-name="Standard">externally <text:s/>accessible <text:s/>names <text:s/>to <text:s/>avoid conflicts. <text:s/>In addition, a routine</text:p>
<text:p text:style-name="Standard">that efficiently estimates the condition number of a matrix has been <text:s/>added</text:p>
<text:p text:style-name="Standard">and <text:s/>the code that estimates the growth in the factorization has been split</text:p>
<text:p text:style-name="Standard">off from the actual factorization so that it is computed only when needed.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>It is now possible for the user program to store <text:s/>information <text:s/>in <text:s/>the</text:p>
<text:p text:style-name="Standard">matrix <text:s/>elements. <text:s text:c="2"/>It <text:s/>is <text:s/>also possible to provide a subroutine to Sparse</text:p>
<text:p text:style-name="Standard">that uses that information to initialize the matrix. <text:s/>This can greatly sim-</text:p>
<text:p text:style-name="Standard">plify the user's code.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>Sparse1.3 has an FORTRAN interface. <text:s/>Routines written in <text:s/>FORTRAN <text:s/>can</text:p>
<text:p text:style-name="Standard">access almost all of the features Sparse1.3.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="23"/>June 23, 1988</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="27"/>- 3 -</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:h text:style-name="Heading_20_2" text:outline-level="2">1.3: <text:s/>Copyright Information</text:h>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>Sparse1.3 has been copyrighted. <text:s/>Permission to use, copy, modify, <text:s/>and</text:p>
<text:p text:style-name="Standard">distribute <text:s/>this software and its documentation for any purpose and without</text:p>
<text:p text:style-name="Standard">fee is hereby granted, provided that the copyright <text:s/>notice <text:s/>appear <text:s/>in <text:s/>all</text:p>
<text:p text:style-name="Standard">copies, <text:s/>and <text:s/>Sparse <text:s/>and the University of California, Berkeley are refer-</text:p>
<text:p text:style-name="Standard">enced in all documentation for the program or product in which Sparse is to</text:p>
<text:p text:style-name="Standard"><text:soft-page-break/>be <text:s/>installed. <text:s text:c="2"/>The <text:s/>authors <text:s/>and <text:s/>the <text:s/>University <text:s/>of <text:s/>California make no</text:p>
<text:p text:style-name="Standard">representations as to the suitability of the software for any purpose. <text:s text:c="2"/>It</text:p>
<text:p text:style-name="Standard">is provided `as is', without express or implied warranty.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="23"/>June 23, 1988</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="27"/>- 4 -</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:soft-page-break/></text:p>
<text:h text:style-name="Heading_20_1" text:outline-level="1">2: <text:s/>PRIMER</text:h>
<text:p text:style-name="Standard"/>
<text:h text:style-name="Heading_20_2" text:outline-level="2">2.1: <text:s/>Solving Matrix Equations</text:h>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>Sparse contains a collection of C subprograms <text:s/>that <text:s/>can <text:s/>be <text:s/>used <text:s/>to</text:p>
<text:p text:style-name="Standard">solve <text:s/>linear <text:s/>algebraic <text:s/>systems <text:s/>of <text:s/>equations. <text:s/>These systems are of the</text:p>
<text:p text:style-name="Standard">form:</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="6"/>Ax = b</text:p>
<text:p text:style-name="Standard">where A is an nxn matrix, x is the vector of n unknowns and b is the vector</text:p>
<text:p text:style-name="Standard">of <text:s/>n right-hand side terms. <text:s/>Through out this package A is denoted Matrix,</text:p>
<text:p text:style-name="Standard">x is denoted Solution and b is denoted RHS (for right-hand side). <text:s/>The sys-</text:p>
<text:p text:style-name="Standard">tem <text:s/>is <text:s/>solved <text:s/>using <text:s/>LU factorization, so the actual solution process is</text:p>
<text:p text:style-name="Standard">broken into two steps, the factorization or decomposition <text:s/>of <text:s/>the <text:s/>matrix,</text:p>
<text:p text:style-name="Standard">performed <text:s/>by <text:s/>spFactor(), <text:s/>and the forward and backward substitution, per-</text:p>
<text:p text:style-name="Standard">formed by spSolve(). <text:s/>spFactor() factors the given matrix <text:s/>into <text:s/>upper <text:s/>and</text:p>
<text:p text:style-name="Standard">lower triangular matrices independent of the right-hand side. <text:s/>Once this is</text:p>
<text:p text:style-name="Standard">done, the solution vector can be determined efficiently for any <text:s/>number <text:s/>of</text:p>
<text:p text:style-name="Standard">right-hand sides without refactoring the matrix.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>This package exploits the fact that large matrices usually are <text:s/>sparse</text:p>
<text:p text:style-name="Standard">by not storing or operating on elements in the matrix that are zero. <text:s/>Stor-</text:p>
<text:p text:style-name="Standard">ing zero elements is avoided by organizing the matrix <text:s/>into <text:s/>an <text:s/>orthogonal</text:p>
<text:p text:style-name="Standard">linked-list. <text:s text:c="2"/>Thus, <text:s/>to <text:s/>access <text:s/>an <text:s/>element if only its indices are known</text:p>
<text:p text:style-name="Standard">requires stepping through the list, which is slow. <text:s/>This function <text:s/>is <text:s/>per-</text:p>
<text:p text:style-name="Standard">formed <text:s/>by <text:s/>the routine spGetElement(). <text:s/>It is used to initially enter data</text:p>
<text:p text:style-name="Standard">into a matrix and to build <text:s/>the <text:s/>linked-list. <text:s text:c="2"/>Because <text:s/>it <text:s/>is <text:s/>common <text:s/>to</text:p>
<text:p text:style-name="Standard">repeatedly solve matrices with identical zero/nonzero structure, it is pos-</text:p>
<text:p text:style-name="Standard">sible to reuse the linked-list. <text:s/>Thus, the linked list is <text:s/>left <text:s/>in <text:s/>memory</text:p>
<text:p text:style-name="Standard">and <text:s/>the <text:s/>element values are simply cleared by spClear() before the linked-</text:p>
<text:p text:style-name="Standard">list is reused. <text:s/>To speed the entering of the element values <text:s/>into <text:s/>succes-</text:p>
<text:p text:style-name="Standard">sive <text:s/>matrices, <text:s/>spGetElement() <text:s/>returns <text:s/>a <text:s/>pointer <text:s/>to the element in the</text:p>
<text:p text:style-name="Standard">matrix. <text:s/>This pointer can then be used to <text:s/>place <text:s/>data <text:s/>directly <text:s/>into <text:s/>the</text:p>
<text:p text:style-name="Standard">matrix without having to traverse through the linked-list.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>The order in which the rows and columns of the matrix are factored <text:s/>is</text:p>
<text:p text:style-name="Standard">very <text:s/>important. <text:s text:c="2"/>It <text:s/>directly affects the amount of time required for the</text:p>
<text:p text:style-name="Standard">factorization and the forward and backward substitution. <text:s/>It <text:s/>also <text:s/>affects</text:p>
<text:p text:style-name="Standard">the <text:s/>accuracy <text:s/>of <text:s/>the <text:s/>result. <text:s/>The process of choosing this order is time</text:p>
<text:p text:style-name="Standard">consuming, but fortunately it usually only has to be <text:s/>done <text:s/>once <text:s/>for <text:s/>each</text:p>
<text:p text:style-name="Standard">particular <text:s/>matrix <text:s/>structure <text:s/>encountered. <text:s text:c="2"/>When <text:s/>a <text:s/>matrix <text:s/>with <text:s/>a <text:s/>new</text:p>
<text:p text:style-name="Standard">zero/nonzero structure is to <text:s/>be <text:s/>factored, <text:s/>it <text:s/>is <text:s/>done <text:s/>by <text:s/>using <text:s/>spOr-</text:p>
<text:p text:style-name="Standard">derAndFactor(). <text:s text:c="2"/>Subsequent <text:s/>matrices <text:s/>of <text:s/>the same structure are factored</text:p>
<text:p text:style-name="Standard">with spFactor(). <text:s/>The latter routine does not have the ability <text:s/>to <text:s/>reorder</text:p>
<text:p text:style-name="Standard">matrix, <text:s/>but <text:s/>it is considerably faster. <text:s/>It may be that a order chosen may</text:p>
<text:p text:style-name="Standard">be unsuitable for subsequent factorizations. <text:s/>If this is known to be true a</text:p>
<text:p text:style-name="Standard">priori, it is possible to use spOrderAndFactor() for the subsequent factor-</text:p>
<text:p text:style-name="Standard">izations, with a noticeable speed penalty. <text:s/>spOrderAndFactor() monitors the</text:p>
<text:p text:style-name="Standard">numerical stability of the factorization and will modify an existing order-</text:p>
<text:p text:style-name="Standard">ing to maintain stability. <text:s/>Otherwise, <text:s/>an <text:s/>a <text:s/>posteriori <text:s/>measure <text:s/>of <text:s/>the</text:p>
<text:p text:style-name="Standard">numerical <text:s/>stability <text:s/>of <text:s/>the factorization can be computed, and the matrix</text:p>
<text:p text:style-name="Standard">reordered if necessary.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>The Sparse routines allow several matrices of different structures <text:s/>to</text:p>
<text:p text:style-name="Standard"><text:soft-page-break/></text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="23"/>June 23, 1988</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="27"/>- 5 -</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">be <text:s/>resident at once. <text:s/>When a matrix of a new structure is encountered, the</text:p>
<text:p text:style-name="Standard">user calls spCreate(). <text:s/>This <text:s/>routine <text:s/>creates <text:s/>the <text:s/>basic <text:s/>frame <text:s/>for <text:s/>the</text:p>
<text:p text:style-name="Standard">linked-list <text:s/>and <text:s/>returns <text:s/>a <text:s/>pointer <text:s/>to this frame. <text:s/>This pointer is then</text:p>
<text:p text:style-name="Standard">passed as an argument to the other Sparse routines to indicate which matrix</text:p>
<text:p text:style-name="Standard">is to be operated on. <text:s/>The number of matrices that can be kept in memory at</text:p>
<text:p text:style-name="Standard">once is only limited by the amount of memory available to the user and <text:s/>the</text:p>
<text:p text:style-name="Standard">size <text:s/>of the matrices. <text:s/>When a matrix frame is no longer needed, the memory</text:p>
<text:p text:style-name="Standard">can be reclaimed by calling spDestroy().</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>A more complete discussion of sparse systems of equations, methods for</text:p>
<text:p text:style-name="Standard">solving them, their error mechanisms, and the algorithms used in Sparse can</text:p>
<text:p text:style-name="Standard">be found in Kundert <text:s/>[kundert86]. <text:s text:c="2"/>A <text:s/>particular <text:s/>emphasis <text:s/>is <text:s/>placed <text:s/>on</text:p>
<text:p text:style-name="Standard">matrices resulting from circuit simulators.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:h text:style-name="Heading_20_2" text:outline-level="2">2.2: <text:s/>Error Control</text:h>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>There are two separate mechanisms that can <text:s/>cause <text:s/>errors <text:s/>during <text:s/>the</text:p>
<text:p text:style-name="Standard">factoring <text:s/>and <text:s/>solution <text:s/>of <text:s/>a <text:s/>system <text:s/>of <text:s/>equations. <text:s text:c="2"/>The first is ill-</text:p>
<text:p text:style-name="Standard">conditioning in the system. <text:s/>A system of equations <text:s/>is <text:s/>ill-conditioned <text:s/>if</text:p>
<text:p text:style-name="Standard">the <text:s/>solution <text:s/>is <text:s/>excessively sensitive to disturbances in the input data,</text:p>
<text:p text:style-name="Standard">which occurs when the system is nearly <text:s/>singular. <text:s text:c="2"/>If <text:s/>a <text:s/>system <text:s/>is <text:s/>ill-</text:p>
<text:p text:style-name="Standard">conditioned <text:s/>then <text:s/>uncertainty <text:s/>in <text:s/>the result is unavoidable, even if A is</text:p>
<text:p text:style-name="Standard">accurately factored into L and U. <text:s/>When ill-conditioning is a problem, <text:s/>the</text:p>
<text:p text:style-name="Standard">problem <text:s/>as <text:s/>stated is probably ill-posed and the system should be reformu-</text:p>
<text:p text:style-name="Standard">lated such that it is not so ill-conditioned. <text:s/>It is <text:s/>possible <text:s/>to <text:s/>measure</text:p>
<text:p text:style-name="Standard">the <text:s/>ill-conditioning of matrix using spCondition(). <text:s/>This function returns</text:p>
<text:p text:style-name="Standard">an estimate of the reciprocal of the condition number of the matrix <text:s/>(K(A))</text:p>
<text:p text:style-name="Standard">[strang80]. <text:s/>The condition number can be used when computing a bound on the</text:p>
<text:p text:style-name="Standard">error in the solution using the following inequality [golub83].</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="12"/>||dx|| <text:s text:c="7"/>(||dA|| <text:s text:c="2"/>||db||)</text:p>
<text:p text:style-name="Standard"><text:s text:c="12"/>------ < K(A) (------ + ------) + higher order terms</text:p>
<text:p text:style-name="Standard"><text:s text:c="12"/>||x|| <text:s text:c="8"/>(||A|| <text:s text:c="3"/>||b|| )</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard">where dA and db are the uncertainties in the <text:s/>matrix <text:s/>and <text:s/>right-hand <text:s/>side</text:p>
<text:p text:style-name="Standard">vector and are assumed small.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>The second mechanism that causes uncertainty is the build up of round-</text:p>
<text:p text:style-name="Standard">off <text:s/>error. <text:s text:c="2"/>Roundoff <text:s/>error <text:s/>can <text:s/>become excessive if there is sufficient</text:p>
<text:p text:style-name="Standard">growth in the size of the elements during <text:s/>the <text:s/>factorization. <text:s text:c="2"/>Growth <text:s/>is</text:p>
<text:p text:style-name="Standard">controlled <text:s/>by <text:s/>careful pivoting. <text:s/>In Sparse, the pivoting is controlled by</text:p>
<text:p text:style-name="Standard">the relative threshold parameter. <text:s/>In conventional full <text:s/>matrix <text:s/>techniques</text:p>
<text:p text:style-name="Standard">the <text:s/>pivot <text:s/>is <text:s/>chosen to be the largest element in a column. <text:s/>When working</text:p>
<text:p text:style-name="Standard">with sparse matrices it is important <text:s/>to <text:s/>choose <text:s/>pivots <text:s/>to <text:s/>minimize <text:s/>the</text:p>
<text:p text:style-name="Standard"><text:soft-page-break/>reduction <text:s/>in sparsity. <text:s/>The best pivot to retain sparsity is often not the</text:p>
<text:p text:style-name="Standard">best pivot to retain accuracy. <text:s/>Thus, some compromise <text:s/>must <text:s/>be <text:s/>made. <text:s text:c="2"/>In</text:p>
<text:p text:style-name="Standard">threshold pivoting, as used in this package, the best pivot to retain spar-</text:p>
<text:p text:style-name="Standard">sity is used unless it is smaller than the <text:s/>relative <text:s/>threshold <text:s/>times <text:s/>the</text:p>
<text:p text:style-name="Standard">largest <text:s/>element <text:s/>in <text:s/>the <text:s/>column. <text:s/>Thus, a relative threshold close to one</text:p>
<text:p text:style-name="Standard">emphasizes accuracy so it will produce a minimum amount of <text:s/>growth, <text:s/>unfor-</text:p>
<text:p text:style-name="Standard">tunately <text:s/>it also slows the factorization. <text:s/>A very small relative threshold</text:p>
<text:p text:style-name="Standard">emphasizes maintenance of sparsity and so speeds the factorization, but can</text:p>
<text:p text:style-name="Standard">result <text:s/>in a large amount of growth. <text:s/>In our experience, we have found that</text:p>
<text:p text:style-name="Standard">a relative threshold of 0.001 seems to result in a satisfactory <text:s/>compromise</text:p>
<text:p text:style-name="Standard">between <text:s/>speed <text:s/>and accuracy, though other authors suggest a more conserva-</text:p>
<text:p text:style-name="Standard">tive value of 0.1 [duff86].</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="23"/>June 23, 1988</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="27"/>- 6 -</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>The growth that occurred during a factorization <text:s/>can <text:s/>be <text:s/>computed <text:s/>by</text:p>
<text:p text:style-name="Standard">taking the ratio of the largest matrix element in any stage of the factori-</text:p>
<text:p text:style-name="Standard">zation to the largest matrix element before factorization. <text:s/>The two numbers</text:p>
<text:p text:style-name="Standard">are <text:s/>estimated <text:s/>using <text:s/>spLargestElement(). <text:s text:c="2"/>If <text:s/>the <text:s/>growth is found to be</text:p>
<text:p text:style-name="Standard">excessive after spOrderAndFactor(), then the relative threshold <text:s/>should <text:s/>be</text:p>
<text:p text:style-name="Standard">increased and the matrix reconstructed and refactored. <text:s/>Once the matrix has</text:p>
<text:p text:style-name="Standard">been ordered and factored without suffering too much growth, the amount <text:s/>of</text:p>
<text:p text:style-name="Standard">growth that occurred should be recorded. <text:s/>If, on subsequent factorizations,</text:p>
<text:p text:style-name="Standard">as performed by spFactor(), the <text:s/>amount <text:s/>of <text:s/>growth <text:s/>becomes <text:s/>significantly</text:p>
<text:p text:style-name="Standard">larger, <text:s/>then <text:s/>the <text:s/>matrix <text:s/>should be reconstructed and reordered using the</text:p>
<text:p text:style-name="Standard">same relative threshold with spOrderAndFactor(). <text:s/>If the <text:s/>growth <text:s/>is <text:s/>still</text:p>
<text:p text:style-name="Standard">excessive, then the relative threshold should be raised again.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:h text:style-name="Heading_20_2" text:outline-level="2">2.3: <text:s/>Building the Matrix</text:h>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>It is not necessary to specify the size of the matrix before beginning</text:p>
<text:p text:style-name="Standard">to add elements to it. <text:s/>When the compiler option EXPANDABLE is turned on it</text:p>
<text:p text:style-name="Standard">is possible to initially specify the size of the matrix to any <text:s/>size <text:s/>equal</text:p>
<text:p text:style-name="Standard">to <text:s/>or smaller than the final size of the matrix. <text:s/>Specifically, the matrix</text:p>
<text:p text:style-name="Standard">size may be initially specified as zero. <text:s/>If this is done then, as the ele-</text:p>
<text:p text:style-name="Standard">ments <text:s/>are entered into the matrix, the matrix is enlarged as needed. <text:s/>This</text:p>
<text:p text:style-name="Standard">feature is particularly useful in circuit simulators because it allows <text:s/>the</text:p>
<text:p text:style-name="Standard">building <text:s/>of <text:s/>the <text:s/>matrix <text:s/>as the circuit description is parsed. <text:s/>Note that</text:p>
<text:p text:style-name="Standard">once the matrix has been reordered by the routines spMNA Preorder(), spFac-</text:p>
<text:p text:style-name="Standard">tor() or spOrderAndFactor() the size of the matrix becomes fixed and may no</text:p>
<text:p text:style-name="Standard">longer be enlarged unless the compiler option TRANSLATE is enabled.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>The TRANSLATE option allows Sparse to translate a <text:s/>non-packed <text:s/>set <text:s/>of</text:p>
<text:p text:style-name="Standard">row <text:s/>and <text:s/>column <text:s/>numbers to an internal packed set. <text:s/>In other words, there</text:p>
<text:p text:style-name="Standard">may be rows and columns <text:s/>missing <text:s/>from <text:s/>the <text:s/>external <text:s/>description <text:s/>of <text:s/>the</text:p>
<text:p text:style-name="Standard">matrix. <text:s text:c="2"/>This <text:s/>feature <text:s/>provides two benefits. <text:s/>First, if two matrices are</text:p>
<text:p text:style-name="Standard">identical in structure, except for a few missing rows and columns <text:s/>in <text:s/>one,</text:p>
<text:p text:style-name="Standard">then <text:s/>the <text:s/>TRANSLATE <text:s/>option <text:s/>allows them to be treated identically. <text:s/>Simi-</text:p>
<text:p text:style-name="Standard"><text:soft-page-break/>larly, rows and columns may be deleted from a <text:s/>matrix <text:s/>after <text:s/>it <text:s/>has <text:s/>been</text:p>
<text:p text:style-name="Standard">built <text:s/>and operated upon. <text:s/>Deletion of rows and columns is performed by the</text:p>
<text:p text:style-name="Standard">function spDeleteRowAndCol(). <text:s/>Second, it allows the use of <text:s/>the <text:s/>functions</text:p>
<text:p text:style-name="Standard">spGetElement(), <text:s/>spGetAdmittance(), <text:s/>spGetQuad(), and spGetOnes() after the</text:p>
<text:p text:style-name="Standard">matrix has been reordered. <text:s/>These functions access the matrix by using <text:s/>row</text:p>
<text:p text:style-name="Standard">and <text:s/>column <text:s/>indices, <text:s/>which have to be translated to internal indices once</text:p>
<text:p text:style-name="Standard">the matrix is reordered. <text:s/>Thus, when TRANSLATE is used in conjunction <text:s/>with</text:p>
<text:p text:style-name="Standard">the <text:s/>EXPANDABLE <text:s/>option, rows and columns may be added to a matrix after it</text:p>
<text:p text:style-name="Standard">has been reordered.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>Another provided feature that is useful with circuit simulators is the</text:p>
<text:p text:style-name="Standard">ability <text:s/>to <text:s/>add <text:s/>elements to the matrix in row zero or column zero. <text:s/>These</text:p>
<text:p text:style-name="Standard">elements will have no affect on the matrix or the results. <text:s/>The benefit <text:s/>of</text:p>
<text:p text:style-name="Standard">this <text:s/>is that when working with a nodal formulation, grounded components do</text:p>
<text:p text:style-name="Standard">not have to be treated special when building the matrix.</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="23"/>June 23, 1988</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="27"/>- 7 -</text:p>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"/>
<text:h text:style-name="Heading_20_2" text:outline-level="2">2.4: <text:s/>Initializing the Matrix</text:h>
<text:p text:style-name="Standard"/>
<text:p text:style-name="Standard"><text:s text:c="5"/>Once a matrix has been factored, it is necessary to clear <text:s/>the <text:s/>matrix</text:p>
<text:p text:style-name="Standard">before <text:s/>it <text:s/>can <text:s/>be <text:s/>reloaded with new values. <text:s/>The straight forward way of</text:p>
<text:p text:style-name="Standard">doing that is to call spClear(), which sets the value of every <text:s/>element <text:s/>in</text:p>
<text:p text:style-name="Standard">the <text:s/>matrix to zero. <text:s/>Sparse also provides a more flexible way to clear the</text:p>