-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathTAGS
8618 lines (8247 loc) · 246 KB
/
TAGS
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
makefile,1181
makefile:^?makefile^A,1
ALL:ALL7,176
DIRS 9,186
all 17,379
info:info21,566
tao_build_c:tao_build_c68,2505
tao_build_fortran:tao_build_fortran81,2984
tao_testexamples:tao_testexamples92,3444
tao_testfortran:tao_testfortran103,3938
tao_testexamples_uni:tao_testexamples_uni116,4549
tao_testfortran_uni:tao_testfortran_uni125,5027
tao_ranlib:tao_ranlib136,5548
tao_deletelibs:tao_deletelibs140,5630
tao_shared:tao_shared143,5675
tao_chklib_dir:tao_chklib_dir151,5945
tao_alletags:tao_alletags166,6519
BMAKEFILES 170,6561
DOCS 171,6593
SCRIPTS 172,6637
tao_alldoc:tao_alldoc177,6867
tao_deletemanualpages:tao_deletemanualpages183,6998
tao_deletelatexpages:tao_deletelatexpages188,7169
tao_allmanpages:tao_allmanpages193,7331
tao_allmanualpages:tao_allmanualpages195,7382
tao_htmlpages:tao_htmlpages203,7645
tao_alllatexpages:tao_alllatexpages206,7754
tao_allfortranstubs:tao_allfortranstubs210,7861
tao_countfortranfunctions:tao_countfortranfunctions218,8075
tao_countcfunctions:tao_countcfunctions223,8301
tao_difffortranfunctions:tao_difffortranfunctions228,8556
tao_checkbadfortranstubs:tao_checkbadfortranstubs235,9031
exercises:exercises273,10859
include/taoappobject.h,127
taoappobject.h:^?taoappobject.h^A,1
#define TAOPROBLEMOBJECT_H2,27
class TaoApplication 16,304
virtual ~TaoApplication(TaoApplication::~TaoApplication20,342
include/tao_solver.h,644
tao_solver.h:^?tao_solver.h^A,1
#define __TAO_SOLVER_H6,103
TAO_CONVERGED_ATOL 22,506
TAO_CONVERGED_RTOL 23,573
TAO_CONVERGED_TRTOL 24,650
TAO_CONVERGED_MINF 25,720
TAO_CONVERGED_USER 26,794
TAO_DIVERGED_MAXITS 28,883
TAO_DIVERGED_NAN 29,933
TAO_DIVERGED_MAXFCN 30,982
TAO_DIVERGED_LS_FAILURE 31,1030
TAO_DIVERGED_TR_REDUCTION 32,1078
TAO_DIVERGED_USER 33,1126
TAO_CONTINUE_ITERATING 34,1186
TAO_CONTINUE_ITERATING = 0} TaoTerminateReason;34,1186
#define TaoGetIterationData(121,5325
include/taoapp.h,86
taoapp.h:^?taoapp.h^A,1
#define TAOAPPHEADER_H2,23
typedef struct _p_TAOAPPLICATION* TAO_APPLICATION;14,377
include/taodaapplication.h,198
taodaapplication.h:^?taodaapplication.h^A,1
#define PETSCDAAPPHEADER_H2,27
typedef struct _p_TAOAPPLICATION* TAO_APPLICATION;14,278
typedef struct _p_DA_APPLICATION* DA_APPLICATION;45,2342
typedef struct _p_TAO_SOLVER* TAO_SOLVER;63,3356
include/tao_log.h,25
tao_log.h:^?tao_log.h^A,1
#define __TAO_LOG_H8,81
include/makefile,184
makefile:^?makefile^A,1
CFLAGS 2,1
FFLAGS 3,12
SOURCEC 4,23
SOURCEF 5,34
SOURCEH 6,45
OBJSC 8,185
OBJSF 9,196
LIBBASE 10,207
DIRS 11,225
LOCDIR 12,245
MANSEC 13,265
runexamples:runexamples17,315
include/taomat.h,87
taomat.h:^?taomat.h^A,1
#define TAOMATRIX_H2,20
class TaoMat 9,101
virtual ~TaoMat(TaoMat::~TaoMat15,138
include/tao_basictypes.h,225
tao_basictypes.h:^?tao_basictypes.h^A,1
#define __TAO_TYPES_H7,119
typedef enum { TAO_FALSE,9,142
typedef enum { TAO_FALSE,TAO_TRUE 9,142
typedef enum { TAO_FALSE,TAO_TRUE } TaoTruth;9,142
typedef PetscScalar TaoScalar;13,209
typedef PetscInt TaoInt;14,241
include/tao_sys.h,1043
tao_sys.h:^?tao_sys.h^A,1
#define __TAO_TSYS_H7,194
typedef struct _p_TAO_SOLVER* TAO_SOLVER;16,365
typedef const char* TaoMethod;17,407
#define TaoMin(22,495
#define TaoMax(23,544
#define TaoMid(24,593
#define TaoAbsInt(29,894
#define TaoAbsDouble(30,944
#define TaoAbsScalar(31,994
#define TaoNaN(42,1375
#define TaoInf(43,1410
#define TaoInfOrNaN(44,1449
#define TaoNaN(49,1523
#define TaoInf(50,1557
#define TaoInfOrNaN(51,1591
#define TAO_DEFAULT 55,1650
#define TAO_INFINITY 56,1687
#define TAO_NINFINITY 57,1722
#define TAO_NULL 58,1758
#define TAO_EPSILON 59,1787
#define __FUNCT__ 62,1848
#define TaoFunctionBegin 78,2436
#define TaoFunctionReturn 79,2478
#define TaoValidIntPointer(81,2526
#define TaoValidScalarPointer(87,2764
#define TaoMalloc(95,3044
#define TaoNew(96,3101
#define TaoFree(97,3153
#define TAOHEADER(131,4813
#define TaoValidHeaderSpecific(132,4903
#define TaoValidHeader(134,5011
#define EXTERN_C_BEGIN 142,5342
#define EXTERN_C_END 143,5378
#define EXTERN_C_BEGIN 145,5407
#define EXTERN_C_END 146,5431
include/taolinearsolver.h,189
taolinearsolver.h:^?taolinearsolver.h^A,1
#define TAOLINEARSOLVER_H2,26
class TaoLinearSolver 14,212
TaoLinearSolver(TaoLinearSolver::TaoLinearSolver19,259
virtual ~TaoLinearSolver(TaoLinearSolver::~TaoLinearSolver20,284
include/tao_general.h,82
tao_general.h:^?tao_general.h^A,1
#define __TAO_H9,354
#define TAO_USE_PETSC33,976
#undef TAO_USE_PETSC 40,1138
include/tao_version.h,331
tao_version.h:^?tao_version.h^A,1
#define __TAO_VERSION_H2,30
#define TAO_VERSION_NUMBER 12,326
#define TAO_VERSION_RELEASE 13,397
#define TAO_VERSION_MAJOR 14,428
#define TAO_VERSION_MINOR 15,459
#define TAO_VERSION_SUBMINOR 16,491
#define TAO_PATCH_LEVEL 17,522
#define TAO_VERSION_(18,553
#define TAO_VERSION_DATE 22,734
#define TAO_AUTHOR_INFO 23,777
include/taovec.h,88
taovec.h:^?taovec.h^A,1
#define TAOVECTOR_H2,20
class TaoVec 13,172
virtual ~TaoVec(TaoVec::~TaoVec19,211
include/taois.h,110
taois.h:^?taois.h^A,1
#define TAOINDEXSET_H2,22
class TaoIndexSet 12,172
virtual ~TaoIndexSet(TaoIndexSet::~TaoIndexSet18,216
include/tao_esi.h,0
tao_esi.h:^?tao_esi.h^A,1
include/tao.h,0
tao.h:^?tao.h^A,1
include/finclude/tao_solver.h,269
tao_solver.h:^?tao_solver.h^A,1
! $Id$;2,2
#define TAO_SOLVER 6,65
#define TAO_APPLICATION 7,109
#define TaoApplication 8,153
#define TaoVecF 9,197
#define TaoMatF 10,241
#define TaoIndexSetF 11,285
#define TaoLinearSolverF 12,329
#define TaoMethod 13,373
#define TaoTerminateReason 14,421
include/finclude/tao_def.h,95
tao_def.h:^?tao_def.h^A,1
! $Id$;2,2
#define __TAODEF_H9,195
#define TaoTruth 14,272
#define TAO_NULL_OBJECT 18,337
include/finclude/makefile,182
makefile:^?makefile^A,1
CFLAGS 2,1
FFLAGS 3,13
SOURCEC 4,25
SOURCEF 5,37
SOURCEH 6,49
OBJSC 7,98
OBJSF 8,110
LIBBASE 9,122
DIRS 10,141
MANSEC 11,154
LOCDIR 12,167
runexamples:runexamples16,235
include/finclude/tao_general.h,13
tao_general.h:^?tao_general.h^A,1
! $Id$;2,2
include/pinclude/makefile,95
makefile:^?makefile^A,1
SOURCEH 2,1
LINCLUDE 3,46
DIRS 4,68
DOCS 5,80
LOCDIR 6,98
runexamples:runexamples10,165
maint/generateetags.py,69
generateetags.py:^?generateetags.py^A,1
def addFileNameTags(22,422
def processDir(42,982
def main(58,1733
maint/generatefortranstubs.py,82
generatefortranstubs.py:^?generatefortranstubs.py^A,1
def FixFile(10,206
def FixDir(34,1296
def processDir(46,1640
def main(66,2503
maint/wwwindex.py,229
wwwindex.py:^?wwwindex.py^A,1
def maketranspose(26,664
def printindex(42,1213
def printsingleindex(106,3794
def modifylevel(160,5784
def createtable(196,6949
def addtolist(219,7700
def createdict(235,8198
def getallmandirs(254,8866
def main(266,9246
docs/makefile,199
makefile:^?makefile^A,1
CFLAGS 2,1
FFLAGS 3,12
SOURCEC 4,23
SOURCEF 5,34
SOURCEH 6,45
DOCS 7,57
OBJSC 12,389
OBJSF 13,400
LIBBASE 14,411
LINCLUDE 15,429
DIRS 16,451
LOCDIR 17,463
runexamples:runexamples21,518
docs/tex/manual/rosenbrock1.c,69
rosenbrock1.c:^?rosenbrock1.c^A,1
int n;4,90
double alpha;5,124
} AppCtx;6,168
int main(10,312
docs/tex/manual/makefile,491
makefile:^?makefile^A,1
NOADIC 2,1
manual.dvi:manual.dvi6,158
oldmanual.html:oldmanual.html27,1234
| sed 's/bullet:| sed 's/bullet42,2060
manual.pdf:manual.pdf50,2321
manual.ps:manual.ps55,2505
manual_tex.dvi:manual_tex.dvi65,2841
splitmanual.html:splitmanual.html72,3043
clean:clean85,3716
routines.red:routines.red89,3871
routines.dvi:routines.dvi127,5903
routines.ps:routines.ps131,5998
latex2htmlmanual1.html:latex2htmlmanual1.html135,6096
manual.html:manual.html138,6193
docs/tex/taorefs/makefile,58
makefile:^?makefile^A,1
all:all1,0
taorefs:taorefs3,22
taopubs:taopubs6,175
docs/tex/ccatech/rosenbrock.c,16
rosenbrock.c:^?rosenbrock.c^A,1
int main(7,159
examples/rosenbrock1f.F,87
rosenbrock1f.F:^?rosenbrock1f.F^A,1
subroutine FormFunctionGradient(159,5054
subroutine FormHessian(231,7104
examples/rosenbrock1.c,336
rosenbrock1.c:^?rosenbrock1.c^A,1
static char help[help9,153
PetscInt n;35,1116
PetscReal alpha;36,1155
} AppCtx;37,1202
#undef __FUNCT__43,1401
#define __FUNCT__ 44,1418
int main(45,1443
#undef __FUNCT__133,4688
#define __FUNCT__ 134,4705
int FormFunctionGradient(152,5301
#undef __FUNCT__182,6104
#define __FUNCT__ 183,6121
int FormHessian(198,6505
examples/plate2.c,1006
plate2.c:^?plate2.c^A,1
static char help[help6,68
PetscReal bheight;42,1737
PetscInt mx,43,1820
PetscInt mx, my;43,1820
PetscInt bmx,44,1903
PetscInt bmx,bmy;44,1903
Vec Bottom,45,1984
Vec Bottom, Top,45,1984
Vec Bottom, Top, Left,45,1984
Vec Bottom, Top, Left, Right;45,1984
Vec localX,48,2071
Vec localX, localV;48,2071
DA da;49,2138
Mat H;50,2217
} AppCtx;51,2234
#undef __FUNCT__61,2566
#define __FUNCT__ 62,2583
int main(63,2608
#undef __FUNCT__199,8399
#define __FUNCT__ 200,8416
int FormFunctionGradient(222,9371
#undef __FUNCT__410,14629
#define __FUNCT__ 411,14646
int FormHessian(450,16237
#undef __FUNCT__627,21308
#define __FUNCT__ 628,21325
static int MSA_BoundaryConditions(639,21587
#undef __FUNCT__768,24904
#define __FUNCT__ 769,24921
static int MSA_Plate(779,25155
#undef __FUNCT__834,26629
#define __FUNCT__ 835,26646
static int MSA_InitialPoint(846,26919
examples/makefile,196
makefile:^?makefile^A,1
ALL:ALL3,9
CFLAGS 5,27
FFLAGS 6,39
CPPFLAGS 7,51
FPPFLAGS 8,70
LOCDIR 9,89
rosenbrock1:rosenbrock113,148
rosenbrock1f:rosenbrock1f17,281
minsurf1:minsurf121,459
plate2:plate225,577
examples/minsurf1.c,835
minsurf1.c:^?minsurf1.c^A,1
static char help[help8,149
PetscInt mx,37,1481
PetscInt mx, my;37,1481
double *bottom,bottom38,1559
double *bottom, *top,top38,1559
double *bottom, *top, *left,left38,1559
double *bottom, *top, *left, *right;right38,1559
Mat H;39,1637
} AppCtx;40,1654
#undef __FUNCT__50,1967
#define __FUNCT__ 51,1984
int main(52,2009
#undef __FUNCT__158,6670
#define __FUNCT__ 159,6687
int FormFunctionGradient(172,7126
#undef __FUNCT__327,10963
#define __FUNCT__ 328,10980
int FormHessian(343,11364
#undef __FUNCT__360,11911
#define __FUNCT__ 361,11928
int QuadraticH(372,12161
#undef __FUNCT__523,15986
#define __FUNCT__ 524,16003
static int MSA_BoundaryConditions(535,16265
#undef __FUNCT__612,18147
#define __FUNCT__ 613,18164
static int MSA_InitialPoint(624,18437
examples/rosenbrock1f.h,0
rosenbrock1f.h:^?rosenbrock1f.h^A,1
src/makefile,80
makefile:^?makefile^A,1
TAOSOLVERDIRS 3,9
TAOOBJECTDIRS 4,73
DIRS 5,131
SOURCEH 6,246
LOCDIR 8,275
src/tao_impl.h,3390
tao_impl.h:^?tao_impl.h^A,1
#define __TAO_IMPL_H2,21
#define MAX_TAO_MONITORS 9,97
#define MAX_TAO_DESTROY 12,154
struct _p_TAO_SOLVER 15,189
TAOHEADER(17,213
void *data;data22,402
int (*setup)setup24,499
int (*solve)solve25,601
int (*setdown)setdown26,691
int (*setfromoptions)setfromoptions28,771
int (*view)view29,861
TaoTruth setupcalled;31,936
TaoTruth set_method_called;32,1010
TaoApplication* taoappl;35,1176
TaoVec* vec_sol;37,1204
TaoVec* vec_sol_update;38,1269
double fc;39,1350
TaoInt nfuncs;40,1422
TaoInt max_funcs;41,1494
TaoVec* vec_grad;44,1643
TaoInt ngrads;45,1703
TaoInt nfgrads;46,1775
TaoTruth viewgradient;47,1857
TaoMat * hessian;50,1966
TaoInt nhesss;51,2037
TaoTruth viewhessian;52,2105
TaoLinearSolver* ksp;53,2133
TaoVec* XL;56,2226
TaoVec* XU;57,2299
double cnorm;58,2372
double cnorm0;59,2394
int (*CopyDuals)CopyDuals60,2417
TaoMat *jacobian;jacobian64,2507
TaoInt njac;65,2527
TaoTruth viewjacobian;66,2543
TaoVec* vfunc;68,2573
TaoVec *RXL,RXL69,2590
TaoVec *RXL, *RXU;RXU69,2590
TaoMat *CA;CA70,2611
TaoInt nvfunc;71,2625
TaoTruth viewvfunc;72,2642
void *linectx;linectx77,2807
TaoInt lsflag;79,2833
int (*LineSearchSetUp)LineSearchSetUp81,2911
int (*LineSearchSetFromOptions)LineSearchSetFromOptions82,2958
int (*LineSearchApply)LineSearchApply83,3014
int (*LineSearchView)LineSearchView84,3125
int (*LineSearchDestroy)LineSearchDestroy85,3171
int (*MeritFunctionApply)MeritFunctionApply88,3258
int (*MeritFunctionGradientApply)MeritFunctionGradientApply89,3328
int (*MeritGradientApply)MeritGradientApply90,3416
int (*MeritFunctionGTSApply)MeritFunctionGTSApply91,3486
int (*MeritFunctionDestroy)MeritFunctionDestroy92,3578
void *meritctx;meritctx93,3630
double trtol;96,3684
double trust0;97,3741
double current_step;98,3798
TaoTruth new_search;99,3867
double step;100,3943
TaoInt numbermonitors;104,4097
int (*defaultmonitor)defaultmonitor105,4176
int (*monitor[monitor106,4256
void *monitorcontext[monitorcontext107,4334
int (*converged)converged108,4407
double fatol;112,4562
double frtol;113,4640
double catol;114,4718
double crtol;115,4792
double gatol;116,4866
double grtol;117,4937
double gttol;118,5008
double xtol;119,5079
double fmin;120,5149
TaoInt max_its;123,5311
TaoInt iter;124,5378
TaoTerminateReason reason;125,5444
double norm;127,5474
double norm0;128,5550
int linear_its;129,5627
void *cnvP;cnvP133,5788
double *conv_hist;conv_hist134,5843
TaoInt *conv_hist_its;conv_hist_its136,5955
TaoInt conv_hist_len;137,6035
TaoInt conv_hist_max;138,6110
TaoTruth conv_hist_reset;139,6189
TaoTruth viewtao;141,6271
TaoTruth viewksptao;142,6295
TaoInt numberdestroyers;145,6378
int (*userdestroy[userdestroy146,6407
void *userctxdestroy[userctxdestroy147,6455
TaoVec* WorkX1;152,6585
#define TaoLogConvHistory(155,6614
src/lsolver/taolinearsolver.c,651
taolinearsolver.c:^?taolinearsolver.c^A,1
#undef __FUNCT__4,81
#define __FUNCT__ 5,98
int TaoLinearSolver::PreSolve(14,270
#undef __FUNCT__21,400
#define __FUNCT__ 22,417
int TaoLinearSolver::Solve(35,687
#undef __FUNCT__42,841
#define __FUNCT__ 43,858
int TaoLinearSolver::SolveTrustRegion(61,1354
#undef __FUNCT__69,1564
#define __FUNCT__ 70,1581
int TaoLinearSolver::GetNumberIterations(79,1810
#undef __FUNCT__86,2031
#define __FUNCT__ 87,2048
int TaoLinearSolver::SetTolerances(100,2378
#undef __FUNCT__106,2599
#define __FUNCT__ 107,2616
int TaoLinearSolver::SetOptions(115,2788
#undef __FUNCT__124,3136
#define __FUNCT__ 125,3153
int TaoLinearSolver::View(133,3289
src/lsolver/taomatselfsolver.h,320
taomatselfsolver.h:^?taomatselfsolver.h^A,1
#define TAOMATSELFSOLVER_H2,27
class TaoMatSelfSolver:TaoMatSelfSolver9,165
TaoMat *tmoperator;TaoMatSelfSolver::tmoperator13,227
double radius;TaoMatSelfSolver::radius14,249
TaoMatSelfSolver(TaoMatSelfSolver::TaoMatSelfSolver18,276
virtual ~TaoMatSelfSolver(TaoMatSelfSolver::~TaoMatSelfSolver19,317
src/lsolver/taomatselfsolver.c,548
taomatselfsolver.c:^?taomatselfsolver.c^A,1
#undef __FUNCT__5,103
#define __FUNCT__ 6,120
int TaoMatSelfSolver::PreSolve(7,167
#undef __FUNCT__15,328
#define __FUNCT__ 16,345
int TaoMatSelfSolver::Solve(17,389
#undef __FUNCT__27,673
#define __FUNCT__ 28,690
int TaoMatSelfSolver::GetNumberIterations(29,748
#undef __FUNCT__35,863
#define __FUNCT__ 36,880
int TaoMatSelfSolver::SetTolerances(37,932
#undef __FUNCT__42,1067
#define __FUNCT__ 43,1084
int TaoMatSelfSolver::SetOptions(44,1133
#undef __FUNCT__49,1216
#define __FUNCT__ 50,1233
int TaoMatSelfSolver::View(51,1276
src/lsolver/makefile,154
makefile:^?makefile^A,1
ALL:ALL2,1
CFLAGS 4,11
FFLAGS 5,22
SOURCEC 6,33
SOURCEF 7,81
SOURCEH 8,93
OBJSC 9,123
OBJSF 10,171
LIBBASE 11,183
MANSEC 12,201
LOCDIR 13,220
src/fortran/makefile,49
makefile:^?makefile^A,1
ALL:ALL3,9
DIRS 5,19
XDIRS 6,42
LOCDIR 7,58
src/fortran/auto/fdifff.c,318
fdifff.c:^?fdifff.c^A,1
#define PetscToPointer(24,405
#define PetscFromPointer(25,446
#define PetscRmPointer(26,484
#define taoappsetcoloring_ 34,665
#define taoappsetcoloring_ 36,794
#define taoappsetcoloring_ 38,846
#define taoappsetcoloring_ 42,937
#define taoappsetcoloring_ 44,1065
void PETSC_STDCALL taoappsetcoloring_(54,1218
src/fortran/auto/tao_mfjf.c,1312
tao_mfjf.c:^?tao_mfjf.c^A,1
#define PetscToPointer(24,407
#define PetscFromPointer(25,448
#define PetscRmPointer(26,486
#define mattaomfsetfromoptions_ 32,602
#define mattaomfsetfromoptions_ 34,741
#define mattaomfsetfromoptions_ 36,803
#define mattaomfsetfromoptions_ 40,904
#define mattaomfsetfromoptions_ 42,1042
#define mattaomfgeth_ 48,1170
#define mattaomfgeth_ 50,1289
#define mattaomfgeth_ 52,1331
#define mattaomfgeth_ 56,1412
#define mattaomfgeth_ 58,1530
#define mattaomfsetgradienterror_ 64,1638
#define mattaomfsetgradienterror_ 66,1781
#define mattaomfsetgradienterror_ 68,1847
#define mattaomfsetgradienterror_ 72,1952
#define mattaomfsetgradienterror_ 74,2094
#define mattaomfsethhistory_ 80,2226
#define mattaomfsethhistory_ 82,2359
#define mattaomfsethhistory_ 84,2415
#define mattaomfsethhistory_ 88,2510
#define mattaomfsethhistory_ 90,2642
#define mattaomfresethhistory_ 96,2764
#define mattaomfresethhistory_ 98,2901
#define mattaomfresethhistory_ 100,2961
#define mattaomfresethhistory_ 104,3060
#define mattaomfresethhistory_ 106,3196
void PETSC_STDCALL mattaomfsetfromoptions_(116,3357
void PETSC_STDCALL mattaomfgeth_(120,3491
void PETSC_STDCALL mattaomfsetgradienterror_(125,3648
void PETSC_STDCALL mattaomfsethhistory_(129,3807
void PETSC_STDCALL mattaomfresethhistory_(134,4010
src/fortran/auto/taoapp_gaf.c,1147
taoapp_gaf.c:^?taoapp_gaf.c^A,1
#define PetscToPointer(24,409
#define PetscFromPointer(25,450
#define PetscRmPointer(26,488
#define taosetupgaapplicationsolver_ 32,603
#define taosetupgaapplicationsolver_ 34,752
#define taosetupgaapplicationsolver_ 36,824
#define taosetupgaapplicationsolver_ 40,935
#define taosetupgaapplicationsolver_ 42,1083
#define taosolvegaapplication_ 48,1221
#define taosolvegaapplication_ 50,1358
#define taosolvegaapplication_ 52,1418
#define taosolvegaapplication_ 56,1517
#define taosolvegaapplication_ 58,1653
#define taogaappsetinitialsolutionvec_ 64,1779
#define taogaappsetinitialsolutionvec_ 66,1932
#define taogaappsetinitialsolutionvec_ 68,2008
#define taogaappsetinitialsolutionvec_ 72,2123
#define taogaappsetinitialsolutionvec_ 74,2275
#define taogaappmonitor_ 80,2417
#define taogaappmonitor_ 82,2542
#define taogaappmonitor_ 84,2590
#define taogaappmonitor_ 88,2677
#define taogaappmonitor_ 90,2801
void PETSC_STDCALL taosetupgaapplicationsolver_(100,2950
void PETSC_STDCALL taosolvegaapplication_(103,3110
void PETSC_STDCALL taogaappsetinitialsolutionvec_(106,3258
void PETSC_STDCALL taogaappmonitor_(109,3415
src/fortran/auto/tao_mfjdeff.c,348
tao_mfjdeff.c:^?tao_mfjdeff.c^A,1
#define PetscToPointer(24,410
#define PetscFromPointer(25,451
#define PetscRmPointer(26,489
#define mattaomfdefaultsetumin_ 32,605
#define mattaomfdefaultsetumin_ 34,744
#define mattaomfdefaultsetumin_ 36,806
#define mattaomfdefaultsetumin_ 40,907
#define mattaomfdefaultsetumin_ 42,1045
void PETSC_STDCALL mattaomfdefaultsetumin_(52,1208
src/fortran/auto/daappf.c,2727
daappf.c:^?daappf.c^A,1
#define PetscToPointer(24,405
#define PetscFromPointer(25,446
#define PetscRmPointer(26,484
#define taoappsetdaapp_ 32,606
#define taoappsetdaapp_ 34,729
#define taoappsetdaapp_ 36,775
#define taoappsetdaapp_ 40,860
#define taoappsetdaapp_ 42,982
#define daappgetda_ 48,1094
#define daappgetda_ 50,1209
#define daappgetda_ 52,1247
#define daappgetda_ 56,1324
#define daappgetda_ 58,1438
#define daappgetnumberofdagrids_ 64,1542
#define daappgetnumberofdagrids_ 66,1683
#define daappgetnumberofdagrids_ 68,1747
#define daappgetnumberofdagrids_ 72,1850
#define daappgetnumberofdagrids_ 74,1990
#define daappgetcurrentlevel_ 80,2120
#define daappgetcurrentlevel_ 82,2255
#define daappgetcurrentlevel_ 84,2313
#define daappgetcurrentlevel_ 88,2410
#define daappgetcurrentlevel_ 90,2544
#define daappsethessianmat_ 96,2668
#define daappsethessianmat_ 98,2799
#define daappsethessianmat_ 100,2853
#define daappsethessianmat_ 104,2946
#define daappsethessianmat_ 106,3076
#define daappgetsolution_ 112,3196
#define daappgetsolution_ 114,3323
#define daappgetsolution_ 116,3373
#define daappgetsolution_ 120,3462
#define daappgetsolution_ 122,3588
#define daappgetinterpolationmatrix_ 128,3704
#define daappgetinterpolationmatrix_ 130,3853
#define daappgetinterpolationmatrix_ 132,3925
#define daappgetinterpolationmatrix_ 136,4036
#define daappgetinterpolationmatrix_ 138,4184
#define daappgetvariablebounds_ 144,4322
#define daappgetvariablebounds_ 146,4461
#define daappgetvariablebounds_ 148,4523
#define daappgetvariablebounds_ 152,4624
#define daappgetvariablebounds_ 154,4762
#define daappsetinitialsolution_ 160,4890
#define daappsetinitialsolution_ 162,5031
#define daappsetinitialsolution_ 164,5095
#define daappsetinitialsolution_ 168,5198
#define daappsetinitialsolution_ 170,5338
#define daappsetmattype_ 176,5468
#define daappsetmattype_ 178,5593
#define daappsetmattype_ 180,5641
#define daappsetmattype_ 184,5728
#define daappsetmattype_ 186,5852
#define daappsetoptions_ 192,5966
#define daappsetoptions_ 194,6091
#define daappsetoptions_ 196,6139
#define daappsetoptions_ 200,6226
#define daappsetoptions_ 202,6350
void PETSC_STDCALL taoappsetdaapp_(212,6499
void PETSC_STDCALL daappgetda_(215,6658
void PETSC_STDCALL daappgetnumberofdagrids_(218,6801
void PETSC_STDCALL daappgetcurrentlevel_(221,6959
void PETSC_STDCALL daappsethessianmat_(224,7111
void PETSC_STDCALL daappgetsolution_(227,7245
void PETSC_STDCALL daappgetinterpolationmatrix_(230,7407
void PETSC_STDCALL daappgetvariablebounds_(233,7630
void PETSC_STDCALL daappsetinitialsolution_(236,7817
void PETSC_STDCALL daappsetmattype_(240,7997
void PETSC_STDCALL daappsetoptions_(243,8152
src/fortran/auto/adelementf.c,414
adelementf.c:^?adelementf.c^A,1
#define PetscToPointer(24,409
#define PetscFromPointer(25,450
#define PetscRmPointer(26,488
#define daappsetadelementfunctiongradient_ 31,580
#define daappsetadelementfunctiongradient_ 33,741
#define daappsetadelementfunctiongradient_ 35,825
#define daappsetadelementfunctiongradient_ 39,948
#define daappsetadelementfunctiongradient_ 41,1108
void PETSC_STDCALL daappsetadelementfunctiongradient_(51,1293
src/fortran/auto/tao_app_fgf.c,2107
tao_app_fgf.c:^?tao_app_fgf.c^A,1
#define PetscToPointer(24,410
#define PetscFromPointer(25,451
#define PetscRmPointer(26,489
#define taoappcomputeobjective_ 32,598
#define taoappcomputeobjective_ 34,737
#define taoappcomputeobjective_ 36,799
#define taoappcomputeobjective_ 40,900
#define taoappcomputeobjective_ 42,1038
#define taoappcomputegradient_ 48,1166
#define taoappcomputegradient_ 50,1303
#define taoappcomputegradient_ 52,1363
#define taoappcomputegradient_ 56,1462
#define taoappcomputegradient_ 58,1598
#define taoappcomputeobjectiveandgradient_ 64,1724
#define taoappcomputeobjectiveandgradient_ 66,1885
#define taoappcomputeobjectiveandgradient_ 68,1969
#define taoappcomputeobjectiveandgradient_ 72,2092
#define taoappcomputeobjectiveandgradient_ 74,2252
#define taoappsethessianmat_ 80,2402
#define taoappsethessianmat_ 82,2535
#define taoappsethessianmat_ 84,2591
#define taoappsethessianmat_ 88,2686
#define taoappsethessianmat_ 90,2818
#define taoappgethessianmat_ 96,2940
#define taoappgethessianmat_ 98,3073
#define taoappgethessianmat_ 100,3129
#define taoappgethessianmat_ 104,3224
#define taoappgethessianmat_ 106,3356
#define taoapphessiansolve_ 112,3478
#define taoapphessiansolve_ 114,3609
#define taoapphessiansolve_ 116,3663
#define taoapphessiansolve_ 120,3756
#define taoapphessiansolve_ 122,3886
#define taoappresetcounters_ 128,4006
#define taoappresetcounters_ 130,4139
#define taoappresetcounters_ 132,4195
#define taoappresetcounters_ 136,4290
#define taoappresetcounters_ 138,4422
#define taoappcounters_ 144,4544
#define taoappcounters_ 146,4667
#define taoappcounters_ 148,4713
#define taoappcounters_ 152,4798
#define taoappcounters_ 154,4920
void PETSC_STDCALL taoappcomputeobjective_(164,5067
void PETSC_STDCALL taoappcomputegradient_(168,5241
void PETSC_STDCALL taoappcomputeobjectiveandgradient_(173,5435
void PETSC_STDCALL taoappsethessianmat_(178,5665
void PETSC_STDCALL taoappgethessianmat_(183,5857
void PETSC_STDCALL taoapphessiansolve_(186,5999
void PETSC_STDCALL taoappresetcounters_(191,6225
void PETSC_STDCALL taoappcounters_(194,6347
src/fortran/auto/tao_fghjf.c,964
tao_fghjf.c:^?tao_fghjf.c^A,1
#define PetscToPointer(24,408
#define PetscFromPointer(25,449
#define PetscRmPointer(26,487
#define taoincrementgradientscounter_ 32,603
#define taoincrementgradientscounter_ 34,754
#define taoincrementgradientscounter_ 36,828
#define taoincrementgradientscounter_ 40,941
#define taoincrementgradientscounter_ 42,1091
#define taoevaluatevariablebounds_ 48,1231
#define taoevaluatevariablebounds_ 50,1376
#define taoevaluatevariablebounds_ 52,1444
#define taoevaluatevariablebounds_ 56,1551
#define taoevaluatevariablebounds_ 58,1695
#define taosetlagrangiangradientvector_ 64,1829
#define taosetlagrangiangradientvector_ 66,1984
#define taosetlagrangiangradientvector_ 68,2062
#define taosetlagrangiangradientvector_ 72,2179
#define taosetlagrangiangradientvector_ 74,2333
void PETSC_STDCALL taoincrementgradientscounter_(84,2512
void PETSC_STDCALL taoevaluatevariablebounds_(87,2670
void PETSC_STDCALL taosetlagrangiangradientvector_(92,2891
src/fortran/auto/linef.c,354
linef.c:^?linef.c^A,1
#define PetscToPointer(24,404
#define PetscFromPointer(25,445
#define PetscRmPointer(26,483
#define taogetcurrentsteplength_ 32,599
#define taogetcurrentsteplength_ 34,740
#define taogetcurrentsteplength_ 36,804
#define taogetcurrentsteplength_ 40,907
#define taogetcurrentsteplength_ 42,1047
void PETSC_STDCALL taogetcurrentsteplength_(52,1212
src/fortran/auto/tao_utilf.c,1009
tao_utilf.c:^?tao_utilf.c^A,1
#define PetscToPointer(24,408
#define PetscFromPointer(25,449
#define PetscRmPointer(26,487
#define taoconverged_maxits_ 32,603
#define taoconverged_maxits_ 34,692
#define taoconverged_maxits_ 36,790
#define taoconverged_maxits_ 38,846
#define taoconverged_maxits_ 42,941
#define taoconverged_maxits_ 44,1029
#define taoconverged_maxits_ 46,1126
#define taoconverged_default_ 52,1248
#define taoconverged_default_ 54,1339
#define taoconverged_default_ 56,1439
#define taoconverged_default_ 58,1497
#define taoconverged_default_ 62,1594
#define taoconverged_default_ 64,1684
#define taoconverged_default_ 66,1783
#define taosetdefaultmeritfunction_ 72,1907
#define taosetdefaultmeritfunction_ 74,2054
#define taosetdefaultmeritfunction_ 76,2124
#define taosetdefaultmeritfunction_ 80,2233
#define taosetdefaultmeritfunction_ 82,2379
void PETSC_STDCALL taoconverged_maxits_(92,2550
void PETSC_STDCALL taoconverged_default_(95,2678
void PETSC_STDCALL taosetdefaultmeritfunction_(98,2808
src/fortran/auto/daapp_mgridf.c,556
daapp_mgridf.c:^?daapp_mgridf.c^A,1
#define PetscToPointer(24,411
#define PetscFromPointer(25,452
#define PetscRmPointer(26,490
#define daappusemultigrid_ 31,582
#define daappusemultigrid_ 33,711
#define daappusemultigrid_ 35,763
#define daappusemultigrid_ 39,854
#define daappusemultigrid_ 41,982
#define daappsetupmultigrid_ 47,1100
#define daappsetupmultigrid_ 49,1233
#define daappsetupmultigrid_ 51,1289
#define daappsetupmultigrid_ 55,1384
#define daappsetupmultigrid_ 57,1516
void PETSC_STDCALL daappusemultigrid_(67,1673
void PETSC_STDCALL daappsetupmultigrid_(70,1840
src/fortran/auto/tao_app_jf.c,826
tao_app_jf.c:^?tao_app_jf.c^A,1
#define PetscToPointer(24,409
#define PetscFromPointer(25,450
#define PetscRmPointer(26,488
#define taoappsetfunctionvec_ 32,597
#define taoappsetfunctionvec_ 34,732
#define taoappsetfunctionvec_ 36,790
#define taoappsetfunctionvec_ 40,887
#define taoappsetfunctionvec_ 42,1021
#define taoappsetjacobianmat_ 48,1145
#define taoappsetjacobianmat_ 50,1280
#define taoappsetjacobianmat_ 52,1338
#define taoappsetjacobianmat_ 56,1435
#define taoappsetjacobianmat_ 58,1569
#define taoappgetjacobianmat_ 64,1693
#define taoappgetjacobianmat_ 66,1828
#define taoappgetjacobianmat_ 68,1886
#define taoappgetjacobianmat_ 72,1983
#define taoappgetjacobianmat_ 74,2117
void PETSC_STDCALL taoappsetfunctionvec_(84,2276
void PETSC_STDCALL taoappsetjacobianmat_(88,2434
void PETSC_STDCALL taoappgetjacobianmat_(93,2628
src/fortran/auto/newsolverf.c,2142
newsolverf.c:^?newsolverf.c^A,1
#define PetscToPointer(24,409
#define PetscFromPointer(25,450
#define PetscRmPointer(26,488
#define taosetmethodfromoptions_ 32,604
#define taosetmethodfromoptions_ 34,745
#define taosetmethodfromoptions_ 36,809
#define taosetmethodfromoptions_ 40,912
#define taosetmethodfromoptions_ 42,1052
#define taosetfromoptions_ 48,1182
#define taosetfromoptions_ 50,1311
#define taosetfromoptions_ 52,1363
#define taosetfromoptions_ 56,1454
#define taosetfromoptions_ 58,1582
#define taosetdefaultparameters_ 64,1700
#define taosetdefaultparameters_ 66,1841
#define taosetdefaultparameters_ 68,1905
#define taosetdefaultparameters_ 72,2008
#define taosetdefaultparameters_ 74,2148
#define taosetdefaultstatistics_ 80,2278
#define taosetdefaultstatistics_ 82,2419
#define taosetdefaultstatistics_ 84,2483
#define taosetdefaultstatistics_ 88,2586
#define taosetdefaultstatistics_ 90,2726
#define taosetdefaultmonitors_ 96,2856
#define taosetdefaultmonitors_ 98,2993
#define taosetdefaultmonitors_ 100,3053
#define taosetdefaultmonitors_ 104,3152
#define taosetdefaultmonitors_ 106,3288
#define taosetup_ 112,3414
#define taosetup_ 114,3525
#define taosetup_ 116,3559
#define taosetup_ 120,3632
#define taosetup_ 122,3742
#define taodestroy_ 128,3842
#define taodestroy_ 130,3957
#define taodestroy_ 132,3995
#define taodestroy_ 136,4072
#define taodestroy_ 138,4186
#define taosetdown_ 144,4290
#define taosetdown_ 146,4405
#define taosetdown_ 148,4443
#define taosetdown_ 152,4520
#define taosetdown_ 154,4634
#define taoresetsolver_ 160,4738
#define taoresetsolver_ 162,4861
#define taoresetsolver_ 164,4907
#define taoresetsolver_ 168,4992
#define taoresetsolver_ 170,5114
void PETSC_STDCALL taosetmethodfromoptions_(180,5261
void PETSC_STDCALL taosetfromoptions_(183,5386
void PETSC_STDCALL taosetdefaultparameters_(186,5499
void PETSC_STDCALL taosetdefaultstatistics_(189,5624
void PETSC_STDCALL taosetdefaultmonitors_(192,5749
void PETSC_STDCALL taosetup_(195,5870
void PETSC_STDCALL taodestroy_(198,5965
void PETSC_STDCALL taosetdown_(201,6064
void PETSC_STDCALL taoresetsolver_(204,6163
src/fortran/auto/taoapp_utilf.c,1105
taoapp_utilf.c:^?taoapp_utilf.c^A,1
#define PetscToPointer(24,411
#define PetscFromPointer(25,452
#define PetscRmPointer(26,490
#define taosolveapplication_ 32,599
#define taosolveapplication_ 34,732
#define taosolveapplication_ 36,788
#define taosolveapplication_ 40,883
#define taosolveapplication_ 42,1015
#define taosetupapplicationsolver_ 48,1137
#define taosetupapplicationsolver_ 50,1282
#define taosetupapplicationsolver_ 52,1350
#define taosetupapplicationsolver_ 56,1457
#define taosetupapplicationsolver_ 58,1601