-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathexample.bib
More file actions
1397 lines (1153 loc) · 49.4 KB
/
example.bib
File metadata and controls
1397 lines (1153 loc) · 49.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@preamble{ "\newcommand{\tseif}{9.3}" }
@preamble{ "\newcommand{\cacmif}{14.07}" }
@preamble{ "\newcommand{\pacmpl}{14.07}" }
@string{neurips = {Advances in Neural Information Processing Systems (NeurIPS)}}
@string{ase = {Automated Software Engineering (ASE)}}
@string{cav = {Computer Aided Verification (CAV)}}
@string{issta = {International Symposium on Software Testing and Analysis (ISSTA)}}
@string{cacm = {Communications of the ACM (CACM)}}
@string{fse = {Foundations of Software Engineering (FSE)}}
@string{gecco = {Conference on Genetic and Evolutionary Computation (GECCO)}}
@string{icse = {International Conference on Software Engineering (ICSE)}}
@string{oopsla = {(OOPSLA)}}
@string{pldi = {Programming Language Design and Implementation (PLDI)}}
@string{tacas = {International Conference on Tools and Algorithms for the Construction and Analysis of Systems (TACAS)}}
@string{sigmod = {International Conference on Management of Data (SIGMOD)}}
@string{tosem = {Transactions on Software Engineering Methodology (TOSEM)}}
@string{tse = {Transactions on Software Engineering (TSE)}}
@string{spie = {Society of Photo-Optical Instrumentation Engineers (SPIE)}}
@article{duong2026verifyingc,
author={Duong$^3$, Hai and Le, Thanh and Lam, Nguyen and Nguyen, ThanhVu},
note = {\href{https://roars.dev/pubs/na.pdf}{PDF}},
crossref={duong2026verifying}
}
@article{duong2026verifying,
author={Duong, Hai and Le, Thanh and Lam, Nguyen and Nguyen, ThanhVu},
title={{Harnessing Neuron Stability to Improve DNN Verification}},
journal = {Proceedings of the ACM on Software Engineering (PACMSE)},
volume={},
number={FSE},
year={2026},
pages={to appear}
}
@misc{kaulen20256thinternationalverificationneural,
title={The 6th International Verification of Neural Networks Competition (VNN-COMP 2025): Summary and Results},
author={Konstantin Kaulen and Tobias Ladner and Stanley Bak and Christopher Brix and Hai Duong and Thomas Flinkow and Taylor T. Johnson and Lukas Koller and Edoardo Manino and ThanhVu H Nguyen and Haoze Wu},
year={2025},
eprint={2512.19007},
archivePrefix={arXiv},
primaryClass={cs.LG},
url={https://arxiv.org/abs/2512.19007},
}
@inproceedings{ishimwe2025llmc,
author={Ishimwe, Didier$^3$ and Nguyen, ThanhVu},
crossref={ishimwe2025llm},
note = {\href{https://roars.dev/pubs/na.pdf}{PDF}},
note_award = {Best Paper Award}
}
@inproceedings{ishimwe2025llm,
title = {LLM-Guided Fuzzing for Pathological Input Generation},
author = {Ishimwe, Didier and Nguyen, ThanhVu},
booktitle = {International Symposium on Search Based Software Engineering},
pages = {to appear},
year = {2025},
organization={Springer}
}
@inproceedings{duong2025compositionalc,
author={Duong$^3$, Hai and Shriver, David and Nguyen, ThanhVu and Dwyer, Matthew},
crossref={duong2025compositional},
note = {\href{https://roars.dev/pubs/duong2025compositional.pdf}{PDF}},
note_award = {Research Spotlight}
}
@inproceedings{duong2025compositional,
title = {Compositional Neural Network Verification via Assume-Guarantee Reasoning},
author = {Duong, Hai and Shriver, David and Nguyen, ThanhVu and Dwyer, Matthew},
booktitle = neurips,
volume = {},
pages = {to appear},
year = {2025},
editor = {}
}
@inproceedings{duong2025generatingc,
author={Duong$^3$, Hai and Nguyen, ThanhVu and Dwyer, Matthew},
crossref={duong2025generating},
note = {\href{https://roars.dev/pubs/duong2025generating.pdf}{PDF}}
}
@inproceedings{duong2025generating,
title = {Generating and Checking DNN Verification Proofs},
author = {Duong, Hai and Nguyen, ThanhVu and Dwyer, Matthew},
booktitle = neurips,
volume = {},
pages = {to appear},
year = {2025},
editor = {}
}
@inproceedings{duong2025neuralsat2c,
author={Duong$^3$, Hai and Nguyen, ThanhVu},
crossref={duong2025neuralsat2},
note = {\href{https://roars.dev/pubs/na.pdf}{PDF}}
}
@inproceedings{duong2025neuralsat2,
title={Neuralsat: Scaling constraint solving for dnn verification (competition contribution)},
author={Duong, Hai and Nguyen, ThanhVu},
booktitle={International Symposium on AI Verification},
pages={253--259},
year={2025},
organization={Springer}
}
@inproceedings{li2025destabilizingc,
author = {Li$^3$, Linhan and Nguyen, ThanhVu},
booktitle = ASE,
crossref = {li2025destabilizing},
note = {\href{https://roars.dev/pubs/li2025destabilizing.pdf}{PDF}}}
@inproceedings{li2025destabilizing,
author = {Li, Linhan and Nguyen, Thanhvu},
booktitle = ASE,
pages = {to appear},
publisher = {IEEE},
title = {Destabilizing Neurons to Generate Challenging Neural Network Verification Benchmarks},
year = {2025}}
@inproceedings{li2025coolerc,
author = {Li$^3$, Linhan and Nguyen, ThanhVu},
note = {\href{https://roars.dev/pubs/li2025cooler.pdf}{PDF}},
crossref={li2025cooler}
}
@inproceedings{li2025cooler,
author = {Li, Linhan and Nguyen, ThanhVu},
booktitle = ISSTA # "-Tool Demo",
title = {{COOLer: A Language Support Extension for COOL in VS Code}},
publisher = {ACM},
pages={11--15},
year = {2025}
}
@inproceedings{piciorea2025bringingc,
author = {Piciorea$^1$, Stefania and Nguyen, ThanhVu},
note = {\href{https://roars.dev/pubs/piciorea2025bringing.pdf}{PDF}},
crossref={piciorea2025bringing}
}
@inproceedings{piciorea2025bringing,
author = {Piciorea, Stefania and Nguyen, ThanhVu},
booktitle = ISSTA # "-Tool Demo",
title = {{Bringing Invariant Analysis to modern IDEs: The DIG+ Extension for VS Code}},
publisher = {ACM},
pages={51--55},
year = {2025}
}
@inproceedings{duong2025neuralsatc,
author = {Duong$^3$, Hai and Nguyen, ThanhVu and Dwyer, Matthew},
note = {\href{https://roars.dev/pubs/duong2025neuralsat.pdf}{PDF}},
crossref={duong2025neuralsat}
}
@inproceedings{duong2025neuralsat,
author = {Duong, Hai and Nguyen, ThanhVu and Dwyer, Matthew},
booktitle = CAV,
pages = {409--423},
title = {NeuralSAT: A High-Performance Verification Tool for Deep Neural Networks},
year = {2025}}
@article{le2025evolutionc,
crossref={le2025evolution},
note = {\href{https://roars.dev/pubs/le2025evolution.pdf}{PDF}}
}
@article{le2025evolution,
title={The Evolution of Automated Software Repair},
author={Le Goues, Claire and Nguyen, ThanhVu and Forrest, Stephanie and Weimer, Westley},
journal={IEEE Transactions on Software Engineering},
year={2025},
publisher={IEEE}
}
@inproceedings{doan2025aic,
author={Doan$^3$, Long and Nguyen, ThanhVu H},
note = {\href{https://roars.dev/pubs/doan2025ai.pdf}{PDF}},
crossref={doan2025ai}
}
@inproceedings{doan2025ai,
title={AI-Assisted Autoformalization of Combinatorics Problems in Proof Assistants},
author={Doan, Long and Nguyen, ThanhVu H},
booktitle = ICSE # "-New Ideas and Emerging Results (ICSE-NIER)",
pages={1--5},
year={2025}
}
@article{duong2024harnessingc,
author={Duong$^3$, Hai and Xu, Dong and Nguyen, ThanhVu and Dwyer, Matthew},
note = {\href{https://roars.dev/pubs/duong2024harnessing.pdf}{PDF}},
crossref={duong2024harnessing}
}
@article{duong2024harnessing,
author={Duong, Hai and Xu, Dong and Nguyen, ThanhVu and Dwyer, Matthew},
title={{Harnessing Neuron Stability to Improve DNN Verification}},
journal = {Proceedings of the ACM on Software Engineering (PACMSE)},
volume={1},
number={FSE},
year={2024},
pages={859--881}
}
@inproceedings{dao2023triggeringc,
crossref={dao2023triggering}
}
@inproceedings{dao2023triggering,
author = {Dao, Tung and Meng, Na and Nguyen, ThanhVu},
booktitle = FSE # "-Industry Track",
pages={1774--1785},
title = {Triggering Modes in Spectrum-Based Multi-Location Fault Localization},
year = {2023}}
@misc{liu2023drnlac,
crossref={liu2023drnla}
}
@misc{liu2023drnla,
title={DrNLA: Extending Verification to Non-linear Programs through Dual Re-writing},
author={Yuandong Cyrus Liu and Ton-Chanh Le and Timos Antonopoulos and Eric Koskinen and ThanhVu Nguyen},
year={2023},
note={journal, 30 pages},
eprint={2306.15584},
archivePrefix={arXiv},
primaryClass={cs.PL}
}
@misc{duong2023dplltc,
crossref={duong2023dpllt},
author={Hai Duong$^3$ and Linhan Li$^3$ and ThanhVu Nguyen and Matthew Dwyer},
}
@misc{duong2023dpllt,
title={A DPLL(T) Framework for Verifying Deep Neural Networks},
author={Hai Duong and Linhan Li and ThanhVu Nguyen and Matthew Dwyer},
year={2023},
note={journal, 25 pages},
eprint={2307.10266},
archivePrefix={arXiv},
primaryClass={cs.LG}
}
@article{wang2023graphc,
crossref = {wang2023graph},
note = {\href{https://roars.dev/pubs/wang2023graph.pdf}{PDF}}
}
@article{wang2023graph,
title={{Graph Learning for Interaction Analysis in Smart Home Rule Data}},
author={Wang, Guangjing and Ivanov, Nikolay and Chen, Bocheng and Wang, Qi and Nguyen, ThanhVu and Yan, Qiben},
journal={Proceedings of the ACM on Management of Data (SIGMOD)},
pages={1--27},
year={2023},
publisher={ACM}
}
@inproceedings{phan2023challengesc,
crossref = {phan2023challenges},
author={Phan, Quoc-Sang and Nguyen$^1$, KimHao and Nguyen, ThanhVu},
note = {\href{https://roars.dev/pubs/phan2023challenges.pdf}{PDF}}
}
@inproceedings{phan2023challenges,
title={The Challenges of Shift Left Static Analysis},
author={Phan, Quoc-Sang and Nguyen, KimHao and Nguyen, ThanhVu},
booktitle = ICSE # "-Software Engineering in Practice (ICSE-SEIP)",
pages={340--342},
year={2023},
publisher={IEEE}
}
@inproceedings{nguyen2022towardc,
addendum = {Acceptance 28\%\coe{, contribution 75\%}},
crossref = {nguyen2022toward},
note = {\href{https://roars.dev/pubs/nguyen2022toward.pdf}{PDF}}}
@inproceedings{nguyen2022toward,
title={Toward the Analysis of Graph Neural Networks},
author={Nguyen, Thanh-Dat and Le-Cong, Thanh and Nguyen, ThanhVu H and Le, Xuan-Bach D and Huynh, Quyet-Thang},
booktitle= icse # "-New Ideas and Emerging Results (NIER)",
pages={116--120},
year={2022}
}
@inproceedings{nguyen2022syminferc,
addendum = {Acceptance 50\%\coe{, contribution 75\%}},
author = {Nguyen, ThanhVu and Nguyen$^1$, KimHao and Duong$^3$, Hai},
crossref = {nguyen2022syminfer},
note = {\href{https://roars.dev/pubs/nguyen2022syminfer.pdf}{PDF}}}
@inproceedings{nguyen2022syminfer,
title={SymInfer: Inferring Numerical Invariants using Symbolic States},
author={Nguyen, ThanhVu and Nguyen, KimHao and Duong, Hai},
booktitle = ICSE # "-Tool Demo",
pages={197--201},
year={2022},
publisher={IEEE}
}
@article{ishimwe2023recurc,
author = {Ishimwe, Didier$^3$ and Nguyen, ThanhVu},
crossref = {ishimwe2023recur}
}
@article{ishimwe2023recur,
author = {Ishimwe, Didier and Nguyen, ThanhVu},
journal = {Proceedings of the ACM on Programming Languages},
number = {OOPSLA},
pages = {under submission},
publisher = {ACM},
title = {{RECUR: Inferring and Solving Recurrences to Analyze Program Complexity}},
volume = {},
year = {2023}}
@inproceedings{ishimwe2022dynaplexc,
addendum = {Acceptance 50\%\coe{, contribution 33\%}},
author = {Ishimwe$^3$, Didier and Nguyen$^1$, KimHao and Nguyen, ThanhVu},
crossref = {ishimwe2022dynaplex},
note = {\href{https://roars.dev/pubs/ishimwe2022dynaplex.pdf}{PDF}}}
@inproceedings{ishimwe2022dynaplex,
title={Dynaplex: Inferring Asymptotic Runtime Complexity of Recursive Programs},
author={Ishimwe, Didier and Nguyen, ThanhVu and Nguyen, KimHao},
booktitle = ICSE # "-Tool Demo",
pages={61--64},
year={2022},
publisher={IEEE}
}
@article{ishimwe2021dynaplexc,
author = {Ishimwe$^3$, Didier and Nguyen$^1$, KimHao and Nguyen, ThanhVu},
crossref = {ishimwe2021dynaplex},
note = {\href{https://roars.dev/pubs/ishimwe2021dynaplex.pdf}{PDF}},
number = OOPSLA}
@article{ishimwe2021dynaplex,
author = {Ishimwe, Didier and Nguyen, KimHao and Nguyen, ThanhVu},
journal = {Proceedings of the ACM on Programming Languages},
number = {OOPSLA},
pages = {1--23},
publisher = {ACM},
title = {{Dynaplex: analyzing program complexity using dynamically inferred recurrence relations}},
volume = {5},
year = {2021}}
@article{nguyen2021usingc,
addendum = {Impact Factor \tseif{}},
author = {Nguyen, Thanhvu and Nguyen$^1$, KimHao and Dwyer, Matthew},
crossref = {nguyen2021using},
journal = TSE,
note = {\href{https://roars.dev/pubs/nguyen2021using.pdf}{PDF}}}
@article{nguyen2021using,
author = {Nguyen, Thanhvu and Nguyen, KimHao and Dwyer, Matthew},
journal = {Transactions on Software Engineering},
publisher = {IEEE},
title = {Using Symbolic States to Infer Numerical Invariants},
volume={48},
number={10},
pages={3877-–3899},
year = {2021}}
@inproceedings{nguyen2021gentreec,
addendum = {Acceptance 22\%, \href{https://roars.dev/pubs/nguyen2021artifact.pdf}{artifact evaluation}},
author = {Nguyen$^1$, KimHao and Nguyen, ThanhVu},
booktitle = ICSE,
crossref = {nguyen2021gentree},
note = {\href{https://roars.dev/pubs/nguyen2021gentree.pdf}{PDF}}}
@inproceedings{nguyen2021gentree,
author = {Nguyen, KimHao and Nguyen, ThanhVu},
booktitle = ICSE,
publisher = {IEEE},
pages = {1598--1609},
title = {GenTree: Using decision trees to learn interactions for configurable software},
year = {2021}}
@inproceedings{zheng2021toolc,
addendum = {Acceptance 47\%},
author = {Zheng$^3$, Guolong and Nguyen, ThanhVu and Brida, Sim{\'o}n Guti{\'e}rrez and Regis, Germ{\'a}n and Frias, Marcelo F and Aguirre, Nazareno and Bagheri, Hamid},
crossref = {zheng2021tool},
note = {\href{https://roars.dev/pubs/zheng2021tool.pdf}{PDF}}}
@inproceedings{nguyen2021toolc,
addendum = {Acceptance 47\%},
author = {Nguyen$^1$, KimHao and Nguyen, ThanhVu},
crossref = {nguyen2021tool},
note = {\href{https://roars.dev/pubs/nguyen2021tool.pdf}{PDF}}}
@inproceedings{nguyen2021tool,
author = {Nguyen, KimHao and Nguyen, ThanhVu},
booktitle = ASE # "-Tool Demo",
title = {GenTree: Inferring Configuration Interactions using Decision Trees},
publisher = {IEEE},
pages={1232--1236},
year = {2021}}
@inproceedings{nguyen2017syminferc,
addendum = {Acceptance 21\%},
booktitle = ASE,
crossref = {nguyen2017syminfer},
note = {\href{https://roars.dev/pubs/nguyen2017syminfer.pdf}{PDF}}}
@inproceedings{nguyen2017syminfer,
author = {Nguyen, ThanhVu and Dwyer, Matthew and Visser, William},
booktitle = ASE,
pages = {804--814},
publisher = {IEEE},
title = {SymInfer: Inferring Program Invariants using Symbolic States},
year = {2017}}
@inproceedings{brida2022icebarc,
addendum = {Acceptance 22\%\coe{, contribution 14\%}},
author = {Brida, Sim{\'o}n Gutierrez and Regis, Germ{\'a}n and Zheng$^3$, Guolong and Bagheri, Hamid and Nguyen, ThanhVu and Aguirre, Nazareno and Frias, Marcelo},
booktitle = ASE,
crossref = {brida2022icebar},
note = {\href{https://roars.dev/pubs/brida2022icebar.pdf}{PDF}}}
@inproceedings{brida2022icebar,
author = {Brida, Sim{\'o}n Gutierrez and Regis, Germ{\'a}n and Zheng, Guolong and Bagheri, Hamid and Nguyen, ThanhVu and Aguirre, Nazareno and Frias, Marcelo},
booktitle = ASE,
title = {ICEBAR: Feedback-Driven Iterative Repair of Alloy Specifications},
year = 2022,
pages={1--13},
publisher = {ACM}
}
@inproceedings{zheng2022atrc,
addendum = {Acceptance 26.6\%\coe{, contribution 14\%}},
author={Zheng$^3$, Guolong and Nguyen, ThanhVu and Gutiérrez Brida, Simón and Regis, Germán and Frias, Marcelo and Aguirre, Nazareno and Bagheri, Hamid},
booktitle= ISSTA,
crossref = {zheng2022atr},
note = {\href{https://roars.dev/pubs/zheng2022atr.pdf}{PDF}}}
@inproceedings{zheng2022atr,
author={Zheng, Guolong and Nguyen, ThanhVu and Gutiérrez Brida, Simón and Regis, Germán and Frias, Marcelo and Aguirre, Nazareno and Bagheri, Hamid},
booktitle={ISSTA},
title={{ATR: Template-based Repair for Alloy Specifications}},
year={2022},
pages={666--677},
publisher = {ACM}
}
@inproceedings{nguyen2022analyzingc,
crossref = {nguyen2022analyzing},
author={Nguyen$^1$, KimHao and Nguyen, ThanhVu and Phan, Quoc-Sang},
note = {\href{https://roars.dev/pubs/nguyen2022analyzing.pdf}{PDF}}}
@inproceedings{nguyen2022analyzing,
title={Analyzing the CMake Build System},
author={Nguyen, KimHao and Nguyen, ThanhVu and Phan, Quoc-Sang},
booktitle = ICSE # "-Software Engineering in Practice (ICSE-SEIP)",
pages={27--28},
year={2022},
publisher={IEEE}
}
@inproceedings{nguyen2021artifact,
author = {Nguyen, KimHao and Nguyen, ThanhVu},
booktitle = ICSE # "-Companion Proceedings (ICSE-Companion)",
publisher = {IEEE},
pages = {177--178},
title = {Artifact for" GenTree: Using Decision Trees to Learn Interactions for Configurable Software"},
year = {2021}}
@inproceedings{zheng2021tool,
author = {Zheng, Guolong and Nguyen, ThanhVu and Brida, Sim{\'o}n Guti{\'e}rrez and Regis, Germ{\'a}n and Frias, Marcelo F and Aguirre, Nazareno and Bagheri, Hamid},
booktitle = ASE # "-Tool Demo",
publisher = {IEEE},
pages={1218--1222},
title = {FLACK: Localizing Faults in Alloy Models},
year = {2021}}
@inproceedings{zheng2021artifact,
author = {Zheng, Guolong and Nguyen, ThanhVu and Brida, Sim{\'o}n Guti{\'e}rrez and Regis, Germ{\'a}n and Frias, Marcelo F and Aguirre, Nazareno and Bagheri, Hamid},
booktitle = ICSE # "-Companion Proceedings (ICSE-Companion)",
publisher = {IEEE},
pages = {179--180},
title = {Artifact of `FLACK: Counterexample-Guided Fault Localization for Alloy Models'},
year = {2021}}
@inproceedings{zheng2021flackc,
addendum = {Acceptance 22\%, \href{https://roars.dev/pubs/zheng2021artifact.pdf}{artifact evaluation}},
author = {Zheng$^3$, Guolong and Nguyen, ThanhVu and Brida, Sim{\'o}n Guti{\'e}rrez and Regis, Germ{\'a}n and Frias, Marcelo F and Aguirre, Nazareno and Bagheri, Hamid},
booktitle = ICSE,
crossref = {zheng2021flack},
note = {\href{https://roars.dev/pubs/zheng2021flack.pdf}{PDF}}}
@inproceedings{zheng2021flack,
author = {Zheng, Guolong and Nguyen, ThanhVu and Brida, Sim{\'o}n Guti{\'e}rrez and Regis, Germ{\'a}n and Frias, Marcelo F and Aguirre, Nazareno and Bagheri, Hamid},
booktitle = ICSE,
publisher = {IEEE},
pages = {637--648},
title = {FLACK: Counterexample-guided fault localization for alloy models},
year = {2021}}
@inproceedings{brida2021toolc,
addendum = {Acceptance 47\%},
author = {Brida, Sim{\'o}n Gutierrez and Regis, Germ{\'a}n and Zheng$^3$, Guolong and Bagheri, Hamid and Nguyen, ThanhVu and Aguirre, Nazareno and Frias, Marcelo},
crossref = {brida2021tool},
note = {\href{https://roars.dev/pubs/brida2021tool.pdf}{PDF}}}
@inproceedings{brida2021tool,
author = {Brida, Sim{\'o}n Gutierrez and Regis, Germ{\'a}n and Zheng, Guolong and Bagheri, Hamid and Nguyen, ThanhVu and Aguirre, Nazareno and Frias, Marcelo},
booktitle = ASE # "-Tool Demo",
pages={1213--1217},
title = {BeAFix: An Automated Repair Tool for Faulty Alloy Models},
publisher = {IEEE},
year = {2021}}
@inproceedings{brida2021boundedc,
addendum = {Acceptance 22\%, \href{https://roars.dev/pubs/brida2021artifact.pdf}{artifact evaluation}},
author = {Brida, Sim{\'o}n Gutierrez and Regis, Germ{\'a}n and Zheng$^3$, Guolong and Bagheri, Hamid and Nguyen, ThanhVu and Aguirre, Nazareno and Frias, Marcelo},
booktitle = ICSE,
crossref = {brida2021bounded},
note = {\href{https://roars.dev/pubs/brida2021bounded.pdf}{PDF}}}
@inproceedings{brida2021bounded,
author = {Brida, Sim{\'o}n Gutierrez and Regis, Germ{\'a}n and Zheng, Guolong and Bagheri, Hamid and Nguyen, ThanhVu and Aguirre, Nazareno and Frias, Marcelo},
booktitle = {International Conference on Software Engineering (ICSE)},
publisher = {IEEE},
pages = {1135--1147},
title = {Bounded exhaustive search of alloy specification repairs},
year = {2021}}
@inproceedings{brida2021artifact,
author = {Brida, Sim{\'o}n Guti{\'e}rrez and Regis, Germ{\'a}n and Zheng, Guolong and Bagheri, Hamid and Nguyen, ThanhVu and Aguirre, Nazareno and Frias, Marcelo},
booktitle = {International Conference on Software Engineering: Companion Proceedings (ICSE-Companion)},
publisher = {IEEE},
pages = {209--210},
title = {Artifact of Bounded Exhaustive Search of Alloy Specification Repairs},
year = {2021}}
@article{le2020dynamitec,
crossref = {le2020dynamite},
note = {\href{https://roars.dev/pubs/le2020dynamite.pdf}{PDF}},
number = OOPSLA}
@article{le2020dynamite,
author = {Le, TonChanh and Antonopoulos, Timos and Fathololumi, Parisa and Koskinen, Eric and Nguyen, ThanhVu},
journal = {Proceedings of the ACM on Programming Languages},
number = {OOPSLA},
pages = {1--30},
publisher = {ACM New York, NY, USA},
title = {DynamiTe: Dynamic Termination and Non-termination Proofs},
volume = {4},
year = {2020}}
@inproceedings{nguyen2020using2c,
addendum = {Acceptance 37\%},
author = {Nguyen, ThanhVu and Nguyen$^1$, KimHao},
crossref = {nguyen2020using2},
note = {\href{https://roars.dev/pubs/nguyen2020using2.pdf}{PDF}}}
@inproceedings{nguyen2020using2,
author = {Nguyen, ThanhVu and Nguyen, KimHao},
booktitle = {International Conference on Software Maintenance and Evolution},
publisher = {IEEE},
pages = {712--716},
title = {Using Symbolic Execution to Analyze Linux KBuild Makefiles},
year = {2020}}
@inproceedings{zheng2020debuggingc,
author = {Zheng$^3$, Guolong and Bagheri, Hamid and Nguyen, ThanhVu},
crossref = {zheng2020debugging},
note = {\href{https://roars.dev/pubs/zheng2020debugging.pdf}{PDF}}}
@inproceedings{zheng2020debugging,
author = {Zheng, Guolong and Bagheri, Hamid and Nguyen, ThanhVu},
booktitle = {2020 IEEE International Conference on Software Maintenance and Evolution},
publisher = {IEEE},
pages = {844--848},
title = {Debugging Declarative Models in Alloy},
year = {2020}}
@inproceedings{nguyen2020usingc,
author = {Nguyen, ThanhVu and Ishimwe$^3$, Didier and Malyshev$^2$, Alexey and Antonopoulos, Timos and Phan, Quoc-Sang},
crossref = {nguyen2020using},
note = {\href{https://roars.dev/pubs/nguyen2020using.pdf}{PDF}}}
@inproceedings{nguyen2020using,
author = {Nguyen, ThanhVu and Ishimwe, Didier and Malyshev, Alexey and Antonopoulos, Timos and Phan, Quoc-Sang},
booktitle = {International Workshop on Software Security from Design to Deployment},
pages = {11--14},
title = {Using Dynamically Inferred Invariants to Analyze Program Runtime Complexity},
year = {2020}}
@article{mariano2019programc,
crossref = {mariano2019program},
note = {\href{https://roars.dev/pubs/mariano2019program.pdf}{PDF}},
number = OOPSLA}
@article{mariano2019program,
author = {Mariano, Benjamin and Reese, Josh and Xu, Siyuan and Nguyen, ThanhVu and Qiu, Xiaokang and Foster, Jeffrey S and Solar-Lezama, Armando},
journal = {Proceedings of the ACM on Programming Languages},
number = {OOPSLA},
pages = {1--25},
publisher = {ACM New York, NY, USA},
title = {Program Synthesis with Algebraic Library Specifications},
volume = {3},
year = {2019}}
@inproceedings{le2019slingc,
addendum = {Acceptance 27\%},
author = {Le, TonChanh and Zheng$^3$, Guolong and Nguyen, ThanhVu},
booktitle = PLDI,
crossref = {le2019sling},
note = {\href{https://roars.dev/pubs/le2019sling.pdf}{PDF}}}
@inproceedings{le2019sling,
author = {Le, TonChanh and Zheng, Guolong and Nguyen, ThanhVu},
booktitle = {Conference on Programming Language Design and Implementation},
pages = {788--801},
publisher = {ACM},
title = {SLING: Using Dynamic Analysis to Infer Program Invariants in Separation Logic},
year = {2019}}
@inproceedings{zheng2018automaticc,
author = {Zheng$^3$, Guolong and Le, Quang Loc and Nguyen, ThanhVu and Phan, Quoc-Sang},
crossref = {zheng2018automatic},
note = {\href{https://roars.dev/pubs/zheng2018automatic.pdf}{PDF}}}
@inproceedings{zheng2018automatic,
author = {Zheng, Guolong and Le, Quang Loc and Nguyen, ThanhVu and Phan, Quoc-Sang},
booktitle = {Java PathFinder Workshop},
pages = {66--66},
title = {{Automatic Data Structure Repair using Separation Logic}},
year = {2018}}
@inproceedings{gazzillo2018localizingc,
crossref = {gazzillo2018localizing},
note = {\href{https://roars.dev/pubs/gazzillo2018localizing.pdf}{PDF}}}
@inproceedings{gazzillo2018localizing,
author = {Gazzillo, Paul and Koc, Ugur and Nguyen, Thanhvu and Wei, Shiyi},
booktitle = {International Systems and Software Product Line Conference (Challenge Track)},
pages = {269-273},
title = {{Localizing Configurations in Highly-Configurable Systems}},
year = {2018}}
@inproceedings{nguyen2017counterexamplec,
addendum = {Acceptance 24\%},
booktitle = FSE,
crossref = {nguyen2017counterexample},
note = {\href{https://roars.dev/pubs/nguyen2017counterexample.pdf}{PDF}}}
@inproceedings{nguyen2017counterexample,
author = {Nguyen, ThanhVu and Antonopoulos, Timos and Ruef, Andrew and Hicks, Michael},
booktitle = {Foundations of Software Engineering},
pages = {605--615},
title = {Counterexample-guided approach to finding numerical invariants},
year = {2017}}
@inproceedings{nguyen2017connectingc,
addendum = {Acceptance 28\%},
booktitle = TACAS,
crossref = {nguyen2017connecting},
note = {\href{https://roars.dev/pubs/nguyen2017connecting.pdf}{PDF}}}
@inproceedings{nguyen2017connecting,
author = {ThanhVu Nguyen and Deepak Kapur and Westley Weimer and Stephanie Forrest},
booktitle = {International Conference on Tools and Algorithms for the Construction and Analysis of Systems},
pages = {301--318},
publisher = {Springer},
title = {Connecting Program Synthesis and Reachability: Automatic Program Repair using Test-Input Generation},
year = {2017}}
@inproceedings{nguyen2016igenc,
addendum = {Acceptance 27\%},
booktitle = FSE,
crossref = {nguyen2016igen},
note = {\href{https://roars.dev/pubs/nguyen2016igen.pdf}{PDF}}}
@inproceedings{nguyen2016igen,
author = {Nguyen, ThanhVu and Koc, Ugur and Cheng, Javran and Foster, Jeffrey S. and Porter, Adam A.},
booktitle = {Foundations of Software Engineering},
keywords = {Program analysis; software testing; configurable systems},
pages = {655--665},
publisher = {ACM},
title = {iGen: Dynamic Interaction Inference for Configurable Software},
year = {2016}}
@inproceedings{nguyen2014usingc,
addendum = {Acceptance 20\%},
booktitle = ICSE,
crossref = {nguyen2014using},
note = {\href{https://roars.dev/pubs/nguyen2014using.pdf}{PDF}}}
@inproceedings{nguyen2014using,
author = {Nguyen, ThanhVu and Kapur, Deepak and Weimer, Westley and Forrest, Stephanie},
booktitle = {International Conference on Software Engineering},
pages = {608-619},
publisher = {IEEE},
title = {Using Dynamic Analysis to Generate Disjunctive Invariants},
year = {2014}}
@inproceedings{nguyen2012usingc,
addendum = {Acceptance 21\%},
booktitle = ICSE,
crossref = {nguyen2012using},
note = {\href{https://roars.dev/pubs/nguyen2012using.pdf}{PDF}}}
@inproceedings{nguyen2012using,
author = {Nguyen, ThanhVu and Kapur, Deepak and Weimer, Westley and Forrest, Stephanie},
booktitle = {International Conference on Software Engineering},
pages = {683--693},
publisher = {IEEE},
title = {Using Dynamic Analysis to Discover Polynomial and Array Invariants},
year = {2012},
note_award = {ACM SIGSOFT Distinguished Paper Award}
}
@article{nguyen2014digc,
addendum = {Impact Factor 2.07\coe{, contribution 25\%}},
crossref = {nguyen2014dig},
journal = TOSEM,
note = {\href{https://roars.dev/pubs/nguyen2014dig.pdf}{PDF}}}
@article{nguyen2014dig,
author = {Nguyen, ThanhVu and Kapur, Deepak and Weimer, Westley and Forrest, Stephanie},
journal = {Transactions on Software Engineering Methodology},
number = {4},
pages = {30:1--30:30},
publisher = {ACM},
title = {{DIG: A Dynamic Invariant Generator for Polynomial and Array Invariants}},
volume = {23},
year = {2014}}
@incollection{kapur2013geometricc,
addendum = {\coe{contribution 16\%}},
crossref = {kapur2013geometric},
note = {\href{https://roars.dev/pubs/kapur2013geometric.pdf}{PDF}}}
@article{kapur2013geometric,
author = {Kapur, Deepak and Zhang, Zhihai and Horbach, Matthias and Zhao, Hengjun and Lu, Qi and Nguyen, ThanhVu},
booktitle = {Automated Reasoning and Mathematics: Essays in Memory of William W. McCune},
pages = {189--228},
publisher = {Springer},
title = {{Geometric Quantifier Elimination Heuristics for Automatically Generating Octagonal and Max-plus Invariants}},
volume = {7788},
year = {2013}}
@article{le2011genprogc,
addendum = {Impact Factor \tseif{}\coe{, contribution 25\%}},
crossref = {le2011genprog},
journal = TSE,
note = {\href{https://roars.dev/pubs/le2011genprog.pdf}{PDF}}}
@article{le2011genprog,
author = {Le Goues, Claire and Nguyen, ThanhVu and Forrest, Stephanie and Weimer, Westley},
journal = {Transactions on Software Engineering},
number = {1},
pages = {54--72},
publisher = {IEEE},
title = {{Genprog: A Generic Method for Automatic Software Repair}},
volume = {38},
year = {2011},
note_award = {IEEE TSE 50th Anniversary Retrospective Most Influential Paper Award}
}
@article{weimer2010automaticc,
addendum = {Impact Factor \cacmif\coe{, contribution 25\%}},
crossref = {weimer2010automatic},
journal = CACM,
note = {\href{https://roars.dev/pubs/weimer2010automatic.pdf}{PDF}}}
@article{weimer2010automatic,
author = {Weimer, Westley and Forrest, Stephanie and Le Goues, Claire and Nguyen, ThanhVu},
journal = {Communications of the ACM},
number = {5},
pages = {109--116},
publisher = {ACM New York, NY, USA},
title = {{Automatic Program Repair with Evolutionary Computation}},
volume = {53},
year = {2010},
note_award = {Research Highlight}
}
@article{bui2008antc,
addendum = {Impact Factor 0.99\coe{, contribution 25\%}},
crossref = {bui2008ant},
note = {\href{https://roars.dev/pubs/bui2008ant.pdf}{PDF}}}
@article{bui2008ant,
author = {Bui, Thang and Nguyen, ThanhVu and Patel, Chirag and Phan, Kim-Anh},
journal = {Discrete Applied Mathematics},
keywords = {Graph coloring, Ant-based algorithm},
number = {2},
pages = {190--200},
publisher = {Elsevier},
title = {{An Ant-based Algorithm for Coloring Graphs}},
volume = {156},
year = {2008}}
@inproceedings{weimer2009automaticallyc,
addendum = {Acceptance 12\%},
booktitle = ICSE,
crossref = {weimer2009automatically},
note = {\href{https://roars.dev/pubs/weimer2009automatically.pdf}{PDF}}}
@inproceedings{weimer2009automatically,
author = {Weimer, Westley and Nguyen, ThanhVu and {Le Goues}, Claire and Forrest, Stephanie},
booktitle = ICSE,
keywords = {software engineering, software repair, program analysis, program repair, genetic programming, evolutionary computing},
pages = {364--367},
publisher = {IEEE},
title = {Automatically Finding Patches Using Genetic Programming},
year = {2009},
note_award = {
ACM SIGSOFT Distinguished Paper Award;
Manfred Paul Award for ExcellenceSoftware: Theory and Practice;
ACM SIGSOFT 10-year Most Influential Paper Award}
}
@inproceedings{forrest2009geneticc,
addendum = {Acceptance 41\%},
booktitle = GECCO,
crossref = {forrest2009genetic},
note = {\href{https://roars.dev/pubs/forrest2009genetic.pdf}{PDF}}}
@inproceedings{forrest2009genetic,
author = {Forrest, Stephanie and Nguyen, ThanhVu and Weimer, Westley and Le Goues, Claire},
booktitle = {Conference on Genetic and Evolutionary Computation},
pages = {947--954},
title = {A genetic programming approach to automated software repair},
year = {2009},
note_award = {Best Paper Award; ACM SIGEVO 10-year Impact Award}
}
@inproceedings{bui2009parallelc,
addendum = {Acceptance 41\%},
booktitle = GECCO,
crossref = {bui2009parallel},
note = {\href{https://roars.dev/pubs/bui2009parallel.pdf}{PDF}}}
@inproceedings{bui2009parallel,
author = {Bui, Thang and Nguyen, ThanhVu and {Rizzo Jr}, Joseph},
booktitle = {Conference on Genetic and Evolutionary Computation},
pages = {1--8},
publisher = {ACM},
title = {Parallel Shared Memory Strategies For Ant-based Optimization Algorithms},
year = {2009},
note_award = {Best Paper Award}
}
@inproceedings{nguyen2009usingc,
crossref = {nguyen2009using},
note = {\href{https://roars.dev/pubs/nguyen2009using.pdf}{PDF}}}
@inproceedings{nguyen2009using,
author = {Nguyen, ThanhVu and Weimer, Westley and {Le Goues}, Claire and Forrest, Stephanie},
booktitle = {International Conference on Software Testing, Verification and Validation Workshops},
pages = {152--153},
publisher = {IEEE},
title = {{Using Execution Paths to Evolve Software Patches}},
year = {2009},
note_award = {Best Short Paper Award and Best Presentation Award}
}
@inproceedings{viamontes2007efficientc,
crossref = {viamontes2007efficient},
note = {\href{https://roars.dev/pubs/viamontes2007efficient.pdf}{PDF}}}
@inproceedings{viamontes2007efficient,
author = {Viamontes, G and Amduka, M and Russo, J and Craven M and Nguyen, T},
booktitle = {Annual High Performance Embedded Computing Workshop},
publisher = {IEEE},
title = {{Efficient Memoization Strategies for Object Recognition with a Multi-Core Architecture}},
year = {2007},
note_award = {Outstanding Submission}
}
@inproceedings{smith2007fuzzyc,
crossref = {smith2007fuzzy},
note = {\href{https://roars.dev/pubs/smith2007fuzzy.pdf}{PDF}}}
@inproceedings{smith2007fuzzy,
author = {Smith III, James and Nguyen, ThanhVu},
booktitle = {International Society for Optical Engineering},
journal = {Signal Processing, Sensor Fusion, and Target Recognition XVI},
publisher = {SPIE},
title = {{Fuzzy Decision Trees for Planning and Autonomous Control of a Coordinated Team of UAVs}},
year = {2007}}
@inproceedings{smith2007geneticc,
crossref = {smith2007genetic},
note = {\href{https://roars.dev/pubs/smith2007genetic.pdf}{PDF}}}
@inproceedings{smith2007genetic,
author = {Smith III, James and Nguyen, ThanhVu},
booktitle = {International Society for Optical Engineering},
journal = {Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2007},
publisher = {SPIE},
title = {{Genetic Program based Data Mining of Fuzzy Decision Trees and Methods of Improving Convergence and Reducing Bloat}},
year = {2007}}
@inproceedings{bui2006agentc,
addendum = {Acceptance 46\%},
booktitle = GECCO,
crossref = {bui2006agent},
note = {\href{https://roars.dev/pubs/bui2006agent.pdf}{PDF}}}
@inproceedings{bui2006agent,
author = {Bui, Thang N and Nguyen, ThanhVu H},
booktitle = {Conference on Genetic and Evolutionary Computation},
pages = {19--26},
title = {{An Agent-based Algorithm for Generalized Graph Colorings}},
year = {2006}}
@inproceedings{smith2006guidingc,
crossref = {smith2006guiding},
note = {\href{https://roars.dev/pubs/smith2006guiding.pdf}{PDF}}}
@inproceedings{smith2006guiding,
author = {Smith III, James and Nguyen, ThanhVu},
booktitle = {Intelligent Data Engineering and Automated Learning (IDEAL)},
keywords = {Genetic Programs, Fuzzy Logic, Data Mining, Control Algorithms, Planning Algorithms.},
pages = {1337--1345},
publisher = {Springer},
title = {{Guiding Genetic Program Based Data Mining Using Fuzzy Rules}},
year = {2006}}
@inproceedings{smith2006evolutionaryc,
crossref = {smith2006evolutionary},
note = {\href{https://roars.dev/pubs/smith2006evolutionary.pdf}{PDF}}}
@inproceedings{smith2006evolutionary,
author = {Smith III, James and Nguyen, ThanhVu},
booktitle = {International Conference on Informatics in Control Automation and Robotics (ICINCO)},
keywords = {optimization problems in signal processing, signal reconstruction, system identification, time series and system modeling},
pages = {107-113},
publisher = {Springer},
title = {Evolutionary Data Mining Approach to Creating Digital Logic},
year = {2006}}
@inproceedings{smith2006fuzzy2c,
crossref = {smith2006fuzzy2},
note = {\href{https://roars.dev/pubs/smith2006fuzzy2.pdf}{PDF}}}
@inproceedings{smith2006fuzzy2,
author = {Smith III, James and Nguyen, ThanhVu},
booktitle = {International Conference on Informatics in Control Automation and Robotics (ICINCO)},
comment = {Also appears in Informatics in Control, Automation and Robotics, Lecture Notes in Electrical Engineering, Vol. 15(2), 2008, pp. 81-94.},
keywords = {decision support systems, distributed control systems, fuzzy control, knowledge-based systems applications, software agents for intelligent control systems},
pages = {81-94},
publisher = {Springer},