-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcompile_commands.json
972 lines (972 loc) · 137 KB
/
compile_commands.json
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
[
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/concurrency/threadpool.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/concurrency/threadpool.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/concurrency/threadpool.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/currency/currency.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/currency/currency.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/currency/currency.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/currency/currencydata.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/currency/currencydata.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/currency/currencydata.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/currency/init.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/currency/init.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/currency/init.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/curve/discount.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/curve/discount.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/curve/discount.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/curve/piecewiseconstant.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/curve/piecewiseconstant.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/curve/piecewiseconstant.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/curve/piecewiselinear.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/curve/piecewiselinear.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/curve/piecewiselinear.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/curve/yc.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/curve/yc.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/curve/yc.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/curve/yccomponent.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/curve/yccomponent.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/curve/yccomponent.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/curve/ycimp.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/curve/ycimp.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/curve/ycimp.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/indice/fixings.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/fixings.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/fixings.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/indice/index.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/index.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/index.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/indice/index/equity.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/index/equity.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/index/equity.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/indice/index/fx.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/index/fx.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/index/fx.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/indice/index/ir.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/index/ir.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/index/ir.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/indice/indexcomposite.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/indexcomposite.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/indexcomposite.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/indice/indexparse.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/indexparse.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/indexparse.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/indice/indexpath.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/indexpath.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/indexpath.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/indice/parser/equity.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/parser/equity.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/parser/equity.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/indice/parser/fx.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/parser/fx.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/parser/fx.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/indice/parser/init.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/parser/init.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/indice/parser/init.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/aad/aad.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/aad/aad.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/aad/aad.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/aad/models/blackscholes.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/aad/models/blackscholes.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/aad/models/blackscholes.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/aad/models/dupire.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/aad/models/dupire.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/aad/models/dupire.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/aad/models/ivs.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/aad/models/ivs.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/aad/models/ivs.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/aad/simulation.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/aad/simulation.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/aad/simulation.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/aad/tape.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/aad/tape.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/aad/tape.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/analytics/vanilla.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/analytics/vanilla.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/analytics/vanilla.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/cell.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/cell.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/cell.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/cellutils.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/cellutils.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/cellutils.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/distribution/black.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/distribution/black.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/distribution/black.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/distribution/utils.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/distribution/utils.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/distribution/utils.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/interp/interp.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/interp/interp.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/interp/interp.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/interp/interp2d.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/interp/interp2d.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/interp/interp2d.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/interp/interpcubic.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/interp/interpcubic.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/interp/interpcubic.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/matrix/banded.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/matrix/banded.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/matrix/banded.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/matrix/bcg.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/matrix/bcg.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/matrix/bcg.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/matrix/cholesky.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/matrix/cholesky.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/matrix/cholesky.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/matrix/decompositions.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/matrix/decompositions.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/matrix/decompositions.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/matrix/decompositionsmisc.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/matrix/decompositionsmisc.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/matrix/decompositionsmisc.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/matrix/matrixarithmetic.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/matrix/matrixarithmetic.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/matrix/matrixarithmetic.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/matrix/matrixutils.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/matrix/matrixutils.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/matrix/matrixutils.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/matrix/sparse.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/matrix/sparse.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/matrix/sparse.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/ndarray.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/ndarray.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/ndarray.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/optimization/underdetermined.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/optimization/underdetermined.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/optimization/underdetermined.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/pde/fd1d.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/pde/fd1d.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/pde/fd1d.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/pde/finitedifference.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/pde/finitedifference.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/pde/finitedifference.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/pde/meshers/concentrating1dmesher.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/pde/meshers/concentrating1dmesher.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/pde/meshers/concentrating1dmesher.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/pde/pde.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/pde/pde.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/pde/pde.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/random/brownianbridge.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/random/brownianbridge.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/random/brownianbridge.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/random/pseudorandom.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/random/pseudorandom.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/random/pseudorandom.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/random/sobol.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/random/sobol.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/random/sobol.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/rootfind.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/rootfind.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/rootfind.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/smooth.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/smooth.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/smooth.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/specialfunctions.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/specialfunctions.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/specialfunctions.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/math/vectors.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/vectors.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/math/vectors.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/platform/host.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/platform/host.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/platform/host.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/protocol/accrualperiod.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/protocol/accrualperiod.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/protocol/accrualperiod.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/protocol/clearer.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/protocol/clearer.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/protocol/clearer.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/protocol/collateraltype.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/protocol/collateraltype.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/protocol/collateraltype.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/protocol/conventions.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/protocol/conventions.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/protocol/conventions.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/protocol/couponrate.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/protocol/couponrate.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/protocol/couponrate.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/protocol/optiontype.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/protocol/optiontype.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/protocol/optiontype.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/protocol/payment.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/protocol/payment.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/protocol/payment.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/protocol/underlying.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/protocol/underlying.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/protocol/underlying.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/report/exceldriverlite.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/report/exceldriverlite.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/report/exceldriverlite.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/script/event.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/script/event.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/script/event.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/script/parser.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/script/parser.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/script/parser.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/script/simulation.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/script/simulation.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/script/simulation.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/script/visitor/domain.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/script/visitor/domain.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/script/visitor/domain.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/storage/archive.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/storage/archive.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/storage/archive.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/storage/audit.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/storage/audit.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/storage/audit.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/storage/bag.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/storage/bag.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/storage/bag.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/storage/box.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/storage/box.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/storage/box.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/storage/globals.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/storage/globals.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/storage/globals.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/storage/json.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/storage/json.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/storage/json.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/storage/splat.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/storage/splat.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/storage/splat.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/string/strings.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/string/strings.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/string/strings.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/string/stringutils.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/string/stringutils.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/string/stringutils.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/time/calendars/init.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/calendars/init.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/calendars/init.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/time/date.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/date.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/date.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/time/dateincrement.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/dateincrement.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/dateincrement.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/time/datetime.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/datetime.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/datetime.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/time/datetimeutils.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/datetimeutils.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/datetimeutils.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/time/dateutils.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/dateutils.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/dateutils.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/time/daybasis.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/daybasis.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/daybasis.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/time/holidaydata.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/holidaydata.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/holidaydata.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/time/holidays.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/holidays.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/holidays.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/time/periodlength.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/periodlength.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/periodlength.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/time/schedules.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/schedules.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/time/schedules.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/utilities/dictionary.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/utilities/dictionary.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/utilities/dictionary.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/utilities/environment.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/utilities/environment.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/utilities/environment.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/utilities/exceptions.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/utilities/exceptions.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/utilities/exceptions.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/utilities/file.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/utilities/file.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/utilities/file.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/dal",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -Ddal_library_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_library.dir/utilities/numerics.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/utilities/numerics.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/dal/utilities/numerics.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/public/src",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -DIS_BASE -Ddal_public_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_public.dir/globals.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/public/src/globals.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/public/src/globals.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/public/src",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -DIS_BASE -Ddal_public_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_public.dir/interp.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/public/src/interp.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/public/src/interp.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/public/src",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -DIS_BASE -Ddal_public_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_public.dir/models.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/public/src/models.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/public/src/models.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/public/src",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -DIS_BASE -Ddal_public_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_public.dir/random.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/public/src/random.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/public/src/random.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/public/src",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -DIS_BASE -Ddal_public_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_public.dir/repository.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/public/src/repository.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/public/src/repository.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/public/src",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -DIS_BASE -Ddal_public_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_public.dir/script.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/public/src/script.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/public/src/script.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/public/src",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -DIS_BASE -Ddal_public_EXPORTS -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIC -std=c++17 -o CMakeFiles/dal_public.dir/value.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/public/src/value.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/public/src/value.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/examples/aad",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/aad.dir/aad.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/aad/aad.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/aad/aad.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/examples/concurrency",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/concurrency.dir/concurrency.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/concurrency/concurrency.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/concurrency/concurrency.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/examples/date_utilities",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/date_utilities.dir/date_utilities.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/date_utilities/date_utilities.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/date_utilities/date_utilities.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/examples/european_mc",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/european_mc.dir/euorpean_mc.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/european_mc/euorpean_mc.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/european_mc/euorpean_mc.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/examples/european_fd",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/european_fd.dir/european_fd.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/european_fd/european_fd.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/european_fd/european_fd.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/examples/monte_carlo",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/monte_carlo.dir/monte_carlo.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/monte_carlo/monte_carlo.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/monte_carlo/monte_carlo.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/examples/snowball",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/snowball.dir/snowball.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/snowball/snowball.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/snowball/snowball.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/examples/sobol",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/sobol.dir/sobol.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/sobol/sobol.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/sobol/sobol.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/examples/script",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/script.dir/script.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/script/script.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/script/script.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/examples/underdetermined",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/underdetermined.dir/underdetermined.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/underdetermined/underdetermined.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/underdetermined/underdetermined.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/examples/uoc",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/uoc.dir/uoc.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/uoc/uoc.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/uoc/uoc.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/examples/uoc_compiled",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/uoc_compiled.dir/uoc_compiled.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/uoc_compiled/uoc_compiled.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/examples/uoc_compiled/uoc_compiled.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/concurrency/test_concurrentqueue.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/concurrency/test_concurrentqueue.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/concurrency/test_concurrentqueue.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/concurrency/test_threadpool.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/concurrency/test_threadpool.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/concurrency/test_threadpool.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/currency/test_currencydata.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/currency/test_currencydata.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/currency/test_currencydata.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/curve/test_piecewiseconstant.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/curve/test_piecewiseconstant.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/curve/test_piecewiseconstant.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/indice/index/test_fx.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/indice/index/test_fx.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/indice/index/test_fx.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/indice/index/test_ir.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/indice/index/test_ir.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/indice/index/test_ir.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/indice/index/test_quity.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/indice/index/test_quity.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/indice/index/test_quity.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/indice/parser/test_equity.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/indice/parser/test_equity.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/indice/parser/test_equity.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/indice/parser/test_fx.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/indice/parser/test_fx.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/indice/parser/test_fx.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/aad/models/test_blackscholes.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/aad/models/test_blackscholes.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/aad/models/test_blackscholes.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/aad/models/test_dupire.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/aad/models/test_dupire.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/aad/models/test_dupire.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/aad/models/test_ivs.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/aad/models/test_ivs.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/aad/models/test_ivs.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/aad/products/test_european.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/aad/products/test_european.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/aad/products/test_european.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/aad/test_blocklist.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/aad/test_blocklist.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/aad/test_blocklist.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/aad/test_checkpoint.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/aad/test_checkpoint.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/aad/test_checkpoint.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/aad/test_number.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/aad/test_number.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/aad/test_number.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/analytics/test_vanilla.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/analytics/test_vanilla.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/analytics/test_vanilla.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/distribution/test_black.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/distribution/test_black.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/distribution/test_black.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/interp/test_interp.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/interp/test_interp.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/interp/test_interp.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/interp/test_interp2d.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/interp/test_interp2d.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/interp/test_interp2d.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/interp/test_interpcubic.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/interp/test_interpcubic.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/interp/test_interpcubic.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/matrix/test_banded.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/matrix/test_banded.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/matrix/test_banded.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/matrix/test_bcg.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/matrix/test_bcg.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/matrix/test_bcg.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/matrix/test_cholesky.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/matrix/test_cholesky.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/matrix/test_cholesky.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/matrix/test_matrixarithmetic.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/matrix/test_matrixarithmetic.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/matrix/test_matrixarithmetic.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/matrix/test_matrixs.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/matrix/test_matrixs.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/matrix/test_matrixs.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/matrix/test_matrixutils.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/matrix/test_matrixutils.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/matrix/test_matrixutils.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/matrix/test_sparse.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/matrix/test_sparse.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/matrix/test_sparse.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/matrix/test_sparseutils.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/matrix/test_sparseutils.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/matrix/test_sparseutils.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/optimization/test_underdetermined.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/optimization/test_underdetermined.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/optimization/test_underdetermined.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/pde/meshers/test_concentrating1dmesher.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/pde/meshers/test_concentrating1dmesher.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/pde/meshers/test_concentrating1dmesher.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/pde/meshers/test_uniform1dmesher.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/pde/meshers/test_uniform1dmesher.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/pde/meshers/test_uniform1dmesher.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/random/test_brownianbridge.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/random/test_brownianbridge.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/random/test_brownianbridge.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/random/test_pseudorandom.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/random/test_pseudorandom.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/random/test_pseudorandom.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/random/test_sobol.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/random/test_sobol.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/random/test_sobol.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/test_cell.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/test_cell.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/test_cell.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/test_cellutils.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/test_cellutils.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/test_cellutils.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/test_ndarray.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/test_ndarray.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/test_ndarray.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/test_rootfind.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/test_rootfind.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/test_rootfind.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/test_specialfunctions.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/test_specialfunctions.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/test_specialfunctions.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/math/test_vectors.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/test_vectors.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/math/test_vectors.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/platform/test_host.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/platform/test_host.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/platform/test_host.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/platform/test_platform.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/platform/test_platform.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/platform/test_platform.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/platform/test_strict.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/platform/test_strict.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/platform/test_strict.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/protocol/test_accrualperiod.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/protocol/test_accrualperiod.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/protocol/test_accrualperiod.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/protocol/test_couponrate.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/protocol/test_couponrate.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/protocol/test_couponrate.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/protocol/test_underlying.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/protocol/test_underlying.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/protocol/test_underlying.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/script/test_event.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/test_event.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/test_event.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/script/test_parser.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/test_parser.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/test_parser.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/script/visitor/test_compiler.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/visitor/test_compiler.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/visitor/test_compiler.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/script/visitor/test_debugger.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/visitor/test_debugger.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/visitor/test_debugger.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/script/visitor/test_domainproc.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/visitor/test_domainproc.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/visitor/test_domainproc.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/script/visitor/test_evaluator.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/visitor/test_evaluator.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/visitor/test_evaluator.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/script/visitor/test_fuzzy.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/visitor/test_fuzzy.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/visitor/test_fuzzy.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/script/visitor/test_ifprocessor.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/visitor/test_ifprocessor.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/visitor/test_ifprocessor.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/script/visitor/test_varindexer.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/visitor/test_varindexer.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/script/visitor/test_varindexer.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/storage/test_audit.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/storage/test_audit.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/storage/test_audit.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/storage/test_bag.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/storage/test_bag.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/storage/test_bag.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/storage/test_box.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/storage/test_box.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/storage/test_box.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/storage/test_globals.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/storage/test_globals.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/storage/test_globals.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/storage/test_json.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/storage/test_json.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/storage/test_json.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/storage/test_splat.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/storage/test_splat.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/storage/test_splat.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/string/test_strings.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/string/test_strings.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/string/test_strings.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/string/test_stringutils.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/string/test_stringutils.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/string/test_stringutils.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/test_main.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/test_main.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/test_main.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/time/calendars/test_china.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/time/calendars/test_china.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/time/calendars/test_china.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/time/test_date.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/time/test_date.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/time/test_date.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/time/test_dateincrement.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/time/test_dateincrement.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/time/test_dateincrement.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/time/test_datetime.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/time/test_datetime.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/time/test_datetime.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/time/test_datetimeutils.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/time/test_datetimeutils.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/time/test_datetimeutils.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/time/test_daybasis.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/time/test_daybasis.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/time/test_daybasis.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/time/test_schedules.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/time/test_schedules.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/time/test_schedules.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/utilities/test_algorithms.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/utilities/test_algorithms.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/utilities/test_algorithms.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/utilities/test_dictionary.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/utilities/test_dictionary.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/utilities/test_dictionary.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/utilities/test_environment.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/utilities/test_environment.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/utilities/test_environment.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/utilities/test_exceptions.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/utilities/test_exceptions.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/utilities/test_exceptions.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/utilities/test_file.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/utilities/test_file.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/utilities/test_file.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/utilities/test_functionals.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/utilities/test_functionals.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/utilities/test_functionals.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/utilities/test_maps.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/utilities/test_maps.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/utilities/test_maps.cpp"
},
{
"directory": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/build/tests",
"command": "/home/wegamekinglc/anaconda3/bin/x86_64-conda-linux-gnu-c++ -DCODI_ForcedInlines -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib -I/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/CodiPack/include -isystem /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/externals/vcpkg/installed/x64-linux/include -march=native -ftest-coverage -fprofile-arcs -O3 -DNDEBUG -fPIE -std=c++17 -o CMakeFiles/test_suite.dir/utilities/test_numerics.cpp.o -c /home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/utilities/test_numerics.cpp",
"file": "/home/wegamekinglc/dev/github/Derivatives-Algorithms-Lib/tests/utilities/test_numerics.cpp"
}
]