-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.tags
2266 lines (2266 loc) · 211 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
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR Darren Hiebert /[email protected]/
!_TAG_PROGRAM_NAME Exuberant Ctags //
!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
!_TAG_PROGRAM_VERSION 5.9~svn20110310 //
ABORT src/utility/abort.h 45;" d
ALIGN_CENTER src/utility/fmt/format.h /^ ALIGN_DEFAULT, ALIGN_LEFT, ALIGN_RIGHT, ALIGN_CENTER, ALIGN_NUMERIC$/;" e enum:alignment
ALIGN_DEFAULT src/utility/fmt/format.h /^ ALIGN_DEFAULT, ALIGN_LEFT, ALIGN_RIGHT, ALIGN_CENTER, ALIGN_NUMERIC$/;" e enum:alignment
ALIGN_LEFT src/utility/fmt/format.h /^ ALIGN_DEFAULT, ALIGN_LEFT, ALIGN_RIGHT, ALIGN_CENTER, ALIGN_NUMERIC$/;" e enum:alignment
ALIGN_NUMERIC src/utility/fmt/format.h /^ ALIGN_DEFAULT, ALIGN_LEFT, ALIGN_RIGHT, ALIGN_CENTER, ALIGN_NUMERIC$/;" e enum:alignment
ALIGN_RIGHT src/utility/fmt/format.h /^ ALIGN_DEFAULT, ALIGN_LEFT, ALIGN_RIGHT, ALIGN_CENTER, ALIGN_NUMERIC$/;" e enum:alignment
ASSERT_ALLWAYS src/utility/abort.h 47;" d
Abort diagram/logger.py /^def Abort(info):$/;" f
AcceptChange src/weight.cpp /^void weight::AcceptChange(group &Group) {$/;" f class:weight
Accepted src/markov.h /^ double Accepted[MCUpdates][MaxGroupNum];$/;" m class:mc::markov
Accu polar_lam.py /^ Accu = {}$/;" v
Accu polar_lam_order.py /^ Accu = {}$/;" v
Accu tool/plt_polar_diag.py /^ Accu = {}$/;" v
Accu tool/plt_polar_lam.py /^ Accu = {}$/;" v
AdjustGroupReWeight src/markov.cpp /^void markov::AdjustGroupReWeight() {$/;" f class:markov
Angle2D src/vertex.cpp /^double verfunc::Angle2D(const momentum &K1, const momentum &K2) {$/;" f class:verfunc
Angle2Index src/vertex.cpp /^int verfunc::Angle2Index(const double &Angle, const int &AngleNum) {$/;" f class:verfunc
Assert diagram/logger.py /^def Assert(condition, info):$/;" f
AssignFromTo src/utility/utility.h /^template <typename T> void AssignFromTo(T *source, T *target, int size) {$/;" f
AssignMomentums diagram/diagram.py /^def AssignMomentums(permutation, reference, InteractionPairs):$/;" f
AttachExtVer diagram/polar.py /^ def AttachExtVer(self, FreeEnergyDiag):$/;" m class:polar
BACKGROUND_COLOR src/utility/fmt/format-inl.h /^template <typename T> const char basic_data<T>::BACKGROUND_COLOR[] = "\\x1b[48;2;";$/;" m class:internal::basic_data
BARE src/global.h /^enum selfenergy { BARE, FOCK, DRESSED }; \/\/ self energy type$/;" e enum:selfenergy
BUFFER_SIZE src/utility/fmt/format.h /^ enum {BUFFER_SIZE = std::numeric_limits<unsigned long long>::digits10 + 3};$/;" e enum:format_int::__anon12
Beta src/global.h /^ double Beta; \/\/ inverse temperature$/;" m struct:parameter
Bose src/weight.h /^ bose Bose;$/;" m class:diag::weight
Bubble bubble.py /^def Bubble(Dim, Beta, Spin, Kf, Mom):$/;" f
Bubble polar_eqTime.py /^ Bubble = bubble.Bubble(D, Para.Beta, Spin, Para.kF, 0.0)$/;" v
Bubble polar_lam_order.py /^ Bubble = bubble.Bubble(D, Para.Beta, Spin, Para.kF, 0.0)$/;" v
Bubble tool/plt_polar_diag.py /^ Bubble = bubble.Bubble(D, Para.Beta, Spin, Para.kF, 0.0)$/;" v
Bubble tool/plt_polar_lam.py /^ Bubble = bubble.Bubble(D, Para.Beta, Spin, Para.kF, 0.0)$/;" v
BubbleQ polar_lam_order.py /^ BubbleQ = np.zeros(len(KGrid))$/;" v
BubbleQ polar_lam_order.py /^BubbleQ = np.zeros((len(KGrid),2))$/;" v
BubbleQ tool/plt_polar_diag.py /^ BubbleQ = np.zeros((len(KGrid),2))$/;" v
BubbleQ tool/plt_polar_lam.py /^ BubbleQ = np.zeros((len(KGrid),2))$/;" v
BuildADiagram diagram/free_energy.py /^ def BuildADiagram(self):$/;" m class:free_energy
BuildADiagram diagram/polar.py /^ def BuildADiagram(self):$/;" m class:polar
BuildFockSigma src/vertex.cpp /^void fermi::BuildFockSigma() {$/;" f class:fermi
CHANGE_GROUP src/markov.h /^ CHANGE_GROUP,$/;" e enum:mc::markov::Updates
CHANGE_MOM src/markov.h /^ CHANGE_MOM,$/;" e enum:mc::markov::Updates
CHANGE_TAU src/markov.h /^ CHANGE_TAU,$/;" e enum:mc::markov::Updates
CHECKNULL src/utility/utility.h 83;" d
Center src/utility/utility.cpp /^std::string Center(const string s, const int w) {$/;" f
ChangeGroup src/markov.cpp /^void markov::ChangeGroup() {$/;" f class:markov
ChangeGroup src/weight.cpp /^void weight::ChangeGroup(group &Group, bool Forced) {$/;" f class:weight
ChangeMom src/weight.cpp /^void weight::ChangeMom(group &Group, int MomIndex) {$/;" f class:weight
ChangeMomentum src/markov.cpp /^void markov::ChangeMomentum() {$/;" f class:markov
ChangeTau src/markov.cpp /^void markov::ChangeTau() {$/;" f class:markov
ChangeTau src/weight.cpp /^void weight::ChangeTau(group &Group, int TauIndex) {$/;" f class:weight
Char src/utility/fmt/printf.h /^ typedef typename Context::char_type Char;$/;" t class:internal::arg_converter
CheckConservation diagram/diagram.py /^def CheckConservation(permutation, MomentumBases, InteractionPairs, LoopNum=None):$/;" f
CleanFile src/utility/utility.cpp /^bool CleanFile(const string &FileName) {$/;" f
Cluster send.py /^Cluster = "local"$/;" v
Cluster send.py /^Cluster="PBS"$/;" v
ColorList IO.py /^ColorList = ColorList*40$/;" v
ColorList IO.py /^ColorList = ['k', 'r', 'b', 'g', 'm', 'c', 'navy',$/;" v
CopyToArray src/utility/vector.h /^ void CopyToArray(T *target) const {$/;" f class:Vec
Counter src/global.h /^ long long int Counter; \/\/ counter to save the current MC step$/;" m struct:parameter
Counter src/markov.h /^ long long Counter;$/;" m class:mc::markov
CurrExtMomBin src/weight.h /^ int CurrExtMomBin; \/\/ current bin of the external momentum$/;" m struct:diag::variable
CurrGroup src/weight.h /^ group *CurrGroup;$/;" m struct:diag::variable
CurrTau src/weight.h /^ double CurrTau; \/\/ current external tau$/;" m struct:diag::variable
CurrVersion src/weight.h /^ long int CurrVersion;$/;" m struct:diag::variable
D polar_eqTime.py /^D = 3$/;" v
D polar_lam.py /^D = 3$/;" v
D polar_lam_order.py /^D = 3$/;" v
D reweight.py /^D = 3$/;" v
D src/global.h /^const int D = 3;$/;" v
D tool/plt_lambda.py /^D = 3$/;" v
D tool/plt_polar_diag.py /^D = 3$/;" v
D tool/plt_polar_lam.py /^D = 3$/;" v
DEBUGMODE src/global.h /^const bool DEBUGMODE = false;$/;" v
DECREASE_ORDER src/markov.h /^ DECREASE_ORDER,$/;" e enum:mc::markov::Updates
DIGITS src/utility/fmt/format-inl.h /^const char basic_data<T>::DIGITS[] =$/;" m class:internal::basic_data
DIRECT src/global.h /^const int DIRECT = 0, EXCHANGE = 1;$/;" v
DOWN src/global.h /^enum spin { DOWN, UP };$/;" e enum:spin
DRESSED src/global.h /^enum selfenergy { BARE, FOCK, DRESSED }; \/\/ self energy type$/;" e enum:selfenergy
DebugInfo src/weight_test.cpp /^string weight::DebugInfo(group &Group) {$/;" f class:weight
Delay src/utility/abort.cpp /^void InterruptHandler::Delay()$/;" f class:InterruptHandler
DelayedInterrupt diagram/logger.py /^class DelayedInterrupt(object):$/;" c
DeltaK src/vertex.h /^ double DeltaK;$/;" m class:diag::fermi
DeltaK2 src/vertex.h /^ double DeltaK2;$/;" m class:diag::fermi
Diag src/diagram.h /^ vector<diagram> Diag; \/\/ diagrams$/;" m struct:diag::group
DiagFileFormat src/global.h /^ std::string DiagFileFormat; \/\/ the diagram file needs to be loaded$/;" m struct:parameter
Direct2Exchange diagram/diagram.py /^def Direct2Exchange(permutation, i, j):$/;" f
Dismiss src/utility/scopeguard.h /^ void Dismiss()$/;" f class:ScopeGuard
DoesFileExist src/utility/utility.cpp /^bool DoesFileExist(const string &FileName) {$/;" f
DynamicTest src/markov.cpp /^int markov::DynamicTest() { return Weight.DynamicTest(); }$/;" f class:markov
DynamicTest src/weight_test.cpp /^int weight::DynamicTest() {$/;" f class:weight
EF forkE.py /^ EF = kF**2$/;" v
EF tool/fock.py /^EF=1.91$/;" v
END src/markov.h /^ END$/;" e enum:mc::markov::Updates
EPS src/global.h /^const double EPS = 1.0e-11;$/;" v
EQUALTIME src/global.h /^enum obstype { FREQ, EQUALTIME };$/;" e enum:obstype
ERR src/weight_test.cpp /^std::string weight::ERR(std::string format, TS... args) {$/;" f class:weight
ERROR src/utility/logger.h /^ ERROR,$/;" e enum:LogLevel
EXCHANGE src/global.h /^const int DIRECT = 0, EXCHANGE = 1;$/;" v
Each polar_lam.py /^ Each = {}$/;" v
Each polar_lam_order.py /^ Each = {}$/;" v
Each tool/plt_polar_diag.py /^ Each = {}$/;" v
Each tool/plt_polar_lam.py /^ Each = {}$/;" v
Ef src/global.h /^ double Rs, Ef, Kf,$/;" m struct:parameter
Equal src/utility/utility.cpp /^bool Equal(double x1, double x2, double eps) { return (fabs(x1 - x2) < eps); }$/;" f
Equal src/utility/utility.cpp /^bool Equal(int x1, int x2, double eps) { return x1 == x2; }$/;" f
Equal src/utility/utility.cpp /^bool Equal(uint x1, uint x2, double eps) { return x1 == x2; }$/;" f
Equal src/utility/utility.h /^bool Equal(const T *x1, const T *x2, uint num, double eps = eps0) {$/;" f
ErrorPlot IO.py /^def ErrorPlot(p, x, d, color='k', marker='s', label=None, size=4, shift=False):$/;" f
EsData polar_eqTime.py /^ EsData = reduce.Reduce(EsDataDict, Map)$/;" v
EsData polar_lam.py /^ EsData = reduce.Reduce(EsDataDict, Map)$/;" v
EsData polar_lam_order.py /^ EsData = reduce.Reduce(EsDataDict, Map)$/;" v
EsData tool/plt_polar_diag.py /^ EsData = reduce.Reduce(EsDataDict, Map)$/;" v
EsData tool/plt_polar_lam.py /^ EsData = reduce.Reduce(EsDataDict, Map)$/;" v
EsDataDict polar_eqTime.py /^ EsDataDict = {}$/;" v
EsDataDict polar_lam.py /^ EsDataDict = {}$/;" v
EsDataDict polar_lam_order.py /^ EsDataDict = {}$/;" v
EsDataDict tool/plt_polar_diag.py /^ EsDataDict = {}$/;" v
EsDataDict tool/plt_polar_lam.py /^ EsDataDict = {}$/;" v
Estimate reduce.py /^def Estimate(Data, Weights, axis=0):$/;" f
EstimateGroup reduce.py /^def EstimateGroup(DataDict, Steps, Phys, group):$/;" f
Excited src/diagram.h /^ array<bool, 2> Excited;$/;" m struct:diag::vertex4
Excited src/diagram.h /^ bool Excited;$/;" m struct:diag::green
ExtLoopNum src/diagram.h /^ int ExtLoopNum; \/\/ dimension of external loop basis$/;" m struct:diag::group
ExtMomBin tool/plt_lambda.py /^ExtMomBin = 5 #0,1,2,...n-1$/;" v
ExtMomMax tool/plt_lambda.py /^ExtMomMax = 10 #*kF$/;" v
ExtMomMin tool/plt_lambda.py /^ExtMomMin = 5$/;" v
ExtMomTable src/weight.h /^ array<momentum, ExtMomBinSize> ExtMomTable;$/;" m struct:diag::variable
ExtTauNum src/diagram.h /^ int ExtTauNum; \/\/ dimension of external tau basis$/;" m struct:diag::group
FLIP src/global.h 106;" d
FLIPSPIN src/global.h 93;" d
FMT_ALWAYS_INLINE src/utility/fmt/format.h /^inline char *lg(uint32_t n, Handler h) FMT_ALWAYS_INLINE;$/;" m namespace:internal
FMT_ALWAYS_INLINE src/utility/fmt/format.h 822;" d
FMT_ALWAYS_INLINE src/utility/fmt/format.h 824;" d
FMT_API src/utility/fmt/core.h 160;" d
FMT_API src/utility/fmt/core.h 162;" d
FMT_API src/utility/fmt/core.h 166;" d
FMT_ASSERT src/utility/fmt/core.h 170;" d
FMT_BEGIN_NAMESPACE src/utility/fmt/core.h 155;" d
FMT_BUILTIN_CLZ src/utility/fmt/format.h 173;" d
FMT_BUILTIN_CLZ src/utility/fmt/format.h 204;" d
FMT_BUILTIN_CLZLL src/utility/fmt/format.h 177;" d
FMT_BUILTIN_CLZLL src/utility/fmt/format.h 230;" d
FMT_CATCH src/utility/fmt/format-inl.h 41;" d
FMT_CATCH src/utility/fmt/format-inl.h 44;" d
FMT_CHAR src/utility/fmt/core.h 1315;" d
FMT_CHRONO_H_ src/utility/fmt/chrono.h 9;" d
FMT_CLANG_VERSION src/utility/fmt/format.h 41;" d
FMT_CLANG_VERSION src/utility/fmt/format.h 43;" d
FMT_COLOR_H_ src/utility/fmt/color.h 9;" d
FMT_CONSTEXPR src/utility/fmt/core.h 66;" d
FMT_CONSTEXPR src/utility/fmt/core.h 69;" d
FMT_CONSTEXPR11 src/utility/fmt/core.h 78;" d
FMT_CONSTEXPR11 src/utility/fmt/core.h 80;" d
FMT_CONSTEXPR_DECL src/utility/fmt/core.h 67;" d
FMT_CONSTEXPR_DECL src/utility/fmt/core.h 70;" d
FMT_CORE_H_ src/utility/fmt/core.h 9;" d
FMT_CUDA_VERSION src/utility/fmt/format.h 55;" d
FMT_CUDA_VERSION src/utility/fmt/format.h 57;" d
FMT_DETECTED_NOEXCEPT src/utility/fmt/core.h 131;" d
FMT_DETECTED_NOEXCEPT src/utility/fmt/core.h 134;" d
FMT_ENABLE_IF_T src/utility/fmt/core.h 1305;" d
FMT_END_NAMESPACE src/utility/fmt/core.h 150;" d
FMT_END_NAMESPACE src/utility/fmt/core.h 153;" d
FMT_EXCEPTIONS src/utility/fmt/core.h 118;" d
FMT_EXCEPTIONS src/utility/fmt/core.h 120;" d
FMT_EXPLICIT src/utility/fmt/core.h 95;" d
FMT_EXPLICIT src/utility/fmt/core.h 98;" d
FMT_FALLTHROUGH src/utility/fmt/format-inl.h 534;" d
FMT_FALLTHROUGH src/utility/fmt/format-inl.h 536;" d
FMT_FALLTHROUGH src/utility/fmt/format-inl.h 538;" d
FMT_FORMAT_H_ src/utility/fmt/format.h 29;" d
FMT_FORMAT_INL_H_ src/utility/fmt/format-inl.h 9;" d
FMT_FUNC src/utility/fmt/format.h 3544;" d
FMT_GCC_VERSION src/utility/fmt/core.h 41;" d
FMT_GCC_VERSION src/utility/fmt/core.h 43;" d
FMT_GNUC_LIBSTD_VERSION src/utility/fmt/format.h 95;" d
FMT_HAS_BUILTIN src/utility/fmt/format.h 89;" d
FMT_HAS_BUILTIN src/utility/fmt/format.h 91;" d
FMT_HAS_CPP_ATTRIBUTE src/utility/fmt/core.h 35;" d
FMT_HAS_CPP_ATTRIBUTE src/utility/fmt/core.h 37;" d
FMT_HAS_CXX11_NOEXCEPT src/utility/fmt/core.h 132;" d
FMT_HAS_CXX11_NOEXCEPT src/utility/fmt/core.h 135;" d
FMT_HAS_FEATURE src/utility/fmt/core.h 22;" d
FMT_HAS_FEATURE src/utility/fmt/core.h 24;" d
FMT_HAS_GXX_CXX11 src/utility/fmt/core.h 47;" d
FMT_HAS_GXX_CXX11 src/utility/fmt/core.h 49;" d
FMT_HAS_INCLUDE src/utility/fmt/core.h 29;" d
FMT_HAS_INCLUDE src/utility/fmt/core.h 31;" d
FMT_HEADER_ONLY src/global.h 113;" d
FMT_HEADER_ONLY src/weight_test.cpp 1;" d file:
FMT_ICC_VERSION src/utility/fmt/format.h 47;" d
FMT_ICC_VERSION src/utility/fmt/format.h 49;" d
FMT_ICC_VERSION src/utility/fmt/format.h 51;" d
FMT_INLINE_NAMESPACE src/utility/fmt/core.h 149;" d
FMT_INLINE_NAMESPACE src/utility/fmt/core.h 152;" d
FMT_LOCALE src/utility/fmt/posix.h 271;" d
FMT_LOCALE_H_ src/utility/fmt/locale.h 9;" d
FMT_MAKE_VALUE src/utility/fmt/core.h 642;" d
FMT_MAKE_VALUE_SAME src/utility/fmt/core.h 648;" d
FMT_MSC_VER src/utility/fmt/core.h 53;" d
FMT_MSC_VER src/utility/fmt/core.h 55;" d
FMT_NOEXCEPT src/utility/fmt/core.h /^typename std::add_rvalue_reference<T>::type declval() FMT_NOEXCEPT;$/;" m namespace:internal
FMT_NOEXCEPT src/utility/fmt/core.h 140;" d
FMT_NOEXCEPT src/utility/fmt/core.h 142;" d
FMT_NOEXCEPT src/utility/fmt/format.h /^ fmt::string_view message) FMT_NOEXCEPT;$/;" m namespace:internal
FMT_NOEXCEPT src/utility/fmt/posix.h /^ FMT_API void dup2(int fd, error_code &ec) FMT_NOEXCEPT;$/;" m class:file
FMT_NOEXCEPT src/utility/fmt/posix.h /^ FMT_API ~buffered_file() FMT_NOEXCEPT;$/;" m class:buffered_file
FMT_NOEXCEPT src/utility/fmt/posix.h /^ FMT_API ~file() FMT_NOEXCEPT;$/;" m class:file
FMT_NOMACRO src/utility/fmt/time.h /^inline null<> localtime_r FMT_NOMACRO(...) { return null<>(); }$/;" f namespace:internal
FMT_NOMACRO src/utility/fmt/time.h 19;" d
FMT_NULL src/utility/fmt/core.h 104;" d
FMT_NULL src/utility/fmt/core.h 107;" d
FMT_OSTREAM_H_ src/utility/fmt/ostream.h 9;" d
FMT_OVERRIDE src/utility/fmt/core.h 86;" d
FMT_OVERRIDE src/utility/fmt/core.h 88;" d
FMT_OVERRIDE src/utility/fmt/format.h /^ void grow(std::size_t size) FMT_OVERRIDE;$/;" m class:basic_memory_buffer
FMT_POSIX src/utility/fmt/posix.h 33;" d
FMT_POSIX src/utility/fmt/posix.h 35;" d
FMT_POSIX_CALL src/utility/fmt/posix.h 41;" d
FMT_POSIX_CALL src/utility/fmt/posix.h 46;" d
FMT_POSIX_CALL src/utility/fmt/posix.h 48;" d
FMT_POSIX_H_ src/utility/fmt/posix.h 9;" d
FMT_POWERS_OF_10 src/utility/fmt/format-inl.h 269;" d
FMT_PRINTF_H_ src/utility/fmt/printf.h 9;" d
FMT_RANGES_H_ src/utility/fmt/ranges.h 13;" d
FMT_RANGE_OUTPUT_LENGTH_LIMIT src/utility/fmt/ranges.h 20;" d
FMT_RETRY src/utility/fmt/posix.h 63;" d
FMT_RETRY_VAL src/utility/fmt/posix.h 55;" d
FMT_RETRY_VAL src/utility/fmt/posix.h 60;" d
FMT_SECURE_SCL src/utility/fmt/format.h 79;" d
FMT_SECURE_SCL src/utility/fmt/format.h 81;" d
FMT_SNPRINTF src/utility/fmt/format-inl.h 70;" d
FMT_STRING src/utility/fmt/format.h 3513;" d
FMT_STRING_VIEW src/utility/fmt/core.h 178;" d
FMT_STRING_VIEW src/utility/fmt/core.h 181;" d
FMT_SWPRINTF src/utility/fmt/format-inl.h 83;" d
FMT_SYSTEM src/utility/fmt/posix.h 43;" d
FMT_THROW src/utility/fmt/format.h 113;" d
FMT_TIME_H_ src/utility/fmt/time.h 9;" d
FMT_TRY src/utility/fmt/format-inl.h 40;" d
FMT_TRY src/utility/fmt/format-inl.h 43;" d
FMT_UDL_TEMPLATE src/utility/fmt/format.h 142;" d
FMT_USE_ALIAS_TEMPLATES src/utility/fmt/core.h 1308;" d
FMT_USE_CONSTEXPR src/utility/fmt/core.h 61;" d
FMT_USE_CONSTEXPR11 src/utility/fmt/core.h 74;" d
FMT_USE_EXPLICIT src/utility/fmt/core.h 94;" d
FMT_USE_EXPLICIT src/utility/fmt/core.h 97;" d
FMT_USE_EXTERN_TEMPLATES src/utility/fmt/format.h 149;" d
FMT_USE_GRISU src/utility/fmt/format.h 165;" d
FMT_USE_NOEXCEPT src/utility/fmt/core.h 126;" d
FMT_USE_NULLPTR src/utility/fmt/core.h 105;" d
FMT_USE_NULLPTR src/utility/fmt/core.h 111;" d
FMT_USE_TRAILING_RETURN src/utility/fmt/format.h 159;" d
FMT_USE_USER_DEFINED_LITERALS src/utility/fmt/format.h 129;" d
FMT_USE_WINDOWS_H src/utility/fmt/format.h 1029;" d
FMT_USE_WINDOWS_H src/utility/fmt/format.h 1031;" d
FMT_VERSION src/utility/fmt/core.h 19;" d
FOCK src/global.h /^enum selfenergy { BARE, FOCK, DRESSED }; \/\/ self energy type$/;" e enum:selfenergy
FOREGROUND_COLOR src/utility/fmt/format-inl.h /^template <typename T> const char basic_data<T>::FOREGROUND_COLOR[] = "\\x1b[38;2;";$/;" m class:internal::basic_data
FREQ src/global.h /^enum obstype { FREQ, EQUALTIME };$/;" e enum:obstype
Fermi src/weight.h /^ fermi Fermi;$/;" m class:diag::weight
FeynCalc_global_h src/global.h 2;" d
FeynCalc_random_h src/utility/rng.h 10;" d
Feynman_Simulator_scopeguard_h src/utility/scopeguard.h 10;" d
FindAllLoops diagram/diagram.py /^def FindAllLoops(permutation):$/;" f
FindIndependentK diagram/diagram.py /^def FindIndependentK(permutation, reference, InteractionPairs):$/;" f
Fock src/vertex.cpp /^double fermi::Fock(double k) {$/;" f class:fermi
FockSigma src/vertex.cpp /^double fermi::FockSigma(const momentum &Mom) {$/;" f class:fermi
FormatFunc src/utility/fmt/format-inl.h /^typedef void (*FormatFunc)(internal::buffer &, int, string_view);$/;" t namespace:__anon13
G src/diagram.h /^ array<green *, 2 * MaxOrder> G; \/\/ the index of all indepdent G$/;" m struct:diag::diagram
G tool/plt_polar_lam.py /^ G = {}$/;" v
GNum src/diagram.h /^ int GNum; \/\/ number of G$/;" m struct:diag::group
GPool src/diagram.h /^ std::array<green, MaxGPoolSize> GPool; \/\/ array to store indepdent G$/;" m struct:diag::pool
GPoolSize src/diagram.h /^ int GPoolSize;$/;" m struct:diag::pool
G_Err tool/plt_polar_lam.py /^ G_Err = {} $/;" v
G_PIMC tool/plt_polar_lam.py /^ G_PIMC= np.loadtxt(file)$/;" v
G_lq tool/plt_polar_lam.py /^ G_lq = np.concatenate((KGrid[:,np.newaxis]\/Para.kF,G[Para.Order][:,np.newaxis], G_Err[Para.Order][:,np.newaxis]), axis=1)$/;" v
Generate diagram/main.py /^def Generate(Order, VerOrder, SigmaOrder, QOrder, IsSelfEnergy, IsSpinPolar, IsSysPolar, SPIN):$/;" f
GetData reduce.py /^def GetData(Data, Groups, Steps, Phys, Map):$/;" f
GetHugen diagram/free_energy.py /^ def GetHugen(self, Permutation):$/;" m class:free_energy
GetInteractionPairs diagram/free_energy.py /^ def GetInteractionPairs(self):$/;" m class:free_energy
GetInteractionPairs diagram/polar.py /^ def GetInteractionPairs(self, WithMeasuring=False):$/;" m class:polar
GetLine IO.py /^def GetLine(file):$/;" f
GetMom src/weight.cpp /^void weight::GetMom(const loop &LoopBasis, const int &LoopNum, momentum &Mom) {$/;" f class:weight
GetNewK src/markov.cpp /^double markov::GetNewK(momentum &NewMom) {$/;" f class:markov
GetNewTau src/markov.cpp /^double markov::GetNewTau(double &NewTau) {$/;" f class:markov
GetNewWeight src/weight.cpp /^double weight::GetNewWeight(group &Group) {$/;" f class:weight
GetPermu diagram/diagram.py /^ def GetPermu(self):$/;" m class:diagram
GetReference diagram/free_energy.py /^ def GetReference(self):$/;" m class:free_energy
GetReference diagram/polar.py /^ def GetReference(self):$/;" m class:polar
Gfactor tool/plt_polar_lam.py /^Gfactor = {}$/;" v
Gfixq tool/plt_polar_lam.py /^Gfixq = {}$/;" v
Green src/vertex.cpp /^double fermi::Green(double Tau, const momentum &Mom, spin Spin, int GType) {$/;" f class:fermi
Group diagram/polar.py /^ def Group(self, PermutationDict, TimeRotation=True):$/;" m class:polar
GroupName src/global.h /^ std::vector<std::string> GroupName; \/\/ ID for each group$/;" m struct:parameter
Groups src/markov.h /^ vector<diag::group> &Groups;$/;" m class:mc::markov
Groups src/weight.h /^ vector<group> Groups;$/;" m class:diag::weight
HASH_FLAG src/utility/fmt/format.h /^enum { SIGN_FLAG = 1, PLUS_FLAG = 2, MINUS_FLAG = 4, HASH_FLAG = 8 };$/;" e enum:__anon6
HAVE_SPUT_H src/utility/sput.h 47;" d
HasFock diagram/diagram.py /^def HasFock(permutation, reference, vertype=None, gtype=None):$/;" f
HasTadpole diagram/diagram.py /^def HasTadpole(permutation, reference):$/;" f
HugenNum src/diagram.h /^ int HugenNum; \/\/ Number of Hugenholz diagrams in each group$/;" m struct:diag::group
HugenToFeyn diagram/polar.py /^ def HugenToFeyn(self, HugenPermu):$/;" m class:polar
ID src/diagram.h /^ int ID;$/;" m struct:diag::diagram
ID src/diagram.h /^ int ID;$/;" m struct:diag::group
IFinp1 tool/plt_polar_lam.py /^ IFinp1 = True$/;" v
IFinp1 tool/plt_polar_lam.py /^ IFinp1 = False$/;" v
IFinp1 tool/plt_polar_lam.py /^ IFinp1 = False$/;" v
IN src/global.h /^const int IN = 0;$/;" v
INCREASE_ORDER src/markov.h /^ INCREASE_ORDER = 0,$/;" e enum:mc::markov::Updates
INDEX src/utility/fmt/format.h /^ enum Kind { NONE, INDEX, NAME };$/;" e enum:internal::arg_ref::Kind
INFO src/utility/logger.h /^ INFO,$/;" e enum:LogLevel
INF_SIZE src/utility/fmt/format.h /^ enum {INF_SIZE = 3}; \/\/ This is an enum to workaround a bug in MSVC.$/;" e enum:basic_writer::__anon11
INL src/global.h /^const int INL = 0, OUTL = 1, INR = 2, OUTR = 3;$/;" v
INR src/global.h /^const int INL = 0, OUTL = 1, INR = 2, OUTR = 3;$/;" v
InInAngBinSize src/global.h /^const int InInAngBinSize = 32;$/;" v
InOutAngBinSize src/global.h /^const int InOutAngBinSize = 32;$/;" v
Index src/weight.h /^ array<green *, MaxGNum> Index;$/;" m struct:diag::weight::__anon16
Index src/weight.h /^ array<vertex4 *, MaxVer4Num> Index;$/;" m struct:diag::weight::__anon17
Index2Angle src/vertex.cpp /^double verfunc::Index2Angle(const int &Index, const int &AngleNum) {$/;" f class:verfunc
InitPara src/main.cpp /^void InitPara() {$/;" f
InitialArray src/utility/utility.h /^template <typename T> void InitialArray(T *target, T t, const int &size) {$/;" f
Initialization src/weight.cpp /^void weight::Initialization() {$/;" f class:weight
IntLoopBasis src/diagram.h /^ array<loop, 2> IntLoopBasis; \/\/ interaction loop basis for momentum transfer$/;" m struct:diag::vertex4
Interaction src/vertex.cpp /^double bose::Interaction(double Tau, const momentum &Mom, int VerType) {$/;" f class:bose
InternalLoopNum src/diagram.h /^ int InternalLoopNum; \/\/ dimension of internal loop basis$/;" m struct:diag::group
InternalTauNum src/diagram.h /^ int InternalTauNum; \/\/ dimension of internal tau basis$/;" m struct:diag::group
InterruptHandler src/utility/abort.cpp /^InterruptHandler::InterruptHandler()$/;" f class:InterruptHandler
InterruptHandler src/utility/abort.h /^class InterruptHandler {$/;" c
IsConnected diagram/diagram.py /^def IsConnected(Permutation, Reference, InteractionPairs):$/;" f
IsDelaying src/utility/abort.h /^ bool IsDelaying() { return __IsDelaying; }$/;" f class:InterruptHandler
IsExtLoop src/diagram.h /^ array<bool, MaxLoopNum> IsExtLoop;$/;" m struct:diag::group
IsExtTau src/diagram.h /^ array<bool, MaxTauNum> IsExtTau;$/;" m struct:diag::group
IsInPool src/weight_test.cpp /^template <typename T> bool IsInPool(const T *Pointer, const T *Pool, int Num) {$/;" f
IsInteractionReducible src/weight.cpp /^bool weight::IsInteractionReducible(loop &LoopBasisG1, loop &LoopBasisG2,$/;" f class:weight
IsInteractionReducible src/weight.cpp /^bool weight::IsInteractionReducible(loop &LoopBasisVer, int LoopNum) {$/;" f class:weight
IsLockedLoop src/diagram.h /^ array<bool, MaxLoopNum> IsLockedLoop;$/;" m struct:diag::group
IsLockedTau src/diagram.h /^ array<bool, MaxTauNum> IsLockedTau;$/;" m struct:diag::group
IsSelfEnergy diagram/main.py /^ IsSelfEnergy = False$/;" v
IsSpinPolar diagram/main.py /^ IsSpinPolar = False$/;" v
IsSymPolar diagram/main.py /^ IsSymPolar = True$/;" v
KGrid polar_eqTime.py /^ KGrid = Grids["KGrid"]$/;" v
KGrid polar_lam.py /^ KGrid = Grids["KGrid"]$/;" v
KGrid polar_lam_order.py /^ KGrid = Grids["KGrid"]$/;" v
KGrid tool/plt_polar_diag.py /^ KGrid = Grids["KGrid"]$/;" v
KGrid tool/plt_polar_lam.py /^ KGrid = Grids["KGrid"]$/;" v
Kf src/global.h /^ double Rs, Ef, Kf,$/;" m struct:parameter
Kind src/utility/fmt/format.h /^ enum Kind { NONE, INDEX, NAME };$/;" g struct:internal::arg_ref
LC_NUMERIC_MASK src/utility/fmt/posix.h /^ enum { LC_NUMERIC_MASK = LC_NUMERIC };$/;" e enum:Locale::__anon15
LEFT src/global.h /^const int LEFT = 0;$/;" v
LOGGER src/utility/logger.h 45;" d
LOGGER_CONF src/utility/logger.h 32;" d
LOGGER_H src/utility/logger.h 2;" d
LOGSTR src/utility/logger.h /^const std::string LOGSTR[4] = { "[DEBUG]", "[INFO]", "[WARNING]", "[ERROR]" };$/;" v
LOG_DEBUG src/utility/logger.h 52;" d
LOG_ERROR src/utility/logger.h 55;" d
LOG_INFO src/utility/logger.h 53;" d
LOG_WARNING src/utility/logger.h 54;" d
L_file_ src/utility/logger.h /^ L_file_ = 1 << 1,$/;" e enum:Logger::loggerConf_
L_nofile_ src/utility/logger.h /^ enum loggerConf_ { L_nofile_ = 1 << 0,$/;" e enum:Logger::loggerConf_
L_noscreen_ src/utility/logger.h /^ L_noscreen_ = 1 << 2,$/;" e enum:Logger::loggerConf_
L_screen_ src/utility/logger.h /^ L_screen_ = 1 << 3 };$/;" e enum:Logger::loggerConf_
Lambda src/global.h /^ double Lambda;$/;" m struct:parameter
Left src/utility/utility.cpp /^string Left(const string s, const int w) {$/;" f
LoadDiagrams diagram/free_energy.py /^ def LoadDiagrams(self, FileName):$/;" m class:free_energy
LoadFile IO.py /^def LoadFile(Folder, FileName):$/;" f
LoadFile_Diag IO.py /^def LoadFile_Diag(Folder):$/;" f
Locale src/utility/fmt/posix.h /^ Locale() : locale_(newlocale(LC_NUMERIC_MASK, "C", FMT_NULL)) {$/;" f class:Locale
Locale src/utility/fmt/posix.h /^class Locale {$/;" c
LogLevel src/utility/logger.h /^enum LogLevel { MYDEBUG,$/;" g
Logger src/utility/logger.cpp /^Logger::Logger()$/;" f class:Logger
Logger src/utility/logger.h /^class Logger {$/;" c
LoopBasis src/diagram.h /^ array<loop, 4> LoopBasis; \/\/ loop basis for momentum transfer$/;" m struct:diag::vertex4
LoopBasis src/diagram.h /^ loop LoopBasis; \/\/ loop basis for momentum$/;" m struct:diag::green
LoopMom src/weight.h /^ array<momentum, MaxLoopNum> LoopMom; \/\/ all momentum loop variables$/;" m struct:diag::variable
LoopNum src/diagram.h /^ int LoopNum; \/\/ dimension of loop basis$/;" m struct:diag::group
LoopSpin src/weight.h /^ array<int, MaxLoopNum> LoopSpin; \/\/ all spin variables$/;" m struct:diag::variable
LowerBound src/vertex.h /^ double UpperBound, LowerBound;$/;" m class:diag::fermi
LowerBound2 src/vertex.h /^ double UpperBound2, LowerBound2; \/\/ lower upbound for better sigma$/;" m class:diag::fermi
MACHEPS src/global.h /^const double MACHEPS = 2.22044604925031E-16; \/\/ Macheps + 1.0 > 1.0$/;" v
MAXBIN forkE.py /^ MAXBIN = 2**14 # must be 2**N$/;" v
MAXBIN forkE.py /^ MAXBIN = 2**15$/;" v
MAXINT src/global.h /^const int MAXINT = 2147483647;$/;" v
MAXREAL src/global.h /^const double MAXREAL = 1.0e30;$/;" v
MCUpdates src/markov.h /^const int MCUpdates = 5;$/;" m namespace:mc
MININT src/global.h /^const int MININT = -2147483647;$/;" v
MINREAL src/global.h /^const double MINREAL = -1.0e30;$/;" v
MINUS_FLAG src/utility/fmt/format.h /^enum { SIGN_FLAG = 1, PLUS_FLAG = 2, MINUS_FLAG = 4, HASH_FLAG = 8 };$/;" e enum:__anon6
MYDEBUG src/utility/logger.h /^enum LogLevel { MYDEBUG,$/;" e enum:LogLevel
M_RAN_INVM32 src/utility/rng.h 15;" d
M_RAN_INVM52 src/utility/rng.h 16;" d
Map polar_eqTime.py /^ Map = {}$/;" v
Map polar_lam.py /^ Map = {}$/;" v
Map polar_lam_order.py /^ Map = {}$/;" v
Map tool/plt_polar_diag.py /^ Map = {}$/;" v
Map tool/plt_polar_lam.py /^ Map = {}$/;" v
Mass2 forkE.py /^ Mass2 = 0$/;" v
Mass2 src/global.h /^ double Mass2; \/\/ screening length^2$/;" m struct:parameter
MathUtils_H src/utility/utility.h 8;" d
MaxBranchNum src/diagram.h /^const size_t MaxBranchNum = 1 << (MaxOrder - 1); \/\/ 2**(MaxOrder-1)$/;" m namespace:diag
MaxDiagNum src/global.h /^const int MaxDiagNum = 1024; \/\/ Max number of Hugenholtz diagrams in one group$/;" v
MaxExtMom src/global.h /^ double MaxExtMom; \/\/ the maximum external momentum$/;" m struct:parameter
MaxGNum src/global.h /^const int MaxGNum = 2 * MaxOrder; \/\/ Max G number in one group$/;" v
MaxGPoolSize src/global.h /^const int MaxGPoolSize = 8192; \/\/ Max total indepdent G for all diagrams$/;" v
MaxGroupNum src/global.h /^const int MaxGroupNum = 32; \/\/ Max number of diagram groups$/;" v
MaxLoopNum src/global.h /^const int MaxLoopNum = MaxOrder; \/\/ Max loop number in one group$/;" v
MaxOrder src/global.h /^const int MaxOrder = 8; \/\/ Max diagram order$/;" v
MaxTauNum src/global.h /^const int MaxTauNum = 2 * MaxOrder; \/\/ Max tau number in one group$/;" v
MaxVer4Num src/global.h /^const int MaxVer4Num = MaxOrder; \/\/ Max Ver4 number in one group$/;" v
MaxVerPoolSize src/global.h /^const int MaxVerPoolSize = 4096; \/\/ Max total indepdent vertex for all diagrams$/;" v
Measure src/markov.cpp /^void markov::Measure() {$/;" f class:markov
MessageTimer src/global.h /^ int MessageTimer; \/\/ how many secondes between two checking for message$/;" m struct:parameter
MinExtMom src/global.h /^ double MinExtMom; \/\/ the minimum external momentum$/;" m struct:parameter
Mirror diagram/diagram.py /^def Mirror(Index):$/;" f
MonteCarlo src/main.cpp /^void MonteCarlo() {$/;" f
Mu src/global.h /^ Mu; \/\/ r_s, fermi energy, fermi momentum, chemical potential$/;" m struct:parameter
Mu_ideal src/vertex.h /^ double Mu_ideal;$/;" m class:diag::fermi
Mu_shift src/vertex.h /^ double Mu_shift;$/;" m class:diag::fermi
NAME src/markov.cpp 19;" d file:
NAME src/utility/fmt/format.h /^ enum Kind { NONE, INDEX, NAME };$/;" e enum:internal::arg_ref::Kind
NOMINMAX src/utility/fmt/format-inl.h 33;" d
NOMINMAX src/utility/fmt/format-inl.h 35;" d
NONE src/utility/fmt/format.h /^ enum Kind { NONE, INDEX, NAME };$/;" e enum:internal::arg_ref::Kind
NUM_ARGS src/utility/fmt/core.h /^ static const size_t NUM_ARGS = sizeof...(Args);$/;" m class:format_arg_store
NUM_ARGS src/utility/fmt/format.h /^ enum { NUM_ARGS = sizeof...(Args) };$/;" e enum:internal::format_string_checker::__anon9
Name src/diagram.h /^ std::string Name;$/;" m struct:diag::group
NewG src/weight.h /^ } NewG;$/;" m class:diag::weight typeref:struct:diag::weight::__anon16
NewVer4 src/weight.h /^ } NewVer4;$/;" m class:diag::weight typeref:struct:diag::weight::__anon17
NewWeight src/diagram.h /^ array<double, 2> NewWeight;$/;" m struct:diag::vertex4
NewWeight src/diagram.h /^ double NewWeight; \/\/ weight of each green's function$/;" m struct:diag::green
NewWeight src/diagram.h /^ double NewWeight;$/;" m struct:diag::diagram
NewWeight src/diagram.h /^ double NewWeight;$/;" m struct:diag::group
Num src/weight.h /^ int Num;$/;" m struct:diag::weight::__anon16
Num src/weight.h /^ int Num;$/;" m struct:diag::weight::__anon17
ON_SCOPE_EXIT src/utility/scopeguard.h 16;" d
OUT src/global.h /^const int OUT = 1;$/;" v
OUTL src/global.h /^const int INL = 0, OUTL = 1, INR = 2, OUTR = 3;$/;" v
OUTR src/global.h /^const int INL = 0, OUTL = 1, INR = 2, OUTR = 3;$/;" v
ObsType src/global.h /^ obstype ObsType; \/\/ 0: static polarization, 1: equal-time polarization$/;" m struct:parameter
OptimizeLoopBasis diagram/free_energy.py /^ def OptimizeLoopBasis(self):$/;" m class:free_energy
Order diagram/main.py /^ Order = 6$/;" v
Order src/diagram.h /^ int Order; \/\/ diagram order of the group$/;" m struct:diag::group
Order src/global.h /^ int Order;$/;" m struct:parameter
PAIR src/markov.cpp 26;" d file:
PI src/global.h /^const double PI = 3.1415926535897932384626433832795;$/;" v
PID src/global.h /^ int PID; \/\/ ID of the job$/;" m struct:parameter
PIDList send.py /^ PIDList=range(int(para[-2]))$/;" v
PIMC_para tool/plt_polar_lam.py /^ PIMC_para = file.readline()$/;" v
PIMCfile tool/plt_polar_lam.py /^ PIMCfile = '..\/PIMC_data\/PIMC_rs{0}_theta{1:3.1f}.txt'.format(rs,1\/beta)$/;" v
PLUS_FLAG src/utility/fmt/format.h /^enum { SIGN_FLAG = 1, PLUS_FLAG = 2, MINUS_FLAG = 4, HASH_FLAG = 8 };$/;" e enum:__anon6
POLAR src/global.h /^enum type { RG, POLAR };$/;" e enum:type
POW10_EXPONENTS src/utility/fmt/format-inl.h /^const int16_t basic_data<T>::POW10_EXPONENTS[] = {$/;" m class:internal::basic_data
POW10_SIGNIFICANDS src/utility/fmt/format-inl.h /^const uint64_t basic_data<T>::POW10_SIGNIFICANDS[] = {$/;" m class:internal::basic_data
POWERS_OF_10_32 src/utility/fmt/format-inl.h /^const uint32_t basic_data<T>::POWERS_OF_10_32[] = {$/;" m class:internal::basic_data
Para polar_eqTime.py /^ Para = param(D, Spin)$/;" v
Para polar_lam.py /^ Para = param(D, Spin)$/;" v
Para polar_lam_order.py /^ Para = param(D, Spin)$/;" v
Para reweight.py /^Para = param(D, Spin)$/;" v
Para src/main.cpp /^parameter Para; \/\/ parameters as a global variable$/;" v
Para tool/plt_lambda.py /^Para = param(D, Spin)$/;" v
Para tool/plt_polar_diag.py /^ Para = param(D, Spin)$/;" v
Para tool/plt_polar_lam.py /^ Para = param(D, Spin)$/;" v
Permutation src/diagram.h /^ array<int, MaxGNum> Permutation;$/;" m struct:diag::diagram
PhyGreen src/vertex.cpp /^double fermi::PhyGreen(double Tau, const momentum &Mom, bool IsFock) {$/;" f class:fermi
Phys polar_eqTime.py /^ Phys = Bubble[0]*len(KGrid)$/;" v
Phys polar_lam_order.py /^ Phys = Bubble[0]*len(KGrid)$/;" v
Phys tool/plt_polar_diag.py /^ Phys = Bubble[0]*len(KGrid)$/;" v
Phys tool/plt_polar_lam.py /^ Phys = Bubble[0]*len(KGrid)$/;" v
Piq4 tool/plt_polar_lam.py /^ Piq4 = {}$/;" v
Piq4_Err tool/plt_polar_lam.py /^ Piq4_Err = {}$/;" v
Piq4_all tool/plt_polar_lam.py /^Piq4_all = {}$/;" v
Piq4_lq tool/plt_polar_lam.py /^ Piq4_lq = np.concatenate((KGrid[:,np.newaxis]\/Para.kF,Piq4[Para.Order][:,np.newaxis], Piq4_Err[Para.Order][:,np.newaxis]), axis=1)$/;" v
Piq4fixq tool/plt_polar_lam.py /^Piq4fixq = {}$/;" v
Polar src/markov.h /^ unordered_map<int, polar> Polar;$/;" m class:mc::markov
Polar tool/plt_lambda.py /^Polar = np.loadtxt(fname)$/;" v
Polar0 tool/plt_lambda.py /^Polar0 = np.loadtxt(fname)$/;" v
PolarDict tool/plt_polar_diag.py /^ PolarDict = {}$/;" v
PolarStatic src/markov.h /^ unordered_map<int, double> PolarStatic;$/;" m class:mc::markov
Polar_Diag src/markov.h /^ unordered_map<string, polar> Polar_Diag;$/;" m class:mc::markov
Polar_beta tool/plt_polar_diag.py /^Polar_beta = {}$/;" v
Pool src/weight.h /^ pool Pool; \/\/ Pool to store indepdent G, Vertex, and 4-Vertex$/;" m class:diag::weight
PrintDeBugMCInfo src/markov.cpp /^void markov::PrintDeBugMCInfo() {$/;" f class:markov
PrintMCInfo src/markov.cpp /^void markov::PrintMCInfo() {$/;" f class:markov
PrinterTimer src/global.h /^ int PrinterTimer; \/\/ how many seconds between to printing to screen$/;" m struct:parameter
ProgressBar src/utility/utility.cpp /^std::string ProgressBar(double progress) {$/;" f
Proposed src/markov.h /^ double Proposed[MCUpdates][MaxGroupNum];$/;" m class:mc::markov
Quan tool/plt_polar_diag.py /^Quan = 'Polar'$/;" v
Quan tool/plt_polar_lam.py /^Quan = 'LFC'$/;" v
RANDBL_32 src/utility/rng.h 22;" d
RANDBL_32_NO_ZERO src/utility/rng.h 25;" d
RANDBL_52_NO_ZERO src/utility/rng.h 29;" d
RDONLY src/utility/fmt/posix.h /^ RDONLY = FMT_POSIX(O_RDONLY), \/\/ Open for reading only.$/;" e enum:file::__anon14
RDWR src/utility/fmt/posix.h /^ RDWR = FMT_POSIX(O_RDWR) \/\/ Open for reading and writing.$/;" e enum:file::__anon14
RESET_COLOR src/utility/fmt/format-inl.h /^template <typename T> const char basic_data<T>::RESET_COLOR[] = "\\x1b[0m";$/;" m class:internal::basic_data
RG src/global.h /^enum type { RG, POLAR };$/;" e enum:type
RIGHT src/global.h /^const int RIGHT = 1;$/;" v
RNG src/utility/rng.cpp /^RandomFactory RNG;$/;" v
Random src/main.cpp /^RandomFactory Random;$/;" v
RandomFactory src/utility/rng.cpp /^RandomFactory::RandomFactory()$/;" f class:RandomFactory
RandomFactory src/utility/rng.cpp /^RandomFactory::RandomFactory(const std::string& state)$/;" f class:RandomFactory
RandomFactory src/utility/rng.cpp /^RandomFactory::RandomFactory(int seed)$/;" f class:RandomFactory
RandomFactory src/utility/rng.h /^class RandomFactory$/;" c
ReWeight src/diagram.h /^ double ReWeight;$/;" m struct:diag::group
ReWeight src/global.h /^ std::vector<double> ReWeight; \/\/ reweight factor for each group$/;" m struct:parameter
ReWeight_ExtMom src/diagram.h /^ std::vector<double> ReWeight_ExtMom; \/\/ reweight factor with ExtMom for each group$/;" m struct:diag::group
ReadDiagrams src/weight.cpp /^void weight::ReadDiagrams() {$/;" f class:weight
ReadOneDiagram src/diagram.cpp /^diagram ReadOneDiagram(istream &DiagFile, pool &Pool, int Order, int LoopNum,$/;" f
ReadOneGroup src/diagram.cpp /^group diag::ReadOneGroup(istream &DiagFile, pool &Pool) {$/;" f class:diag
Reduce reduce.py /^def Reduce(Dict, Map):$/;" f
RejectChange src/weight.cpp /^void weight::RejectChange(group &Group) {$/;" f class:weight
RemoveOldK src/markov.cpp /^double markov::RemoveOldK(momentum &OldMom) {$/;" f class:markov
RemoveOldTau src/markov.cpp /^double markov::RemoveOldTau(double &OldTau) { return 1.0 \/ Para.Beta; }$/;" f class:markov
Reset src/utility/rng.cpp /^void RandomFactory::Reset()$/;" f class:RandomFactory
Reset src/utility/rng.cpp /^void RandomFactory::Reset(const std::string& state)$/;" f class:RandomFactory
Reset src/utility/rng.cpp /^void RandomFactory::Reset(int seed)$/;" f class:RandomFactory
Resume src/utility/abort.cpp /^void InterruptHandler::Resume()$/;" f class:InterruptHandler
ReweightTimer src/global.h /^ int ReweightTimer; \/\/ how many secondes between two reweighting$/;" m struct:parameter
Right src/utility/utility.cpp /^string Right(const string s, const int w) {$/;" f
Rs src/global.h /^ double Rs, Ef, Kf,$/;" m struct:parameter
SCOPEGUARD_LINENAME src/utility/scopeguard.h 15;" d
SCOPEGUARD_LINENAME_CAT src/utility/scopeguard.h 14;" d
SEP_SIZE src/utility/fmt/format.h /^ enum { SEP_SIZE = 1 };$/;" e enum:basic_writer::int_writer::__anon10
SIGN_FLAG src/utility/fmt/format.h /^enum { SIGN_FLAG = 1, PLUS_FLAG = 2, MINUS_FLAG = 4, HASH_FLAG = 8 };$/;" e enum:__anon6
SPIN diagram/main.py /^ SPIN = 2$/;" v
SPUT_DEFAULT_CHECK_NAME src/utility/sput.h 68;" d
SPUT_DEFAULT_SUITE_NAME src/utility/sput.h 67;" d
SPUT_INITIALIZED src/utility/sput.h 70;" d
SPUT_VERSION_MAJOR src/utility/sput.h 62;" d
SPUT_VERSION_MINOR src/utility/sput.h 63;" d
SPUT_VERSION_PATCH src/utility/sput.h 64;" d
SPUT_VERSION_STRING src/utility/sput.h 65;" d
SaveFileTimer src/global.h /^ int SaveFileTimer; \/\/ how many secondes between saving to file$/;" m struct:parameter
SaveToFile src/markov.cpp /^void markov::SaveToFile() {$/;" f class:markov
ScaleBinSize src/global.h /^const int ScaleBinSize = 32;$/;" v
ScopeGuard src/utility/scopeguard.h /^ explicit ScopeGuard(std::function<void()> onExitScope)$/;" f class:ScopeGuard
ScopeGuard src/utility/scopeguard.h /^class ScopeGuard {$/;" c
Seed src/global.h /^ int Seed; \/\/ rng seed$/;" m struct:parameter
SelfEnergyType src/global.h /^ selfenergy SelfEnergyType;$/;" m struct:parameter
ShiftExtK src/markov.cpp /^double markov::ShiftExtK(const int &OldExtMomBin, int &NewExtMomBin) {$/;" f class:markov
ShiftK src/markov.cpp /^double markov::ShiftK(const momentum &OldMom, momentum &NewMom) {$/;" f class:markov
ShiftTau src/markov.cpp /^double markov::ShiftTau(const double &OldTau, double &NewTau) {$/;" f class:markov
Sigma src/vertex.h /^ double Sigma[MAXSIGMABIN];$/;" m class:diag::fermi
Sigma tool/fock.py /^Sigma=Sigma_x(EF, k, lam)$/;" v
Sigma0T forkE.py /^def Sigma0T(k):$/;" f
Sigma0T_integrand forkE.py /^def Sigma0T_integrand(q):$/;" f
Sigma2 src/vertex.h /^ double Sigma2[MAXSIGMABIN];$/;" m class:diag::fermi
Sigma_0T forkE.py /^ Sigma_0T=[]$/;" v
Sigma_integrand forkE.py /^def Sigma_integrand(q, iter):$/;" f
Sigma_x forkE.py /^def Sigma_x(k):$/;" f
Sigma_x tool/fock.py /^def Sigma_x(EF, k, lam):$/;" f
Spin polar_eqTime.py /^Spin = 2$/;" v
Spin polar_lam.py /^Spin = 2$/;" v
Spin polar_lam_order.py /^Spin = 2$/;" v
Spin reweight.py /^Spin = 2$/;" v
Spin tool/plt_lambda.py /^Spin = 2$/;" v
Spin tool/plt_polar_diag.py /^Spin = 2$/;" v
Spin tool/plt_polar_lam.py /^Spin = 2$/;" v
SpinFactor src/diagram.h /^ array<double, MaxBranchNum> SpinFactor; \/\/ the spin factor of a diagram$/;" m struct:diag::diagram
StaticTest src/weight_test.cpp /^int weight::StaticTest() {$/;" f class:weight
Swap diagram/diagram.py /^def Swap(permutation, i, j):$/;" f
SwapTwoInteraction diagram/diagram.py /^def SwapTwoInteraction(permutation, m, n, k, l):$/;" f
SwapTwoVertex diagram/diagram.py /^def SwapTwoVertex(permutation, i, j):$/;" f
Sweep src/global.h /^ int Sweep; \/\/ how many MC steps between two measuring$/;" m struct:parameter
SymFactor src/diagram.h /^ double SymFactor; \/\/ the symmetry factor of a diagram$/;" m struct:diag::diagram
THROW src/utility/abort.h 38;" d
TM32 src/global.h /^const double TM32 = 1.0 \/ (pow(2.0, 32));$/;" v
Tau src/weight.h /^ array<double, MaxTauNum> Tau; \/\/ all tau variables$/;" m struct:diag::variable
TauBasis src/diagram.h /^ tau TauBasis; \/\/ tau basis$/;" m struct:diag::green
TauNum src/diagram.h /^ int TauNum; \/\/ dimension of tau basis$/;" m struct:diag::group
Temp_Proposed src/markov.h /^ double Temp_Proposed[MaxGroupNum]; $/;" m class:mc::markov
Test src/diagram.cpp /^void diag::Test(group &Group) {$/;" f class:diag
TestRNG src/utility/rng_test.cpp /^int TestRNG()$/;" f
TestTimer src/utility/timer_test.cpp /^int TestTimer()$/;" f
Test_RNG_Bound_And_Efficiency src/utility/rng_test.cpp /^void Test_RNG_Bound_And_Efficiency()$/;" f
Test_RNG_IO src/utility/rng_test.cpp /^void Test_RNG_IO()$/;" f
ThreePhyGreen src/vertex.cpp /^double fermi::ThreePhyGreen(double Tau, const momentum &Mom, bool IsFock) {$/;" f class:fermi
ToString diagram/polar.py /^ def ToString(self, PolarHugenList, VerOrder, SigmaOrder, QOrder, IsSelfEnergy, IsSpinPolar, IsSysPolar, SPIN):$/;" m class:polar
ToString src/diagram.cpp /^std::string ToString(const diagram &Diag) {$/;" f
ToString src/diagram.cpp /^std::string ToString(const green &G) {$/;" f
ToString src/diagram.cpp /^std::string ToString(const group &Group) {$/;" f
ToString src/utility/rng.cpp /^std::string ToString(const RandomFactory& rng)$/;" f
ToString src/utility/utility.cpp /^std::string ToString(const double x, const int width, const int decDigits) {$/;" f
ToString src/utility/utility.h /^template <typename T> std::string ToString(const T &value) {$/;" f
ToString src/utility/utility.h /^template <typename T> std::string ToString(const T *array, size_t Num) {$/;" f
ToString src/utility/vector.h /^template <typename T, int D> std::string ToString(Vec<T, D> value) {$/;" f
TotalStep src/global.h /^ int TotalStep; \/\/ total steps of the Monte Carlo$/;" m struct:parameter
TwoPhyGreen src/vertex.cpp /^double fermi::TwoPhyGreen(double Tau, const momentum &Mom, bool IsFock) {$/;" f class:fermi
Type src/diagram.h /^ array<int, 2> Type; \/\/ type of each vertex function$/;" m struct:diag::vertex4
Type src/diagram.h /^ int Type; \/\/ type of each green's function$/;" m struct:diag::green
Type src/global.h /^ type Type; \/\/ polarization, RG$/;" m struct:parameter
Type src/utility/fmt/posix.h /^ typedef locale_t Type;$/;" t class:Locale
UP src/global.h /^enum spin { DOWN, UP };$/;" e enum:spin
UVCoupling src/global.h /^ double UVCoupling; \/\/ the coupling constant at the UV scale$/;" m struct:parameter
UVScale src/global.h /^ double UVScale; \/\/ the UV bound of the energy scale$/;" m struct:parameter
UnionFind diagram/unionfind.py /^class UnionFind:$/;" c
Updates src/markov.h /^ enum Updates {$/;" g class:mc::markov
UpdatesName src/markov.h /^ std::string UpdatesName[MCUpdates];$/;" m class:mc::markov
UpperBound src/vertex.h /^ double UpperBound, LowerBound;$/;" m class:diag::fermi
UpperBound2 src/vertex.h /^ double UpperBound2, LowerBound2; \/\/ lower upbound for better sigma$/;" m class:diag::fermi
UseVer4 src/global.h /^ bool UseVer4; \/\/ use vertex4 to calculate weight or not$/;" m struct:parameter
Var src/markov.h /^ diag::variable &Var;$/;" m class:mc::markov
Var src/weight.h /^ variable Var; \/\/ The variable of the integral$/;" m class:diag::weight
Vec src/utility/vector.h /^ Vec() {}$/;" f class:Vec
Vec src/utility/vector.h /^ Vec(T *value) {$/;" f class:Vec
Vec src/utility/vector.h /^ Vec(T value) {$/;" f class:Vec
Vec src/utility/vector.h /^ Vec(std::initializer_list<T> list) {$/;" f class:Vec
Vec src/utility/vector.h /^template <typename T, int D> class Vec {$/;" c
Ver4 src/diagram.h /^ array<vertex4 *, 2 * MaxOrder> Ver4; \/\/ the index of all indepdent 4-vertex$/;" m struct:diag::diagram
Ver4AtUV src/vertex.h /^ double Ver4AtUV[InInAngBinSize][InOutAngBinSize];$/;" m class:diag::verfunc
Ver4Legs src/diagram.h /^ Ver4Legs; \/\/ the GIndex of four legs of every indepdent 4-vertex$/;" m struct:diag::vertex4
Ver4Num src/diagram.h /^ int Ver4Num; \/\/ number of 4-vertex$/;" m struct:diag::group
Ver4Pool src/diagram.h /^ Ver4Pool; \/\/ array to store indepdent vertex4$/;" m struct:diag::pool
Ver4PoolSize src/diagram.h /^ int Ver4PoolSize;$/;" m struct:diag::pool
VerFunc src/weight.h /^ verfunc VerFunc;$/;" m class:diag::weight
Version src/diagram.h /^ long long int Version; \/\/ keep track of the version$/;" m struct:diag::green
Version src/diagram.h /^ long long int Version; \/\/ keep track of the version$/;" m struct:diag::vertex4
Vertex4 src/vertex.cpp /^void verfunc::Vertex4(const momentum &InL, const momentum &InR,$/;" f class:verfunc
WARNING src/utility/logger.h /^ WARNING,$/;" e enum:LogLevel
WIN32_LEAN_AND_MEAN src/utility/fmt/format-inl.h 28;" d
WRESET_COLOR src/utility/fmt/format-inl.h /^template <typename T> const wchar_t basic_data<T>::WRESET_COLOR[] = L"\\x1b[0m";$/;" m class:internal::basic_data
WRONLY src/utility/fmt/posix.h /^ WRONLY = FMT_POSIX(O_WRONLY), \/\/ Open for writing only.$/;" e enum:file::__anon14
Weight src/diagram.h /^ array<double, 2> Weight; \/\/ direct\/exchange weight of each 4-vertex function$/;" m struct:diag::vertex4
Weight src/diagram.h /^ double Weight; \/\/ weight of each green's function$/;" m struct:diag::green
Weight src/diagram.h /^ double Weight;$/;" m struct:diag::diagram
Weight src/diagram.h /^ double Weight;$/;" m struct:diag::group
Weight src/markov.h /^ diag::weight Weight;$/;" m class:mc::markov
Weight src/weight.h /^ array<double, MaxGNum> Weight;$/;" m struct:diag::weight::__anon16
Weight src/weight.h /^ array<double, MaxVer4Num> Weight;$/;" m struct:diag::weight::__anon17
ZERO_OR_POWERS_OF_10_32 src/utility/fmt/format-inl.h /^const uint32_t basic_data<T>::ZERO_OR_POWERS_OF_10_32[] = {$/;" m class:internal::basic_data
ZERO_OR_POWERS_OF_10_64 src/utility/fmt/format-inl.h /^const uint64_t basic_data<T>::ZERO_OR_POWERS_OF_10_64[] = {$/;" m class:internal::basic_data
Zero src/utility/utility.cpp /^bool Zero(double x, double eps) { return (fabs(x) < eps); }$/;" f
_AddAllGToPool src/diagram.cpp /^vector<green *> _AddAllGToPool(pool &Pool, vector<tau> &VerBasis,$/;" f
_AddAllVer4ToPool src/diagram.cpp /^vector<vertex4 *> _AddAllVer4ToPool(pool &Pool, vector<tau> &VerBasis,$/;" f
_AddOneGToPool src/diagram.cpp /^green *_AddOneGToPool(pool &Pool, green &Green) {$/;" f
_AddOneInteractionToPool src/diagram.cpp /^vertex4 *_AddOneInteractionToPool(pool &Pool, vertex4 &Vertex4) {$/;" f
_AddOneVer4ToPool src/diagram.cpp /^vertex4 *_AddOneVer4ToPool(pool &Pool, vertex4 &Vertex4) {$/;" f
_Array src/utility/vector.h /^ T _Array[D];$/;" m class:Vec
_CheckKeyWord src/diagram.cpp /^string _CheckKeyWord(istream &file, string KeyWord) {$/;" f
_DetailBalanceStr src/markov.cpp /^std::string markov::_DetailBalanceStr(Updates op) {$/;" f class:markov
_ErrMsg src/weight_test.cpp /^string weight::_ErrMsg(string message) {$/;" f class:weight
_ExtractNumbers src/diagram.cpp /^vector<T> _ExtractNumbers(istream &file, string KeyWord = "") {$/;" f
_InL src/weight.h /^ momentum _InL;$/;" m class:diag::weight
_InR src/weight.h /^ momentum _InR;$/;" m class:diag::weight
_Mom src/weight.h /^ momentum _Mom;$/;" m class:diag::weight
_OutL src/weight.h /^ momentum _OutL;$/;" m class:diag::weight
_OutR src/weight.h /^ momentum _OutR;$/;" m class:diag::weight
_SpinCache src/weight.h /^ array<array<double, MaxBranchNum>, MaxVer4Num> _SpinCache;$/;" m class:diag::weight
_TestAngle2D src/vertex.cpp /^void verfunc::_TestAngle2D() {$/;" f class:verfunc
_TestAngleIndex src/vertex.cpp /^void verfunc::_TestAngleIndex() {$/;" f class:verfunc
_Transpose src/diagram.cpp /^vector<loop> _Transpose(vector<vector<double>> &Basis) {$/;" f
_Tree src/weight.h /^ double _Tree[MaxOrder][MaxBranchNum];$/;" m class:diag::weight
_Unchecked_type src/utility/fmt/format.h /^ typedef counting_iterator _Unchecked_type; \/\/ Mark iterator as checked.$/;" t class:internal::counting_iterator
_Unchecked_type src/utility/fmt/format.h /^ typedef truncating_iterator_base _Unchecked_type; \/\/ Mark iterator as checked.$/;" t class:internal::truncating_iterator_base
__ChainDiag diagram/free_energy.py /^ def __ChainDiag(self):$/;" m class:free_energy file:
__DelayedSignalHandler src/utility/abort.cpp /^void InterruptHandler::__DelayedSignalHandler(int signum)$/;" f class:InterruptHandler
__FeynCalc__error_handler__ src/utility/abort.h 10;" d
__FeynCalc__vector__ src/utility/vector.h 3;" d
__FindDeformation diagram/polar.py /^ def __FindDeformation(self, permutation, PermutationDict, TimeRotation):$/;" m class:polar file:
__GenerateMomentum diagram/free_energy.py /^ def __GenerateMomentum(self, permutation, OldMomentum, i, j):$/;" m class:free_energy file:
__GetEqDiags diagram/free_energy.py /^ def __GetEqDiags(self, UnlabeledDiagram):$/;" m class:free_energy file:
__GetInteractionMom diagram/polar.py /^ def __GetInteractionMom(self, Permutation, Mom):$/;" m class:polar file:
__InterCounterTerms diagram/polar.py /^ def __InterCounterTerms(self, CounterTermOrder):$/;" m class:polar file:
__IsDelaying src/utility/abort.h /^ bool __IsDelaying;$/;" m class:InterruptHandler
__IsReducibile diagram/polar.py /^ def __IsReducibile(self, Permutation, LoopBasis, vertype, gtype, IsSelfEnergy, IsSysPolar):$/;" m class:polar file:
__ReNameDiag diagram/free_energy.py /^ def __ReNameDiag(self, DiagListInput, Initial=0):$/;" m class:free_energy file:
__STRICT_ANSI__ src/utility/fmt/posix.h 13;" d
__SigmaCounterTerms diagram/polar.py /^ def __SigmaCounterTerms(self, CounterTermOrder):$/;" m class:polar file:
__Signal src/utility/abort.cpp /^int InterruptHandler::__Signal = -1;$/;" m class:InterruptHandler file:
__Signal src/utility/abort.h /^ static int __Signal;$/;" m class:InterruptHandler
__SignalHandler src/utility/abort.cpp /^void InterruptHandler::__SignalHandler(int signum)$/;" f class:InterruptHandler
__VerBasis diagram/polar.py /^ def __VerBasis(self, index):$/;" m class:polar file:
__bubble2D bubble.py /^def __bubble2D(k, q, Dim, Beta, Spin, Kf, mur):$/;" f file:
__bubble3D bubble.py /^def __bubble3D(k, q, Dim, Beta, Spin, Kf, mur):$/;" f file:
__enter__ diagram/logger.py /^ def __enter__(self):$/;" m class:DelayedInterrupt file:
__exit__ diagram/logger.py /^ def __exit__(self, type, value, traceback):$/;" m class:DelayedInterrupt file:
__init__ IO.py /^ def __init__(self, D, Spin):$/;" m class:param
__init__ diagram/diagram.py /^ def __init__(self, order):$/;" m class:diagram
__init__ diagram/free_energy.py /^ def __init__(self, Order):$/;" m class:free_energy
__init__ diagram/polar.py /^ def __init__(self, Order):$/;" m class:polar
__init__ diagram/unionfind.py /^ def __init__(self, n):$/;" m class:UnionFind
__sput src/utility/sput.h /^} __sput;$/;" v typeref:struct:sput
__timer_H_ src/utility/timer.h 7;" d
__uniformbubble bubble.py /^def __uniformbubble(e, Dim, Beta, Spin, Ef, mur):$/;" f file:
_a src/utility/fmt/format.h /^operator"" _a(const char *s, std::size_t) { return {s}; }$/;" f namespace:literals
_a src/utility/fmt/format.h /^operator"" _a(const wchar_t *s, std::size_t) { return {s}; }$/;" f namespace:literals
_eng src/utility/rng.h /^ std::mt19937 _eng;$/;" m class:RandomFactory
_findCaseInsensitive src/diagram.cpp /^size_t _findCaseInsensitive(std::string data, std::string toSearch,$/;" f
_finite src/utility/fmt/format.h /^inline dummy_int _finite(...) { return dummy_int(); }$/;" f namespace:internal
_format src/utility/fmt/format.h /^FMT_CONSTEXPR internal::udl_formatter<Char, CHARS...> operator""_format() {$/;" f namespace:literals
_isnan src/utility/fmt/format.h /^inline dummy_int _isnan(...) { return dummy_int(); }$/;" f namespace:internal
_sput_check_failed src/utility/sput.h 135;" d
_sput_check_succeeded src/utility/sput.h 143;" d
_sput_die_unless_initialized src/utility/sput.h 117;" d
_sput_die_unless_suite_set src/utility/sput.h 123;" d
_sput_die_unless_test_set src/utility/sput.h 129;" d
_u src/utility/fmt/format.h /^inline u8string_view operator"" _u(const char *s, std::size_t n) {$/;" f namespace:literals
_wrap_with color.py /^def _wrap_with(code):$/;" f
_wrap_with diagram/color.py /^def _wrap_with(code):$/;" f
abs_value src/utility/fmt/format.h /^ unsigned_type abs_value;$/;" m struct:basic_writer::int_writer::bin_writer
abs_value src/utility/fmt/format.h /^ unsigned_type abs_value;$/;" m struct:basic_writer::int_writer::dec_writer
abs_value src/utility/fmt/format.h /^ unsigned_type abs_value;$/;" m struct:basic_writer::int_writer::num_writer
abs_value src/utility/fmt/format.h /^ unsigned_type abs_value;$/;" m struct:basic_writer::int_writer
acc_time src/utility/timer.h /^ double acc_time;$/;" m class:timer
add_delimiter_spaces src/utility/fmt/ranges.h /^ static FMT_CONSTEXPR_DECL const bool add_delimiter_spaces = true;$/;" m struct:formatting_range
add_delimiter_spaces src/utility/fmt/ranges.h /^ static FMT_CONSTEXPR_DECL const bool add_delimiter_spaces = true;$/;" m struct:formatting_tuple
add_prepostfix_space src/utility/fmt/ranges.h /^ static FMT_CONSTEXPR_DECL const bool add_prepostfix_space = false;$/;" m struct:formatting_range
add_prepostfix_space src/utility/fmt/ranges.h /^ static FMT_CONSTEXPR_DECL const bool add_prepostfix_space = false;$/;" m struct:formatting_tuple
add_thousands_sep src/utility/fmt/format.h /^ explicit add_thousands_sep(basic_string_view<Char> sep)$/;" f class:internal::add_thousands_sep
add_thousands_sep src/utility/fmt/format.h /^class add_thousands_sep {$/;" c namespace:internal
advance_to src/utility/fmt/core.h /^ FMT_CONSTEXPR void advance_to(iterator it) {$/;" f class:basic_parse_context
advance_to src/utility/fmt/core.h /^ void advance_to(iterator it) { out_ = it; }$/;" f class:internal::context_base
align src/utility/fmt/format.h /^ FMT_CONSTEXPR alignment align() const { return align_; }$/;" f struct:align_spec
align_ src/utility/fmt/format.h /^ alignment align_;$/;" m struct:align_spec
align_spec src/utility/fmt/format.h /^ FMT_CONSTEXPR align_spec() : width_(0), fill_(' '), align_(ALIGN_DEFAULT) {}$/;" f struct:align_spec
align_spec src/utility/fmt/format.h /^struct align_spec {$/;" s
alignment src/utility/fmt/format.h /^enum alignment {$/;" g
allocate src/utility/fmt/format.h /^typename Allocator::value_type *allocate(Allocator& alloc, std::size_t n) {$/;" f namespace:internal
append src/utility/fmt/format-inl.h /^ void append(char c) { data[size++] = c; }$/;" f struct:internal::prettify_handler
append src/utility/fmt/format-inl.h /^ void append(char) { ++size; }$/;" f struct:internal::char_counter
append src/utility/fmt/format-inl.h /^ void append(ptrdiff_t n, char c) {$/;" f struct:internal::prettify_handler
append src/utility/fmt/format-inl.h /^ void append(ptrdiff_t n, char) { size += n; }$/;" f struct:internal::char_counter
append src/utility/fmt/format.h /^void basic_buffer<T>::append(const U *begin, const U *end) {$/;" f class:internal::basic_buffer
arg src/utility/fmt/core.h /^ basic_format_arg<Context> arg;$/;" m struct:internal::arg_map::entry
arg src/utility/fmt/core.h /^ basic_format_arg<Context> arg(unsigned id) const { return args_.get(id); }$/;" f class:internal::context_base
arg src/utility/fmt/format.h /^ basic_format_arg<Context> arg;$/;" m struct:format_handler
arg_ src/utility/fmt/printf.h /^ basic_format_arg<Context> &arg_;$/;" m class:internal::arg_converter
arg_ src/utility/fmt/printf.h /^ basic_format_arg<Context> &arg_;$/;" m class:internal::char_converter
arg_converter src/utility/fmt/printf.h /^ arg_converter(basic_format_arg<Context> &arg, Char type)$/;" f class:internal::arg_converter
arg_converter src/utility/fmt/printf.h /^class arg_converter: public function<void> {$/;" c namespace:internal
arg_formatter src/utility/fmt/format.h /^ arg_formatter(context_type &ctx, format_specs &spec)$/;" f class:arg_formatter
arg_formatter src/utility/fmt/format.h /^ explicit arg_formatter(context_type &ctx, format_specs *spec = FMT_NULL)$/;" f class:arg_formatter
arg_formatter src/utility/fmt/format.h /^class arg_formatter:$/;" c
arg_formatter_base src/utility/fmt/format.h /^ arg_formatter_base(Range r, format_specs *s, locale_ref loc)$/;" f class:internal::arg_formatter_base
arg_formatter_base src/utility/fmt/format.h /^class arg_formatter_base {$/;" c namespace:internal
arg_id_ src/utility/fmt/format.h /^ unsigned arg_id_;$/;" m class:internal::format_string_checker
arg_join src/utility/fmt/format.h /^ arg_join(It begin, It end, basic_string_view<Char> sep)$/;" f struct:arg_join
arg_join src/utility/fmt/format.h /^struct arg_join {$/;" s
arg_map src/utility/fmt/core.h /^ arg_map() : map_(FMT_NULL), size_(0) {}$/;" f class:internal::arg_map
arg_map src/utility/fmt/core.h /^class arg_map {$/;" c namespace:internal
arg_ref src/utility/fmt/format.h /^ FMT_CONSTEXPR arg_ref() : kind(NONE), index(0) {}$/;" f struct:internal::arg_ref
arg_ref src/utility/fmt/format.h /^ FMT_CONSTEXPR explicit arg_ref(unsigned index) : kind(INDEX), index(index) {}$/;" f struct:internal::arg_ref
arg_ref src/utility/fmt/format.h /^ explicit arg_ref(basic_string_view<Char> nm) : kind(NAME) {$/;" f struct:internal::arg_ref
arg_ref src/utility/fmt/format.h /^struct arg_ref {$/;" s namespace:internal
arg_ref_type src/utility/fmt/chrono.h /^ typedef internal::arg_ref<Char> arg_ref_type;$/;" t struct:formatter::spec_handler
arg_ref_type src/utility/fmt/format.h /^ typedef arg_ref<char_type> arg_ref_type;$/;" t class:internal::dynamic_specs_handler
arg_type_ src/utility/fmt/format.h /^ internal::type arg_type_;$/;" m class:internal::specs_checker
args src/utility/fmt/core.h /^ basic_format_args<Context> args() const { return args_; } \/\/ DEPRECATED!$/;" f class:internal::context_base
args_ src/utility/fmt/core.h /^ basic_format_args<Context> args_;$/;" m class:internal::context_base
as_named_arg src/utility/fmt/core.h /^ const named_arg_base<char_type> &as_named_arg() {$/;" f class:internal::value
auto_id src/utility/fmt/format.h /^struct auto_id {};$/;" s namespace:internal
ax tool/plt_lambda.py /^ax = ax.reshape(-1)$/;" v
ax1 tool/plt_lambda.py /^ ax1 = ax[index]$/;" v
back_insert_range src/utility/fmt/format.h /^ back_insert_range(Container &c): base(std::back_inserter(c)) {}$/;" f class:back_insert_range
back_insert_range src/utility/fmt/format.h /^ back_insert_range(typename base::iterator it): base(it) {}$/;" f class:back_insert_range
back_insert_range src/utility/fmt/format.h /^class back_insert_range:$/;" c
base src/utility/fmt/core.h /^ typedef internal::context_base<OutputIt, basic_format_context, Char> base;$/;" t class:basic_format_context
base src/utility/fmt/format.h /^ OutputIt base() const { return out_; }$/;" f class:internal::truncating_iterator_base
base src/utility/fmt/format.h /^ typedef internal::arg_formatter_base<Range> base;$/;" t class:arg_formatter
base src/utility/fmt/format.h /^ typedef output_range<std::back_insert_iterator<Container>> base;$/;" t class:back_insert_range
base src/utility/fmt/printf.h /^ typedef internal::arg_formatter_base<Range> base;$/;" t class:printf_arg_formatter
base src/utility/fmt/printf.h /^ typedef internal::context_base<OutputIt, basic_printf_context, Char> base;$/;" t class:basic_printf_context
basic_buffer src/utility/fmt/core.h /^class basic_buffer {$/;" c namespace:internal
basic_cstring_view src/utility/fmt/posix.h /^ basic_cstring_view(const Char *s) : data_(s) {}$/;" f class:basic_cstring_view
basic_cstring_view src/utility/fmt/posix.h /^ basic_cstring_view(const std::basic_string<Char> &s) : data_(s.c_str()) {}$/;" f class:basic_cstring_view
basic_cstring_view src/utility/fmt/posix.h /^class basic_cstring_view {$/;" c
basic_format_arg src/utility/fmt/core.h /^ FMT_CONSTEXPR basic_format_arg() : type_(internal::none_type) {}$/;" f class:basic_format_arg
basic_format_arg src/utility/fmt/core.h /^class basic_format_arg {$/;" c
basic_format_context src/utility/fmt/core.h /^ basic_format_context(OutputIt out, basic_string_view<char_type> format_str,$/;" f class:basic_format_context
basic_format_context src/utility/fmt/core.h /^class basic_format_context :$/;" c
basic_format_specs src/utility/fmt/format.h /^ FMT_CONSTEXPR basic_format_specs() {}$/;" f struct:basic_format_specs
basic_format_specs src/utility/fmt/format.h /^struct basic_format_specs : align_spec, core_format_specs {$/;" s
basic_memory_buffer src/utility/fmt/format.h /^ basic_memory_buffer(basic_memory_buffer &&other) {$/;" f class:basic_memory_buffer
basic_memory_buffer src/utility/fmt/format.h /^ explicit basic_memory_buffer(const Allocator &alloc = Allocator())$/;" f class:basic_memory_buffer
basic_memory_buffer src/utility/fmt/format.h /^class basic_memory_buffer: private Allocator, public internal::basic_buffer<T> {$/;" c
basic_parse_context src/utility/fmt/core.h /^ explicit FMT_CONSTEXPR basic_parse_context($/;" f class:basic_parse_context
basic_parse_context src/utility/fmt/core.h /^class basic_parse_context : private ErrorHandler {$/;" c
basic_printf_context src/utility/fmt/printf.h /^ basic_printf_context(OutputIt out, basic_string_view<char_type> format_str,$/;" f class:basic_printf_context
basic_printf_context src/utility/fmt/printf.h /^class basic_printf_context :$/;" c
basic_printf_context_t src/utility/fmt/printf.h /^struct basic_printf_context_t {$/;" s
basic_string_view src/utility/fmt/core.h /^ basic_string_view(const Char *s)$/;" f class:basic_string_view
basic_string_view src/utility/fmt/core.h /^class basic_string_view {$/;" c
basic_writer src/utility/fmt/format.h /^ explicit basic_writer($/;" f class:basic_writer
basic_writer src/utility/fmt/format.h /^class basic_writer {$/;" c
begin src/utility/fmt/core.h /^ FMT_CONSTEXPR iterator begin() const { return data_; }$/;" f class:basic_string_view
begin src/utility/fmt/core.h /^ iterator begin() { return out_; } \/\/ deprecated$/;" f class:internal::context_base
begin src/utility/fmt/format.h /^ It begin;$/;" m struct:arg_join
begin src/utility/fmt/format.h /^ OutputIt begin() const { return it_; }$/;" f class:output_range
begin src/utility/vector.h /^ const T *begin() const { return _Array; }$/;" f class:Vec
beta forkE.py /^ beta = beta0\/EF$/;" v
beta polar_eqTime.py /^ beta = float(para[1])$/;" v
beta polar_lam.py /^ beta = float(para[1])$/;" v
beta polar_lam_order.py /^ beta = float(para[1])$/;" v
beta send.py /^ beta = float(para[1])$/;" v
beta tool/plt_lambda.py /^ beta = float(para[1])$/;" v
beta tool/plt_polar_diag.py /^ beta = float(para[1])$/;" v
beta tool/plt_polar_lam.py /^ beta = float(para[1])$/;" v
beta0 forkE.py /^ beta0 = float(beta0)$/;" v
betas tool/plt_polar_diag.py /^betas = np.array(Polar_beta[(1,0,0,0)])[:,0]$/;" v
bin_writer src/utility/fmt/format.h /^ struct bin_writer {$/;" s struct:basic_writer::int_writer
bit_cast src/utility/fmt/format.h /^inline Dest bit_cast(const Source& source) {$/;" f namespace:internal
black src/utility/fmt/color.h /^enum color { black, red, green, yellow, blue, magenta, cyan, white };$/;" e enum:color
blackhole_ src/utility/fmt/format.h /^ mutable T blackhole_;$/;" m class:internal::counting_iterator
blackhole_ src/utility/fmt/format.h /^ mutable typename traits::value_type blackhole_;$/;" m class:internal::truncating_iterator
blue color.py /^blue = _wrap_with('34')$/;" v
blue diagram/color.py /^blue = _wrap_with('34')$/;" v
blue src/utility/fmt/color.h /^enum color { black, red, green, yellow, blue, magenta, cyan, white };$/;" e enum:color
bool_type src/utility/fmt/core.h /^ int_type, uint_type, long_long_type, ulong_long_type, bool_type, char_type,$/;" e enum:internal::type
bose src/vertex.h /^class bose {$/;" c namespace:diag
buf src/utility/fmt/format-inl.h /^ buffer &buf;$/;" m struct:internal::prettify_handler
buffer src/utility/fmt/core.h /^typedef basic_buffer<char> buffer;$/;" t namespace:internal
buffer src/utility/fmt/format.h /^ internal::buffer &buffer;$/;" m struct:basic_writer::double_writer
buffer_ src/utility/fmt/format.h /^ char *buffer_;$/;" m class:internal::decimal_formatter
buffer_ src/utility/fmt/format.h /^ memory_buffer buffer_;$/;" m class:internal::utf16_to_utf8
buffer_ src/utility/fmt/format.h /^ mutable char buffer_[BUFFER_SIZE];$/;" m class:format_int
buffer_ src/utility/fmt/format.h /^ wmemory_buffer buffer_;$/;" m class:internal::utf8_to_utf16
buffer_ src/utility/fmt/ostream.h /^ basic_buffer<Char> &buffer_;$/;" m class:internal::formatbuf
buffer_context src/utility/fmt/core.h /^struct buffer_context {$/;" s
buffered_file src/utility/fmt/posix.h /^ explicit buffered_file(FILE *f) : file_(f) {}$/;" f class:buffered_file
buffered_file src/utility/fmt/posix.h /^class buffered_file {$/;" c
c_str src/utility/fmt/format.h /^ const char *c_str() const { return &buffer_[0]; }$/;" f class:internal::utf16_to_utf8
c_str src/utility/fmt/format.h /^ const char *c_str() const {$/;" f class:format_int
c_str src/utility/fmt/format.h /^ const wchar_t *c_str() const { return &buffer_[0]; }$/;" f class:internal::utf8_to_utf16
c_str src/utility/fmt/posix.h /^ const Char *c_str() const { return data_; }$/;" f class:basic_cstring_view
capacity_ src/utility/fmt/core.h /^ FMT_NOEXCEPT: ptr_(p), size_(sz), capacity_(cap) {}$/;" f class:internal::basic_buffer
capacity_ src/utility/fmt/core.h /^ basic_buffer(std::size_t sz) FMT_NOEXCEPT: size_(sz), capacity_(sz) {}$/;" f class:internal::basic_buffer
capacity_ src/utility/fmt/core.h /^ std::size_t capacity_;$/;" m class:internal::basic_buffer
ch diagram/logger.py /^ch = logging.StreamHandler(sys.stdout)$/;" v
char_converter src/utility/fmt/printf.h /^ explicit char_converter(basic_format_arg<Context> &arg) : arg_(arg) {}$/;" f class:internal::char_converter
char_converter src/utility/fmt/printf.h /^class char_converter: public function<void> {$/;" c namespace:internal
char_counter src/utility/fmt/format-inl.h /^struct char_counter {$/;" s namespace:internal
char_size src/utility/fmt/format-inl.h /^ static FMT_CONSTEXPR_DECL const int char_size =$/;" m class:internal::fp
char_spec_handler src/utility/fmt/format.h /^ char_spec_handler(arg_formatter_base& f, char_type val)$/;" f struct:internal::arg_formatter_base::char_spec_handler
char_spec_handler src/utility/fmt/format.h /^ struct char_spec_handler : internal::error_handler {$/;" s class:internal::arg_formatter_base
char_specs_checker src/utility/fmt/format.h /^ FMT_CONSTEXPR char_specs_checker(char type, ErrorHandler eh)$/;" f class:internal::char_specs_checker
char_specs_checker src/utility/fmt/format.h /^class char_specs_checker : public ErrorHandler {$/;" c namespace:internal
char_t src/utility/fmt/core.h /^struct char_t {$/;" s namespace:internal
char_traits src/utility/fmt/format.h /^struct char_traits<char> {$/;" s namespace:internal
char_traits src/utility/fmt/format.h /^struct char_traits<wchar_t> {$/;" s namespace:internal
char_type src/utility/fmt/chrono.h /^ typedef typename FormatContext::char_type char_type;$/;" t struct:internal::chrono_formatter
char_type src/utility/fmt/core.h /^ int_type, uint_type, long_long_type, ulong_long_type, bool_type, char_type,$/;" e enum:internal::type
char_type src/utility/fmt/core.h /^ typedef Char char_type;$/;" t class:basic_format_context
char_type src/utility/fmt/core.h /^ typedef Char char_type;$/;" t class:basic_parse_context
char_type src/utility/fmt/core.h /^ typedef Char char_type;$/;" t class:basic_string_view
char_type src/utility/fmt/core.h /^ typedef Char char_type;$/;" t class:internal::context_base
char_type src/utility/fmt/core.h /^ typedef typename Context::char_type char_type;$/;" t class:basic_format_arg
char_type src/utility/fmt/core.h /^ typedef typename Context::char_type char_type;$/;" t class:internal::arg_map
char_type src/utility/fmt/core.h /^ typedef typename Context::char_type char_type;$/;" t class:internal::value
char_type src/utility/fmt/core.h /^struct dummy_string_view { typedef void char_type; };$/;" t struct:internal::dummy_string_view
char_type src/utility/fmt/format.h /^ typedef Char char_type;$/;" t class:internal::add_thousands_sep
char_type src/utility/fmt/format.h /^ typedef char char_type;$/;" t struct:internal::no_thousands_sep
char_type src/utility/fmt/format.h /^ typedef char8_t char_type;$/;" t class:u8string_view
char_type src/utility/fmt/format.h /^ typedef typename Context::char_type char_type;$/;" t class:internal::specs_handler
char_type src/utility/fmt/format.h /^ typedef typename ParseContext::char_type char_type;$/;" t class:internal::dynamic_specs_handler
char_type src/utility/fmt/format.h /^ typedef typename Range::value_type char_type;$/;" t class:arg_formatter
char_type src/utility/fmt/format.h /^ typedef typename Range::value_type char_type;$/;" t class:basic_writer
char_type src/utility/fmt/format.h /^ typedef typename Range::value_type char_type;$/;" t class:internal::arg_formatter_base
char_type src/utility/fmt/printf.h /^ typedef Char char_type;$/;" t class:basic_printf_context
char_type src/utility/fmt/printf.h /^ typedef typename Range::value_type char_type;$/;" t class:printf_arg_formatter
char_writer src/utility/fmt/format.h /^ struct char_writer {$/;" s class:internal::arg_formatter_base
check src/utility/sput.h /^ } check;$/;" m struct:sput typeref:struct:sput::sput_check
check src/utility/timer.cpp /^bool timer::check(time_t Interval)$/;" f class:timer
check src/utility/timer.cpp /^void timer::check(const char* msg)$/;" f class:timer
check_arg_id src/utility/fmt/core.h /^ FMT_CONSTEXPR bool check_arg_id(unsigned) {$/;" f class:basic_parse_context
check_arg_id src/utility/fmt/core.h /^ void check_arg_id(basic_string_view<Char>) {}$/;" f class:basic_parse_context
check_arg_id src/utility/fmt/format.h /^ FMT_CONSTEXPR void check_arg_id() {$/;" f class:internal::format_string_checker
check_format_string src/utility/fmt/format.h /^ check_format_string(S format_str) {$/;" f namespace:internal
check_pointer_type_spec src/utility/fmt/format.h /^FMT_CONSTEXPR void check_pointer_type_spec(Char spec, ErrorHandler &&eh) {$/;" f namespace:internal
check_sign src/utility/fmt/format.h /^ FMT_CONSTEXPR void check_sign() {$/;" f class:internal::specs_checker
check_string_type_spec src/utility/fmt/format.h /^FMT_CONSTEXPR void check_string_type_spec(Char spec, ErrorHandler &&eh) {$/;" f namespace:internal
checked src/utility/fmt/format.h /^struct checked { typedef stdext::checked_array_iterator<T*> type; };$/;" s namespace:internal
checks src/utility/sput.h /^ unsigned long checks;$/;" m struct:sput::sput_overall
checks src/utility/sput.h /^ unsigned long checks;$/;" m struct:sput::sput_suite
chrono_format_checker src/utility/fmt/chrono.h /^struct chrono_format_checker {$/;" s namespace:internal
chrono_formatter src/utility/fmt/chrono.h /^ explicit chrono_formatter(FormatContext &ctx, OutputIt o)$/;" f struct:internal::chrono_formatter
chrono_formatter src/utility/fmt/chrono.h /^struct chrono_formatter {$/;" s namespace:internal
clear src/utility/fmt/core.h /^ void clear() { size_ = 0; }$/;" f class:internal::basic_buffer
clz src/utility/fmt/format.h /^inline uint32_t clz(uint32_t x) {$/;" f namespace:internal
clzll src/utility/fmt/format.h /^inline uint32_t clzll(uint64_t x) {$/;" f namespace:internal
color src/utility/fmt/color.h /^enum color { black, red, green, yellow, blue, magenta, cyan, white };$/;" g
compare src/utility/fmt/core.h /^ int compare(basic_string_view other) const {$/;" f class:basic_string_view
compile_string src/utility/fmt/core.h /^struct compile_string {};$/;" s
compute_boundaries src/utility/fmt/format-inl.h /^ void compute_boundaries(fp &lower, fp &upper) const {$/;" f class:internal::fp
cond src/utility/sput.h /^ const char *cond;$/;" m struct:sput::sput_check
conditional src/utility/fmt/format.h /^ typedef typename std::conditional<$/;" t class:internal::int_traits::std
conditional_helper src/utility/fmt/ranges.h /^struct conditional_helper {};$/;" s namespace:internal
configuration_ src/utility/logger.h /^ loggerConf_ configuration_;$/;" m class:Logger
configure src/utility/logger.cpp /^void Logger::configure(const std::string& outputFile,$/;" f class:Logger
configured_ src/utility/logger.h /^ bool configured_;$/;" m class:Logger
const_check src/utility/fmt/format.h /^inline T const_check(T value) { return value; }$/;" f namespace:internal
const_reference src/utility/fmt/core.h /^ typedef const T &const_reference;$/;" t class:internal::basic_buffer
const_reference src/utility/fmt/format.h /^ typedef const T &const_reference;$/;" t class:basic_memory_buffer
container_ src/utility/fmt/core.h /^ Container &container_;$/;" m class:internal::container_buffer
container_buffer src/utility/fmt/core.h /^ explicit container_buffer(Container &c)$/;" f class:internal::container_buffer
container_buffer src/utility/fmt/core.h /^class container_buffer : public basic_buffer<typename Container::value_type> {$/;" c namespace:internal
context src/utility/fmt/chrono.h /^ basic_parse_context<Char> &context;$/;" m struct:formatter::spec_handler
context src/utility/fmt/chrono.h /^ FormatContext &context;$/;" m struct:internal::chrono_formatter
context src/utility/fmt/format.h /^ Context context;$/;" m struct:format_handler
context_ src/utility/fmt/format.h /^ Context &context_;$/;" m class:internal::specs_handler
context_ src/utility/fmt/format.h /^ ParseContext &context_;$/;" m class:internal::dynamic_specs_handler
context_ src/utility/fmt/format.h /^ parse_context_type context_;$/;" m class:internal::format_string_checker
context_ src/utility/fmt/printf.h /^ context_type &context_;$/;" m class:printf_arg_formatter
context_base src/utility/fmt/core.h /^ context_base(OutputIt out, basic_string_view<char_type> format_str,$/;" f class:internal::context_base
context_base src/utility/fmt/core.h /^class context_base {$/;" c namespace:internal
context_type src/utility/fmt/format.h /^ typedef basic_format_context<typename base::iterator, char_type> context_type;$/;" t class:arg_formatter
context_type src/utility/fmt/printf.h /^ typedef basic_printf_context<iterator, char_type> context_type;$/;" t class:printf_arg_formatter
convert src/utility/fmt/format-inl.h /^FMT_FUNC int internal::utf16_to_utf8::convert(wstring_view s) {$/;" f class:internal::utf16_to_utf8
convert_arg src/utility/fmt/printf.h /^void convert_arg(basic_format_arg<Context> &arg, Char type) {$/;" f namespace:internal
convert_to_int src/utility/fmt/core.h /^struct convert_to_int: std::integral_constant<$/;" s
convert_to_int src/utility/fmt/ostream.h /^struct convert_to_int<T, Char, void> {$/;" s
copy src/utility/fmt/ranges.h /^void copy(char ch, OutputIterator out) {$/;" f namespace:internal
copy src/utility/fmt/ranges.h /^void copy(const RangeT &range, OutputIterator out) {$/;" f namespace:internal
copy src/utility/fmt/ranges.h /^void copy(const char *str, OutputIterator out) {$/;" f namespace:internal
copy_str src/utility/fmt/format.h /^ copy_str(InputIt begin, InputIt end, OutputIt it) {$/;" f namespace:internal
core_format_specs src/utility/fmt/format.h /^ FMT_CONSTEXPR core_format_specs() : precision(-1), flags(0), type(0) {}$/;" f struct:core_format_specs
core_format_specs src/utility/fmt/format.h /^struct core_format_specs {$/;" s
count src/utility/fmt/format.h /^ std::size_t count() const { return count_; }$/;" f class:internal::counting_iterator
count src/utility/fmt/format.h /^ std::size_t count() const { return count_; }$/;" f class:internal::truncating_iterator_base
count_ src/utility/fmt/format.h /^ std::size_t count_;$/;" m class:internal::counting_iterator
count_ src/utility/fmt/format.h /^ std::size_t count_;$/;" m class:internal::truncating_iterator_base
count_code_points src/utility/fmt/format-inl.h /^FMT_FUNC size_t internal::count_code_points(basic_string_view<char8_t> s) {$/;" f class:internal
count_code_points src/utility/fmt/format.h /^inline size_t count_code_points(basic_string_view<Char> s) { return s.size(); }$/;" f namespace:internal
count_digits src/utility/fmt/format.h /^ int count_digits() const {$/;" f struct:basic_writer::int_writer
count_digits src/utility/fmt/format.h /^inline int count_digits(uint32_t n) {$/;" f namespace:internal
counting_iterator src/utility/fmt/format.h /^ counting_iterator(): count_(0) {}$/;" f class:internal::counting_iterator
counting_iterator src/utility/fmt/format.h /^class counting_iterator {$/;" c namespace:internal
cstring_spec_handler src/utility/fmt/format.h /^ cstring_spec_handler(arg_formatter_base &f, const char_type *val)$/;" f struct:internal::arg_formatter_base::cstring_spec_handler
cstring_spec_handler src/utility/fmt/format.h /^ struct cstring_spec_handler : internal::error_handler {$/;" s class:internal::arg_formatter_base
cstring_type src/utility/fmt/core.h /^ cstring_type, string_type, pointer_type, custom_type$/;" e enum:internal::type
cstring_type_checker src/utility/fmt/format.h /^ FMT_CONSTEXPR explicit cstring_type_checker(ErrorHandler eh)$/;" f class:internal::cstring_type_checker
cstring_type_checker src/utility/fmt/format.h /^class cstring_type_checker : public ErrorHandler {$/;" c namespace:internal
cstring_view src/utility/fmt/posix.h /^typedef basic_cstring_view<char> cstring_view;$/;" t
ctx_ src/utility/fmt/format.h /^ Context &ctx_;$/;" m class:internal::custom_formatter
ctx_ src/utility/fmt/format.h /^ context_type &ctx_;$/;" m class:arg_formatter
currentdir diagram/logger.py /^currentdir = os.path.dirname(os.path.abspath($/;" v
custom src/utility/fmt/core.h /^ custom_value<Context> custom;$/;" m union:internal::value::__anon1
custom_ src/utility/fmt/core.h /^ internal::custom_value<Context> custom_;$/;" m class:basic_format_arg::handle
custom_formatter src/utility/fmt/format.h /^ explicit custom_formatter(Context &ctx): ctx_(ctx) {}$/;" f class:internal::custom_formatter
custom_formatter src/utility/fmt/format.h /^class custom_formatter: public function<bool> {$/;" c namespace:internal
custom_type src/utility/fmt/core.h /^ cstring_type, string_type, pointer_type, custom_type$/;" e enum:internal::type
custom_value src/utility/fmt/core.h /^struct custom_value {$/;" s namespace:internal
cyan color.py /^cyan = _wrap_with('36')$/;" v
cyan diagram/color.py /^cyan = _wrap_with('36')$/;" v
cyan src/utility/fmt/color.h /^enum color { black, red, green, yellow, blue, magenta, cyan, white };$/;" e enum:color
dMu3 polar_eqTime.py /^ dMu3 = -(s40+s21*dMu2)\/s11$/;" v
dMu3Err polar_eqTime.py /^ dMu3Err = (abs((e40+e21*dMu2)\/(s40+s21*dMu2))+abs(e11\/s11))*abs(dMu3)*2.0$/;" v
dMu4 polar_eqTime.py /^ dMu4 = -(s50+s12*dMu2**2+s21*dMu3+s31*dMu2)\/s11$/;" v
dMu4Err polar_eqTime.py /^ dMu4Err = (abs((e50+e12*dMu2**2+e21*dMu3+e31*dMu2) \/$/;" v
dat polar_lam.py /^ dat = np.array([q, Accu[o][0, qi], Accu[o][1, qi], o, lam, beta, rs])$/;" v
dat polar_lam_order.py /^ dat = np.array([q, Each[o][0, qi], Each[o][1, qi], o, lam, beta, rs])$/;" v
dat polar_lam_order.py /^ dat = np.array([q, y[0][qi], y[1][qi], int(key[0]*100+key[1]*10+key[2])])$/;" v
dat polar_lam_order.py /^ dat = np.array([q, BubbleQ[qi,0], BubbleQ[qi,1]])$/;" v
data src/utility/fmt/core.h /^ FMT_CONSTEXPR const Char *data() const { return data_; }$/;" f class:basic_string_view
data src/utility/fmt/format-inl.h /^ char *data;$/;" m struct:internal::prettify_handler
data src/utility/fmt/format.h /^ const char *data() const { return str_; }$/;" f class:format_int
data src/utility/fmt/format.h /^ int data[2];$/;" m struct:internal::dummy_int
data src/utility/vector.h /^ T *data() { return _Array; }$/;" f class:Vec
data_ src/utility/fmt/core.h /^ const Char *data_;$/;" m class:basic_string_view
data_ src/utility/fmt/posix.h /^ const Char *data_;$/;" m class:basic_cstring_view
datefmt diagram/logger.py /^ datefmt='%y\/%m\/%d %H:%M:%S')$/;" v
deallocate src/utility/fmt/format.h /^ void deallocate() {$/;" f class:basic_memory_buffer
dec_writer src/utility/fmt/format.h /^ struct dec_writer {$/;" s struct:basic_writer::int_writer
decimal_formatter src/utility/fmt/format.h /^ explicit decimal_formatter(char *buf) : buffer_(buf) {}$/;" f class:internal::decimal_formatter
decimal_formatter src/utility/fmt/format.h /^class decimal_formatter {$/;" c namespace:internal
decimal_formatter_null src/utility/fmt/format.h /^ explicit decimal_formatter_null(char *buf) : decimal_formatter(buf) {}$/;" f class:internal::decimal_formatter_null
decimal_formatter_null src/utility/fmt/format.h /^class decimal_formatter_null : public decimal_formatter {$/;" c namespace:internal
decltype src/utility/fmt/chrono.h /^ -> decltype(ctx.begin()) {$/;" f struct:formatter
decltype src/utility/fmt/chrono.h /^ -> decltype(ctx.out()) {$/;" f struct:formatter
decltype src/utility/fmt/format.h /^ -> decltype(ctx.out()) {$/;" f struct:formatter
decltype src/utility/fmt/format.h /^ auto format(const T &val, FormatContext &ctx) -> decltype(ctx.out()) {$/;" f class:dynamic_formatter
decltype src/utility/fmt/format.h /^ auto format(const T &val, FormatContext &ctx) -> decltype(ctx.out()) {$/;" f struct:formatter
decltype src/utility/fmt/format.h /^ auto parse(ParseContext &ctx) -> decltype(ctx.begin()) {$/;" f class:dynamic_formatter
decltype src/utility/fmt/format.h /^FMT_CONSTEXPR auto begin(const C &c) -> decltype(c.begin()) {$/;" f namespace:internal
decltype src/utility/fmt/format.h /^FMT_CONSTEXPR auto end(const C &c) -> decltype(c.end()) { return c.end(); }$/;" f namespace:internal
decltype src/utility/fmt/ostream.h /^ auto format(const T &value, Context &ctx) -> decltype(ctx.out()) {$/;" f struct:formatter
decltype src/utility/fmt/printf.h /^ auto format(const T &value, FormatContext &ctx) -> decltype(ctx.out()) {$/;" f struct:printf_formatter
decltype src/utility/fmt/printf.h /^ auto parse(ParseContext &ctx) -> decltype(ctx.begin()) { return ctx.begin(); }$/;" f struct:printf_formatter
decltype src/utility/fmt/ranges.h /^ FMT_CONSTEXPR auto parse(ParseContext &ctx) -> decltype(ctx.begin()) {$/;" f struct:formatter
decltype src/utility/fmt/ranges.h /^ FMT_CONSTEXPR auto parse(ParseContext &ctx) -> decltype(ctx.begin()) {$/;" f struct:formatting_base
decltype src/utility/fmt/ranges.h /^ auto format(const TupleT &values, FormatContext &ctx) -> decltype(ctx.out()) {$/;" f struct:formatter
decltype src/utility/fmt/time.h /^ auto format(const std::tm &tm, FormatContext &ctx) -> decltype(ctx.out()) {$/;" f struct:formatter
decltype src/utility/fmt/time.h /^ auto parse(ParseContext &ctx) -> decltype(ctx.begin()) {$/;" f struct:formatter
delimiter src/utility/fmt/ranges.h /^ Char delimiter;$/;" m struct:formatting_range
delimiter src/utility/fmt/ranges.h /^ Char delimiter;$/;" m struct:formatting_tuple
density tool/plt_polar_lam.py /^ density = 3.0\/2\/np.pi\/Para.Rs**3.0$/;" v
diag src/diagram.h /^namespace diag {$/;" n
diag src/vertex.h /^namespace diag {$/;" n
diag src/weight.h /^namespace diag {$/;" n
diagram diagram/diagram.py /^class diagram:$/;" c
diagram src/diagram.h /^struct diagram {$/;" s namespace:diag
diagram_H src/diagram.h 2;" d
difference_type src/utility/fmt/format.h /^ typedef std::ptrdiff_t difference_type;$/;" t class:internal::counting_iterator
difference_type src/utility/fmt/format.h /^ typedef void difference_type;$/;" t class:internal::truncating_iterator_base
difference_type src/utility/fmt/printf.h /^ typedef std::ptrdiff_t difference_type;$/;" t class:internal::null_terminating_iterator
digit_index_ src/utility/fmt/format.h /^ unsigned digit_index_;$/;" m class:internal::add_thousands_sep
dismissed_ src/utility/scopeguard.h /^ bool dismissed_;$/;" m class:ScopeGuard