-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsiamfa.html
3086 lines (2426 loc) · 71.4 KB
/
siamfa.html
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>bibtex2html output</title>
</head>
<body>
<!-- This document was automatically generated with bibtex2html 1.96
(see http://www.lri.fr/~filliatr/bibtex2html/),
with the following command:
bibtex2html -s alpha -->
<table>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="abdelfattah2020survey">AAB<sup>+</sup>20</a>]
</td>
<td class="bibtexitem">
Ahmad Abdelfattah, Hartwig Anzt, Erik G. Boman, Erin Carson, Terry Cojean, Jack
Dongarra, Mark Gates, Thomas Grützmacher, Nicholas J. Higham, Sherry Li,
Neil Lindquist, Yang Liu, Jennifer Loe, Piotr Luszczek, Pratik Nayak, Sri
Pranesh, Siva Rajamanickam, Tobias Ribizel, Barry Smith, Kasia Swirydowicz,
Stephen Thomas, Stanimire Tomov, Yaohung M. Tsai, Ichitaro Yamazaki, and
Urike Meier Yang.
A survey of numerical methods utilizing mixed precision arithmetic,
2020.
[ <a href="http://arxiv.org/abs/2007.06674">arXiv</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Adamowicz21">Ada21</a>]
</td>
<td class="bibtexitem">
N. J. Adamowicz.
Perturbed dynamic mode decomposition acceleration of source iteration
for fixed-source neutron transport problems.
In <em>Proceedings of International Conference on Mathematics and
Computational Methods Applied to Nuclear Science & Engineering</em>, pages
1408-1417, 2021.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="allg">ABPR86</a>]
</td>
<td class="bibtexitem">
E. L. Allgower, K. Böhmer, F. A. Potra, and W. C. Rheinboldt.
A mesh-independence principle for operator equations and their
discretizations.
<em>SIAM J. Numer. Anal.</em>, 23:160-169, 1986.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="JuliaWeb">Ame20</a>]
</td>
<td class="bibtexitem">
A. Amerio.
From zero to Julia!
<a href="https://techytok.com/from-zero-to-julia">https://techytok.com/from-zero-to-julia</a>, 2020.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="An2017">AJW17</a>]
</td>
<td class="bibtexitem">
Hengbin An, Xiaowei Jia, and Homer F Walker.
Anderson acceleration and application to the three-temperature
energy equations.
<em>Journal of Computational Physics</em>, 347(June):1-19, 2017.
[ <a href="http://dx.doi.org/10.1016/j.jcp.2017.06.031">DOI</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="amgjl">Ana21</a>]
</td>
<td class="bibtexitem">
R. Anantharaman.
AlgebraicMultigrid.jl, 2021.
Julia Package.
[ <a href="https://github.com/JuliaLinearAlgebra/AlgebraicMultigrid.jl">http</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Anderson1965">And65</a>]
</td>
<td class="bibtexitem">
D. G. Anderson.
Iterative procedures for nonlinear integral equations.
<em>Journal of the ACM</em>, 12(4):547-560, October 1965.
[ <a href="http://dx.doi.org/10.1145/321296.321305">DOI</a> |
<a href="http://portal.acm.org/citation.cfm?doid=321296.321305">http</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="lapack">ABB<sup>+</sup>92</a>]
</td>
<td class="bibtexitem">
E. Anderson, Z. Bai, C. Bischof, J. Demmel, J. Dongarra, J. Du Croz,
A. Greenbaum, S. Hammarling, A. McKenney, S. Ostrouchov, and D. Sorensen.
<em>LAPACK Users Guide, Second Edition</em>.
SIAM, Philadelphia, 1992.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="dima21">ACWC21</a>]
</td>
<td class="bibtexitem">
D. Y. Anistratov, J. M. Coale, J. S. Warsa, and J. H. Chung.
Multilevel second-moment methods with group decomposition for
multigroup transport problems.
In <em>Proceedings of International Conference on Mathematics and
Computational Methods Applied to Nuclear Science & Engineering</em>, pages
404-413, 2021.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="armijo">Arm66</a>]
</td>
<td class="bibtexitem">
L. Armijo.
Minimization of functions having Lipschitz-continuous first partial
derivatives.
<em>Pacific J. Math.</em>, 16:1-3, 1966.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="lindauri">AP98</a>]
</td>
<td class="bibtexitem">
U. M. Ascher and L. R. Petzold.
<em>Computer Methods for Ordinary Differential Equations and
Differential Algebraic Equations</em>.
SIAM, Philadelphia, 1998.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="atkelem">Atk89</a>]
</td>
<td class="bibtexitem">
K. E. Atkinson.
<em>An Introduction to Numerical Analysis</em>.
John Wiley and Sons, New York, second edition, 1989.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="petsc-web-page">BAA<sup>+</sup>19</a>]
</td>
<td class="bibtexitem">
Satish Balay, Shrirang Abhyankar, Mark F. Adams, Jed Brown, Peter Brune, Kris
Buschelman, Lisandro Dalcin, Alp Dener, Victor Eijkhout, William D. Gropp,
Dmitry Karpeyev, Dinesh Kaushik, Matthew G. Knepley, Dave A. May,
Lois Curfman McInnes, Richard Tran Mills, Todd Munson, Karl Rupp, Patrick
Sanan, Barry F. Smith, Stefano Zampini, Hong Zhang, and Hong Zhang.
PETSc Web page.
<a href="https://www.mcs.anl.gov/petsc">https://www.mcs.anl.gov/petsc</a>, 2019.
[ <a href="https://www.mcs.anl.gov/petsc">http</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="petsc-user-ref">BAA<sup>+</sup>20</a>]
</td>
<td class="bibtexitem">
Satish Balay, Shrirang Abhyankar, Mark F. Adams, Jed Brown, Peter Brune, Kris
Buschelman, Lisandro Dalcin, Alp Dener, Victor Eijkhout, William D. Gropp,
Dmitry Karpeyev, Dinesh Kaushik, Matthew G. Knepley, Dave A. May,
Lois Curfman McInnes, Richard Tran Mills, Todd Munson, Karl Rupp, Patrick
Sanan, Barry F. Smith, Stefano Zampini, Hong Zhang, and Hong Zhang.
PETSc users manual.
Technical Report ANL-95/11 - Revision 3.13, Argonne National
Laboratory, 2020.
[ <a href="https://www.mcs.anl.gov/petsc">http</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ctk:xferheat2">BK98</a>]
</td>
<td class="bibtexitem">
J. M. Banoczi and C. T. Kelley.
A fast multilevel algorithm for the solution of nonlinear systems of
conductive-radiative heat transfer equations.
<em>SIAM J. Sci. Comp.</em>, 19:266-279, 1998.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ctk:xferheat3">BK99</a>]
</td>
<td class="bibtexitem">
J. M. Banoczi and C. T. Kelley.
A fast multilevel algorithm for the solution of nonlinear systems of
conductive-radiative heat transfer equations in two space dimensions.
<em>SIAM J. Sci. Comp.</em>, 20:1214-1228, 1999.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="bertini">BHSW13</a>]
</td>
<td class="bibtexitem">
D. J. Bates, J. D. Hauenstein, A. J. Sommese, and C. Wampler.
<em>Numerically Solving Polynomial Systems with Bertini</em>.
SIAM, Philadelphia, 2013.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Juliasirev">BEKS17</a>]
</td>
<td class="bibtexitem">
J. Bezanson, A. Edelman, S. Karpinski, and V. B. Shah.
Julia: A fresh approach to numerical computing.
<em>SIAM Review</em>, 59:65-98, 2017.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ctk:nonsmoothand">BCK21</a>]
</td>
<td class="bibtexitem">
W. Bian, X. Chen, and C. T. Kelley.
Anderson acceleration for a class of nonsmooth fixed-point problems.
<em>SIAM J. Sci. Comp.</em>, 43:S1-S20, 2021.
[ <a href="http://dx.doi.org/10.1137/20M132938X">DOI</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="HomotopyContinuation.jl">BT18</a>]
</td>
<td class="bibtexitem">
P. Breiding and S. Timme.
HomotopyContinuation.jl: A Package for Homotopy
Continuation in Julia.
In <em>International Congress on Mathematical Software</em>, pages
458-465. Springer, 2018.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="slc">BCP96</a>]
</td>
<td class="bibtexitem">
K. E. Brenan, S. L. Campbell, and L. R. Petzold.
<em>The Numerical Solution of Initial Value Problems in
Differential-Algebraic Equations</em>.
Number 14 in Classics in Applied Mathematics. SIAM, Philadelphia,
1996.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="brent">Bre73</a>]
</td>
<td class="bibtexitem">
R.P. Brent.
Some efficient algorithms for solving systems of nonlinear equations.
<em>SIAM J. Numer. Anal.</em>, 10:327-344, 1973.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="rmg">BSB95</a>]
</td>
<td class="bibtexitem">
E. L. Briggs, D. J. Sullivan, and J. Bernholc.
Large-scale electronic-structure calculations with multigrid
acceleration.
<em>Phys. Rev. B</em>, 52:R5471-R5474, 1995.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="mgtut2">BHM00</a>]
</td>
<td class="bibtexitem">
W. L. Briggs, V. E. Henson, and S. McCormick.
<em>A Multigrid Tutorial, 2nd edition</em>.
Society for Industrial and Applied Mathematics, Philadelphia, 2000.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="brownh86">BH86</a>]
</td>
<td class="bibtexitem">
P. N. Brown and A. C. Hindmarsh.
Matrix-free methods for stiff systems of ODE's.
<em>SIAM J. Numer. Anal.</em>, 23:610-638, 1986.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="brown/saad90">BS90</a>]
</td>
<td class="bibtexitem">
P. N. Brown and Y. Saad.
Hybrid Krylov methods for nonlinear systems of equations.
<em>SIAM J. Sci. Stat. Comp.</em>, 11:450-481, 1990.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="daspk">BHP94</a>]
</td>
<td class="bibtexitem">
P. N. Brown, A. C. Hindmarsh, and L. R. Petzold.
Using Krylov methods in the solution of large-scale
differential-algebraic systems.
<em>SIAM J. Sci. Comp.</em>, 15:1467-1488, 1994.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="busb">Bus60</a>]
</td>
<td class="bibtexitem">
I. W. Busbridge.
<em>The Mathematics of Radiative Transfer</em>.
Number 50 in Cambridge Tracts. Cambridge Univ. Press, Cambridge,
1960.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ctk:jordan">CIKM96</a>]
</td>
<td class="bibtexitem">
S. L. Campbell, I. C. F. Ipsen, C. T. Kelley, and C. D. Meyer.
GMRES and the minimal polynomial.
<em>BIT</em>, 36:664-675, 1996.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="CancesLeBris">CB00</a>]
</td>
<td class="bibtexitem">
È. Cancès and C. Le Bris.
Can we outperform the DIIS approach for electronic structure
calculations?
<em>International Journal of Quantum Chemistry</em>, 79:82-90, 2000.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="CancesDamping">CKL21</a>]
</td>
<td class="bibtexitem">
È. Cancès, G. Kemlin, and A. Levitt.
Convergence analysis of direct minimization and self-consistent
iterations.
<em>SIAM J. Sci. Comp.</em>, 42:243-274, 2021.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Carlson1998">CM98</a>]
</td>
<td class="bibtexitem">
N. N. Carlson and K. Miller.
Design and application of a gradient weighted moving finite element
code I: In one dimension.
<em>SIAM J. Sci. Comp.</em>, 19 No. 3:766-798, 1998.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="chand">Cha60</a>]
</td>
<td class="bibtexitem">
S. Chandrasekhar.
<em>Radiative Transfer</em>.
Dover, New York, 1960.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ctk:ediis">CK19</a>]
</td>
<td class="bibtexitem">
X. Chen and C. T. Kelley.
Analysis of the EDIIS algorithm.
<em>SIAM J. Sci. Comp.</em>, 41:A365-A379, 2019.
[ <a href="http://dx.doi.org/10.1137/18M1171084">DOI</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ctk:ptc2">CKK03</a>]
</td>
<td class="bibtexitem">
T. Coffey, C. T. Kelley, and D. E. Keyes.
Pseudo-transient continuation and differential-algebraic equations.
<em>SIAM J. Sci. Comp.</em>, 25:553-569, 2003.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ctk:todd1">CMKM03</a>]
</td>
<td class="bibtexitem">
T. S. Coffey, R. J. McMullan, C. T. Kelley, and D. S. McRae.
Globally convergent algorithms for nonsmooth nonlinear equations in
computational fluid dynamics.
<em>J. Comp. Appl. Math.</em>, 152:69-81, 2003.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="colmore">CM83</a>]
</td>
<td class="bibtexitem">
T. F. Coleman and J. J. Moré.
Estimation of sparse Jacobian matrices and graph coloring problems.
<em>SIAM J. Numer. Anal.</em>, 20:187-209, 1983.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="colelilsq">CL96</a>]
</td>
<td class="bibtexitem">
T. F. Coleman and Y. Li.
A reflective Newton method for minimizing a quadratic function
subject to bounds on some of the variables.
<em>SIAM J. Opt.</em>, 6:1040-1058, 1996.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="CollierEtAl2015">CHSW15</a>]
</td>
<td class="bibtexitem">
A. M. Collier, A. C. Hindmarsh, R. Serban, and C. S. Woodward.
User documentation for KINSOL v2.8.0.
Technical Report UCRL-SM-208116, Lawrence Livermore National
Laboratory, 2015.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="JuliaWiki">Con20</a>]
</td>
<td class="bibtexitem">
Wiki Contributors.
Julia for MATLAB Users.
<a href="https://en.wikibooks.org/wiki/Julia_for_MATLAB_Users">https://en.wikibooks.org/wiki/Julia_for_MATLAB_Users</a>, 2020.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ilu0jl">Cov21</a>]
</td>
<td class="bibtexitem">
M. Covalt.
ILUZero.jl, 2021.
Julia Package.
[ <a href="https://github.com/mcovalt/ILUZero.jl">http</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="crandall">CR71</a>]
</td>
<td class="bibtexitem">
M. G. Crandall and P. H. Rabinowitz.
Bifurcation from simple eigenvalues.
<em>J. Funct. Anal.</em>, 8:321-340, 1971.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="curtispr">CPR74</a>]
</td>
<td class="bibtexitem">
A. R. Curtis, M. J. D. Powell, and J. K. Reid.
On the estimation of sparse Jacobian matrices.
<em>J. Inst. Math. Appl.</em>, 13:117-119, 1974.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="NLA_Julia">DW21</a>]
</td>
<td class="bibtexitem">
E. Darve and M. Wooters.
<em>Numerical Linear Algebra with Julia</em>.
SIAM, Philadelphia, 2021.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="gausstab">DR56</a>]
</td>
<td class="bibtexitem">
P. Davis and P. Rabinovitz.
Abscissas and weights for Gaussian quadratures of high order.
<em>Journal of Research of the National Bureau of Standards</em>, 56,
1956.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="umfpack">Dav04</a>]
</td>
<td class="bibtexitem">
T. A. Davis.
Algorithm 832: UMFPACK, an unsymmetric-pattern multifrontal method.
<em>ACM Transactions on Mathematical Software</em>, 30(2):196-199,
2004.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="davisbook">Dav06</a>]
</td>
<td class="bibtexitem">
T. A. Davis.
<em>Direct Methods for Sparse Linear Systems</em>.
Number 2 in Fundamentals of Algorithms. SIAM, Philadelphia, 2006.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="DeStercknl">DH21b</a>]
</td>
<td class="bibtexitem">
H. De Sterck and Y. He.
Linear asymptotic convergence of Anderson acceleration: Fixed-point
analysis.
<em>arXiv:2109.14176v1 [math.OC]</em>, 2021.
[ <a href="https://arxiv.org/abs/2109.14176">http</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="DeStercklin">DH21a</a>]
</td>
<td class="bibtexitem">
H. De Sterck and Y. He.
Anderson acceleration as a Krylov method with application to
asymptotic convergence analysis.
<em>arXiv:2109.14181v1 [math.NA]</em>, 2021.
[ <a href="https://arxiv.org/abs/2109.14181">http</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ctk:n1">DK80</a>]
</td>
<td class="bibtexitem">
D. W. Decker and C. T. Kelley.
Newton's method at singular points I.
<em>SIAM J. Numer. Anal.</em>, 17:66-70, 1980.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ctk:chord">DK83</a>]
</td>
<td class="bibtexitem">
D. W. Decker and C. T. Kelley.
Sublinear convergence of the chord method at singular points.
<em>Numer. Math.</em>, 42:147-154, 1983.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="dedrichszeller">DZ83</a>]
</td>
<td class="bibtexitem">
P. H. Dedrichs and R. Zeller.
Self-consistency iterations in electronic-structure calculations.
<em>Phys. Rev. B</em>, 28:5462-5472, 1983.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Degroote09">DBV09</a>]
</td>
<td class="bibtexitem">
J. Degroote, K.-J. Bathe, and J. Vierendeels.
Performance of a new partitioned procedure versus a monolithic
procedure in fluid-structure interaction.
<em>Computers and Structures</em>, 97:793-801, 2009.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="demboes">DES82</a>]
</td>
<td class="bibtexitem">
R.S. Dembo, S.C. Eisenstat, and T. Steihaug.
Inexact Newton methods.
<em>SIAM J. Numer. Anal.</em>, 19:400-408, 1982.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="demmel">Dem97</a>]
</td>
<td class="bibtexitem">
J. W. Demmel.
<em>Applied Numerical Linear Algebra</em>.
SIAM, Philadelphia, 1997.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="dens">DS96</a>]
</td>
<td class="bibtexitem">
J. E. Dennis and R. B. Schnabel.
<em>Numerical Methods for Unconstrained Optimization and Nonlinear
Equations</em>.
Number 16 in Classics in Applied Mathematics. SIAM, Philadelphia,
1996.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="deufptc">Deu02</a>]
</td>
<td class="bibtexitem">
P. Deuflhard.
Adaptive pseudo-transient continuation for nonlinear steady state
problems.
Technical Report 02-14, Konrad-Zuse-Zentrum für
Informationstechnik, Berlin, March 2002.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="doedelbook">Doe97</a>]
</td>
<td class="bibtexitem">
E. J. Doedel.
Lecture Notes on Numerical Analysis of Bifurcation Problems.
Lecture notes from Sommerschule über Nichtlineare
Gleichungssysteme, Hamburg, Germany, March 17-21, 1997. Available
by anonmyous ftp to ftp.cs.condordia.ca in pub/doedel/doc/hamburg.ps.Z.,
1997.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="linpack">DMBS79</a>]
</td>
<td class="bibtexitem">
J. J. Dongarra, C.B. Moler, J.R. Bunch, and G.W. Stewart.
<em>LINPACK Users' Guide</em>.
SIAM, Philadelphia, 1979.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="homerstan">EW94</a>]
</td>
<td class="bibtexitem">
S. C. Eisenstat and H. F. Walker.
Globally convergent inexact Newton methods.
<em>SIAM J. Optim.</em>, 4:393-422, 1994.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="homerstan2">EW96</a>]
</td>
<td class="bibtexitem">
S. C. Eisenstat and H. F. Walker.
Choosing the forcing terms in an inexact Newton method.
<em>SIAM J. Sci. Comp.</em>, 17:16-32, 1996.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Ettenhuber2015crop">EJ15</a>]
</td>
<td class="bibtexitem">
Patrick Ettenhuber and Poul Jørgensen.
Discarding information from previous iterations in an optimal way to
solve the coupled cluster amplitude equations.
<em>Journal of Chemical Theory and Computation</em>, 11(4):1518-1524,
2015.
[ <a href="http://dx.doi.org/10.1021/ct501114q">DOI</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="pollock2">EPRX20</a>]
</td>
<td class="bibtexitem">
C. Evans, S. Pollock, L. G. Rebholz, and M. Xiao.
A proof that Anderson acceleration improves the convergence rate in
linearly converging fixed point methods (but not in those converging
quadratically).
<em>SIAM J. Numer. Anal.</em>, 58:788-810, 2020.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Fang2009">FS09</a>]
</td>
<td class="bibtexitem">
Haw-ren Fang and Yousef Saad.
Two classes of multisecant methods for nonlinear acceleration.
<em>Numerical Linear Algebra with Applications</em>, 16(August
2008):197-221, 2009.
[ <a href="http://dx.doi.org/10.1002/nla">DOI</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ctk:ptcre">FKC<sup>+</sup>03</a>]
</td>
<td class="bibtexitem">
M. W. Farthing, C. E. Kees, T. Coffey, C. T. Kelley, and C. T. Miller.
Efficient steady-state solution techniques for variably saturated
groundwater flow.
<em>Advances in Water Resources</em>, 26:833-849, 2003.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ctk:ferng1">FK00</a>]
</td>
<td class="bibtexitem">
W. R. Ferng and C. T. Kelley.
Mesh independence of matrix-free methods for path following.
21:1835-1850, 2000.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ctk:katie2">FK05</a>]
</td>
<td class="bibtexitem">
K. R. Fowler and C. T. Kelley.
Pseudo-transient continuation for nonsmooth nonlinear equations.
<em>SIAM J. Numer. Anal.</em>, 43:1385-1406, 2005.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="tfqmr">Fre93</a>]
</td>
<td class="bibtexitem">
R. W. Freund.
A transpose-free quasi-minimal residual algorithm for non-Hermitian
linear systems.
<em>SIAM J. Sci. Comp.</em>, 14:470-482, 1993.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="FFTW05">FJ05</a>]
</td>
<td class="bibtexitem">
M. Frigo and S. G. Johnson.
The design and implementation of FFTW3.
<em>Proceedings of the IEEE</em>, 93(2):216-231, 2005.
Special issue on “Program Generation, Optimization, and Platform
Adaptation”.
[ <a href="http://dx.doi.org/10.1109/JPROC.2004.840301">DOI</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="g16">FTS<sup>+</sup>16</a>]
</td>
<td class="bibtexitem">
M. J. Frisch, G. W. Trucks, H. B. Schlegel, G. E. Scuseria, M. A. Robb, J. R.
Cheeseman, G. Scalmani, V. Barone, G. A. Petersson, H. Nakatsuji, X. Li,
M. Caricato, A. V. Marenich, J. Bloino, B. G. Janesko, R. Gomperts,
B. Mennucci, H. P. Hratchian, J. V. Ortiz, A. F. Izmaylov, J. L. Sonnenberg,