-
Notifications
You must be signed in to change notification settings - Fork 9
/
publications.html
3153 lines (2905 loc) · 114 KB
/
publications.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if lt IE 8 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 8)|!(IE)]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<title>SOLAR UCL - Publications</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/layout.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GE87XRDE39"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-GE87XRDE39');
</script>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta http-equiv="Content-Type" content="text/html; charset=MacRoman">
<script type="text/javascript">
// QuickSearch script for JabRef HTML export
// Version: 3.0
//
// Copyright (c) 2006-2011, Mark Schenk
//
// This software is distributed under a Creative Commons Attribution 3.0 License
// http://creativecommons.org/licenses/by/3.0/
//
// Features:
// - intuitive find-as-you-type searching
// ~ case insensitive
// ~ ignore diacritics (optional)
//
// - search with/without Regular Expressions
// - match BibTeX key
//
// Search settings
var searchAbstract = true; // search in abstract
var searchReview = true; // search in review
var noSquiggles = true; // ignore diacritics when searching
var searchRegExp = false; // enable RegExp searches
if (window.addEventListener) {
window.addEventListener("load", initSearch, false);
}
else if (window.attachEvent) {
window.attachEvent("onload", initSearch);
}
function initSearch() {
// check for quick search table and searchfield
if (!document.getElementById('qs_table') || !document.getElementById('quicksearch')) { return; }
// load all the rows and sort into arrays
loadTableData();
//find the query field
qsfield = document.getElementById('qs_field');
// previous search term; used for speed optimisation
prevSearch = '';
//find statistics location
stats = document.getElementById('stat');
setStatistics(-1);
// set up preferences
initPreferences();
// shows the searchfield
document.getElementById('qs_field').onkeyup = quickSearch;
}
function loadTableData() {
// find table and appropriate rows
searchTable = document.getElementById('qs_table');
var allRows = searchTable.getElementsByTagName('tbody')[0].getElementsByTagName('tr');
// split all rows into entryRows and infoRows (e.g. abstract, review, bibtex)
entryRows = new Array(); infoRows = new Array(); absRows = new Array(); revRows = new Array();
// get data from each row
entryRowsData = new Array(); absRowsData = new Array(); revRowsData = new Array();
BibTeXKeys = new Array();
for (var i = 0, k = 0, j = 0; i < allRows.length; i++) {
if (allRows[i].className.match(/entry/)) {
entryRows[j] = allRows[i];
entryRowsData[j] = stripDiacritics(getTextContent(allRows[i]));
allRows[i].id ? BibTeXKeys[j] = allRows[i].id : allRows[i].id = 'autokey_' + j;
j++;
} else {
infoRows[k++] = allRows[i];
// check for abstract/review
if (allRows[i].className.match(/abstract/)) {
absRows.push(allRows[i]);
absRowsData[j - 1] = stripDiacritics(getTextContent(allRows[i]));
} else if (allRows[i].className.match(/review/)) {
revRows.push(allRows[i]);
revRowsData[j - 1] = stripDiacritics(getTextContent(allRows[i]));
}
}
}
//number of entries and rows
numEntries = entryRows.length;
numInfo = infoRows.length;
numAbs = absRows.length;
numRev = revRows.length;
}
function quickSearch() {
tInput = qsfield;
if (tInput.value.length == 0) {
showAll();
setStatistics(-1);
qsfield.className = '';
return;
} else {
t = stripDiacritics(tInput.value);
if (!searchRegExp) { t = escapeRegExp(t); }
// only search for valid RegExp
try {
textRegExp = new RegExp(t, "i");
closeAllInfo();
qsfield.className = '';
}
catch (err) {
prevSearch = tInput.value;
qsfield.className = 'invalidsearch';
return;
}
}
// count number of hits
var hits = 0;
// start looping through all entry rows
for (var i = 0; cRow = entryRows[i]; i++) {
// only show search the cells if it isn't already hidden OR if the search term is getting shorter, then search all
if (cRow.className.indexOf('noshow') == -1 || tInput.value.length <= prevSearch.length) {
var found = false;
if (entryRowsData[i].search(textRegExp) != -1 || BibTeXKeys[i].search(textRegExp) != -1) {
found = true;
} else {
if (searchAbstract && absRowsData[i] != undefined) {
if (absRowsData[i].search(textRegExp) != -1) { found = true; }
}
if (searchReview && revRowsData[i] != undefined) {
if (revRowsData[i].search(textRegExp) != -1) { found = true; }
}
}
if (found) {
cRow.className = 'entry show';
hits++;
} else {
cRow.className = 'entry noshow';
}
}
}
// update statistics
setStatistics(hits)
// set previous search value
prevSearch = tInput.value;
}
// Strip Diacritics from text
// http://stackoverflow.com/questions/990904/javascript-remove-accents-in-strings
// String containing replacement characters for stripping accents
var stripstring =
'AAAAAAACEEEEIIII' +
'DNOOOOO.OUUUUY..' +
'aaaaaaaceeeeiiii' +
'dnooooo.ouuuuy.y' +
'AaAaAaCcCcCcCcDd' +
'DdEeEeEeEeEeGgGg' +
'GgGgHhHhIiIiIiIi' +
'IiIiJjKkkLlLlLlL' +
'lJlNnNnNnnNnOoOo' +
'OoOoRrRrRrSsSsSs' +
'SsTtTtTtUuUuUuUu' +
'UuUuWwYyYZzZzZz.';
function stripDiacritics(str) {
if (noSquiggles == false) {
return str;
}
var answer = '';
for (var i = 0; i < str.length; i++) {
var ch = str[i];
var chindex = ch.charCodeAt(0) - 192; // Index of character code in the strip string
if (chindex >= 0 && chindex < stripstring.length) {
// Character is within our table, so we can strip the accent...
var outch = stripstring.charAt(chindex);
// ...unless it was shown as a '.'
if (outch != '.') ch = outch;
}
answer += ch;
}
return answer;
}
// http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex
// NOTE: must escape every \ in the export code because of the JabRef Export...
function escapeRegExp(str) {
return str.replace(/[-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
}
function toggleInfo(articleid, info) {
var entry = document.getElementById(articleid);
var abs = document.getElementById('abs_' + articleid);
var rev = document.getElementById('rev_' + articleid);
var bib = document.getElementById('bib_' + articleid);
if (abs && info == 'abstract') {
abs.className.indexOf('noshow') == -1 ? abs.className = 'abstract noshow' : abs.className = 'abstract show';
} else if (rev && info == 'review') {
rev.className.indexOf('noshow') == -1 ? rev.className = 'review noshow' : rev.className = 'review show';
} else if (bib && info == 'bibtex') {
bib.className.indexOf('noshow') == -1 ? bib.className = 'bibtex noshow' : bib.className = 'bibtex show';
} else {
return;
}
// check if one or the other is available
var revshow; var absshow; var bibshow;
(abs && abs.className.indexOf('noshow') == -1) ? absshow = true : absshow = false;
(rev && rev.className.indexOf('noshow') == -1) ? revshow = true : revshow = false;
(bib && bib.className.indexOf('noshow') == -1) ? bibshow = true : bibshow = false;
// highlight original entry
if (entry) {
if (revshow || absshow || bibshow) {
entry.className = 'entry highlight show';
} else {
entry.className = 'entry show';
}
}
// When there's a combination of abstract/review/bibtex showing, need to add class for correct styling
if (absshow) {
(revshow || bibshow) ? abs.className = 'abstract nextshow' : abs.className = 'abstract';
}
if (revshow) {
bibshow ? rev.className = 'review nextshow' : rev.className = 'review';
}
}
function setStatistics(hits) {
if (hits < 0) { hits = numEntries; }
if (stats) { stats.firstChild.data = hits + '/' + numEntries }
}
function getTextContent(node) {
// Function written by Arve Bersvendsen
// http://www.virtuelvis.com
if (node.nodeType == 3) {
return node.nodeValue;
} // text node
if (node.nodeType == 1 && node.className != "infolinks") { // element node
var text = [];
for (var chld = node.firstChild; chld; chld = chld.nextSibling) {
text.push(getTextContent(chld));
}
return text.join("");
} return ""; // some other node, won't contain text nodes.
}
function showAll() {
closeAllInfo();
for (var i = 0; i < numEntries; i++) { entryRows[i].className = 'entry show'; }
}
function closeAllInfo() {
for (var i = 0; i < numInfo; i++) {
if (infoRows[i].className.indexOf('noshow') == -1) {
infoRows[i].className = infoRows[i].className + ' noshow';
}
}
}
function clearQS() {
qsfield.value = '';
showAll();
}
function redoQS() {
showAll();
quickSearch(qsfield);
}
function updateSetting(obj) {
var option = obj.id;
var checked = obj.value;
switch (option) {
case "opt_searchAbs":
searchAbstract = !searchAbstract;
redoQS();
break;
case "opt_searchRev":
searchReview = !searchReview;
redoQS();
break;
case "opt_useRegExp":
searchRegExp = !searchRegExp;
redoQS();
break;
case "opt_noAccents":
noSquiggles = !noSquiggles;
loadTableData();
redoQS();
break;
}
}
function initPreferences() {
if (searchAbstract) { document.getElementById("opt_searchAbs").checked = true; }
if (searchReview) { document.getElementById("opt_searchRev").checked = true; }
if (noSquiggles) { document.getElementById("opt_noAccents").checked = true; }
if (searchRegExp) { document.getElementById("opt_useRegExp").checked = true; }
if (numAbs == 0) { document.getElementById("opt_searchAbs").parentNode.style.display = 'none'; }
if (numRev == 0) { document.getElementById("opt_searchRev").parentNode.style.display = 'none'; }
}
function toggleSettings() {
var togglebutton = document.getElementById('showsettings');
var settings = document.getElementById('settings');
if (settings.className == "hidden") {
settings.className = "show";
togglebutton.innerText = "close settings";
togglebutton.textContent = "close settings";
} else {
settings.className = "hidden";
togglebutton.innerText = "settings...";
togglebutton.textContent = "settings...";
}
}
</script>
<style type="text/css">
.table-shape {
background-color: white;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 13px;
line-height: 1.2;
padding: 1em;
color: #2E2E2E;
margin: auto 2em;
}
form#quicksearch {
width: 100%;
border-style: solid;
border-color: gray;
padding: 0.7em 0.5em;
}
span#searchstat {
padding-left: 3em;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 20px;
}
form#quicksearch .clear-button {
width: 100%;
/* margin-left: 15em; */
}
div#settings {
margin-top: 0.7em;
/* border-bottom: 1px transparent solid; background-color: #efefef; border: 1px grey solid; */
}
div#settings ul {
margin: 0;
padding: 0;
}
div#settings li {
margin: 0;
padding: 0 1em 0 0;
display: inline;
list-style: none;
}
div#settings li+li {
border-left: 2px #efefef solid;
padding-left: 0.5em;
}
div#settings input {
margin-bottom: 0px;
}
div#settings.hidden {
display: none;
}
#showsettings {
border: 1px grey solid;
padding: 0 0.5em;
float: right;
line-height: 1.6em;
text-align: right;
}
#showsettings:hover {
cursor: pointer;
}
.invalidsearch {
background-color: rgb(155, 24, 24);
}
input[type="button"] {
background-color: #0087A2;
}
table {
width: 100%;
empty-cells: show;
margin: 1em 0em;
border: solid 6px #878787 !important;
}
th,
td {
border: 1px gray solid;
border-width: 1px 1px;
padding: 0.5em;
vertical-align: top;
text-align: left;
}
th {
background-color: #efefef;
}
th {
color: #0087A2;
}
td+td,
th+th {
border-left: none;
}
td a {
color: #f06e18;
text-decoration: none;
}
td a:hover {
text-decoration: underline;
}
tr.noshow {
display: none;
}
tr.highlight td {
background-color: #EFEFEF;
border: 2px #878787 solid;
font-weight: bold;
}
tr.abstract td,
tr.review td,
tr.bibtex td {
background-color: #EFEFEF;
text-align: justify;
border: solid 2px #878787 !important;
}
tr.nextshow td {
border: solid 3px #878787 !important;
}
tr.bibtex pre {
width: 100%;
overflow: auto;
white-space: pre-wrap;
}
p.infolinks {
margin: 0.3em 0em 0em 0em;
padding: 0px;
}
@media print {
p.infolinks,
#qs_settings,
#quicksearch,
t.bibtex {
display: none !important;
}
tr {
page-break-inside: avoid;
}
}
</style>
</head>
<body class="no-sidebar is-preload">
<div id="page-wrapper">
<section id="header">
<div class="container-noline">
<!-- Logo -->
<!-- <div> <img id="logo-join-img" src="images/join-us-logo.png" alt="" /> </div> -->
<h1 class="join-h1"> SOLAR Publications</h1>
<br>
<!-- <p>Fully funded PhD scholarship available, click <a href="http://www0.cs.ucl.ac.uk/staff/F.Sarro/PhDScholarship.html"> here </a> for more info. </p>
-->
<logo-sec id="logo-sec">
<!-- <a href = "index.html"> <span><img class="s-logo" src="images/s-logo.png"> <img id = "thisImg" class="o-logo" src="images/solar-members-logo.png" alt="img"> <img class="lar-logo" src="images/lar-logo.png"> </span></a> -->
<a href="index.html"> <span><img id="thisImg" class="o-logo" src="images/publications-logo.png"
alt="img"> </span></a>
</logo-sec>
<!-- Nav -->
<nav id="nav">
<ul>
<!-- <li><a class="icon solid fa-home" href="index.html"><span>SOLAR</span></a></li> -->
<li>
<a href="research.html" class="icon fa-chart-bar"><span>Research</span></a>
</li>
<li>
<a class="icon solid fa-box-open" href="os.html"><span>Open Science</span></a>
</li>
<!-- <ul>
<li><a href="#">Software Analytics</a></li>
<li><a href="#">Search-Based Software Engineering</a></li>
<li><a href="#">Optimization</a></li>
-->
<!-- <li>
<a href="#">Phasellus consequat</a>
<ul>
<li><a href="#">Magna phasellus</a></li>
<li><a href="#">Etiam dolore nisl</a></li>
<li><a href="#">Phasellus consequat</a></li>
</ul>
</li>
<li><a href="#">Veroeros feugiat</a></li> -->
<!-- </ul> -->
</li>
<li><a class="icon solid fa-bookmark" href="#"><span>Publications</span></a></li>
<li><a class="icon solid fa-medal" href="awards.html"><span>Awards</span></a></li>
<li><a class="icon solid fa-users" href="members.html"><span>Team</span></a></li>
<li><a class="icon solid fa-hand-holding-usd" href="funding.html"><span>Funding</span></a></li>
<li><a class="icon solid fa-user-plus" href="join-us.html"><span>Join Us!</span></a></li>
</ul>
</nav>
</div>
</section>
<!-- latest article
================================================== -->
<section id="features">
<div class="container">
<form action="" id="quicksearch">
<div class="row aln-center">
<div class="col-4">
<input class="search-input" type="text" id="qs_field" autocomplete="off"
placeholder="Type to search..." />
</div>
<div class="col-4 off-1-right">
<span id="searchstat"> Matching entries: <span id="stat">0</span></span>
</div>
<div class="col-3">
<input class="clear-button" type="button" onclick="clearQS()" value="clear" />
</div>
<!-- <div id="showsettings" onclick="toggleSettings()">settings...</div> -->
<div id="settings" class="hidden">
<ul>
<li><input type="checkbox" class="search_setting" id="opt_searchAbs"
onchange="updateSetting(this)"><label for="opt_searchAbs"> include
abstract</label></li>
<li><input type="checkbox" class="search_setting" id="opt_searchRev"
onchange="updateSetting(this)"><label for="opt_searchRev"> include
review</label></li>
<li><input type="checkbox" class="search_setting" id="opt_useRegExp"
onchange="updateSetting(this)"><label for="opt_useRegExp"> use RegExp</label>
</li>
<li><input type="checkbox" class="search_setting" id="opt_noAccents"
onchange="updateSetting(this)"><label for="opt_noAccents"> ignore
accents</label></li>
</ul>
</div>
</div>
</form>
<table id="qs_table" border="1">
<thead>
<tr>
<th width="20%">Author</th>
<th width="30%">Title</th>
<th width="5%">Year</th>
<th width="30%">Journal/Proceedings</th>
</tr>
</thead>
<tbody>
<!-- <tr id="KEY" class="entry">
<td>AUTHORS</td>
<td>TITLE<p class="infolinks">
[<a href="javascript:toggleInfo('KEY','bibtex')">BibTeX</a>]
[<a href="URL">URL</a>]
[<a href="PDF">PDF</a>]
</p>
</td>
<td>YEAR</td>
<td>VENUE</td>
</tr>
<tr id="bib_KEY" class="bibtex noshow">
<td colspan="6"><b>BibTeX</b>:
<pre>
</pre></td>
</tr> -->
<tr id="giordano2025saner" class="entry">
<td>Naman Ahuja, Yle Feng, Luming Li, Amisha Malik, Thuvaragan Sivayoganathan, Navveen Balani, Srinivasan Rakhunathan, Federica Sarro</td>
<td>
<p>
Automatically Assessing Software Architecture Compliance With Green Software Patterns
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="pdf/EcoDocSense_Greens2025.pdf">PDF</a>]
</p>
</td>
<td>2025</td>
<td>9th International Workshop on Green and Sustainable Software (GREENS’25)</td>
</tr>
<tr id="giordano2025saner" class="entry">
<td>Giordano d’Aloisio, Luca Traini, Federica Sarro and Antinisca Di Marco</td>
<td><p>
On the Compression of Language Models for Code: An Empirical Study on CodeBERT
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
<!-- [<a href="ADD PDF LINK LATER!">PDF</a>] -->
</p>
</td>
<td>2025</td>
<td>IEEE International Conference on Software Analysis, Evolution and Reengineering (SANER) 2025</td>
</tr>
<tr id="langdon:2024:ASE" class="entry">
<td>W. B. Langdon and David Clark</td>
<td><p>
Deep Imperative Mutations have Less Impact
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="http://www.cs.ucl.ac.uk/staff/W.Langdon/ftp/papers/langdon_2024_ASE.pdf">PDF</a>]
</p>
</td>
<td>2024</td>
<td>Automated Software Engineering</td>
</tr>
<tr id="langdon2024implicittestoraclesquantum" class="entry">
<td>William B. Langdon</td>
<td><p>
Implicit Test Oracles for Quantum Computing
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="pdf/langdon2024implicittestoraclesquantum.pdf">PDF</a>]
</p>
</td>
<td>2024</td>
<td><a href="https://arxiv.org/abs/2409.14076">arXiv 2409.14076</a></td>
</tr>
<tr id="Langdon:2024:EI" class="entry">
<td>W. B. Langdon and Daniel Hulme</td>
<td><p>
Sustaining Evolution for Shallow Embodied Intelligence
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="pdf/Langdon_2024_EI.pdf">PDF</a>]
</p>
</td>
<td>2024</td>
<td>Proceedings of 2024 International Conference on Embodied Intelligence, EI-2024</td>
</tr>
<tr id="understand-fairness" class="entry">
<td>Emeralda Sesari, Federica Sarro, and Ayushi Rastogi</td>
<td><p>
Understanding Fairness in Software Engineering: Insights from Stack Exchange Sites
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="https://conf.researchr.org/details/esem-2024/esem-2024-technical-track/20/Understanding-Fairness-in-Software-Engineering-Insights-from-Stack-Exchange-Sites">Conf. Preview</a>]
</p>
</td>
<td>2024</td>
<td>18th ACM/IEEE International Symposium on Empirical Software Engineering and Measurement (ESEM) - Technical Papers Track</td>
</tr>
<tr id="rcgvspcg" class="entry">
<td>Mar Zamorano López, África Domingo, Carlos Cetina, and Federica Sarro</td>
<td><p>
Game Software Engineering: A Controlled Experiment Comparing Automated Content Generation Techniques
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="https://conf.researchr.org/details/esem-2024/esem-2024-technical-track/23/Game-Software-Engineering-A-Controlled-Experiment-Comparing-Automated-Content-Genera">Conf. Preview</a>]
</p>
</td>
<td>2024</td>
<td>18th ACM/IEEE International Symposium on Empirical Software Engineering and Measurement (ESEM) - Technical Papers Track</td>
</tr>
<tr id="llm-quantum" class="entry">
<td>Giordano d'Aloisio, Sophie Fortz, Carol Hanna, Daniel Fortunato, Avner Bensoussan, Eñaut Mendiluze Usandizaga, and Federica Sarro</td>
<td><p>
Exploring LLM-Driven Explanations for Quantum Algorithms
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="https://conf.researchr.org/details/esem-2024/esem-2024-emerging-results-vision-and-reflection-papers/13/Exploring-LLM-Driven-Explanations-for-Quantum-Algorithms">Conf. Preview</a>]
</p>
</td>
<td>2024</td>
<td>18th ACM/IEEE International Symposium on Empirical Software Engineering and Measurement (ESEM) - Emerging Results, Vision and Reflection Papers Track</td>
</tr>
<tr id="synthesiscompare" class="entry">
<td>Dominik Sobania, Justyna Petke, Martin Briesch, and Franz Rothlauf</td>
<td><p>
A Comparison of Large Language Models and Genetic Programming for Program Synthesis
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="https://discovery.ucl.ac.uk/id/eprint/10192702/1/bare_jrnl_new_sample4.pdf">PDF</a>]
</p>
</td>
<td>2024</td>
<td>16th International Symposium on Search-Based Software Engineering (SSBSE) - Challenge Track</td>
</tr>
<tr id="fuzzingquantum" class="entry">
<td>Daniel Blackwell, Justyna Petke, Yazhuo Cao, and Avner Bensoussan</td>
<td><p>
Fuzzing-Based Differential Testing For Quantum Simulators
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="http://www0.cs.ucl.ac.uk/staff/J.Petke/papers/Blackwell_2024_SSBSEChallenge.pdf">PDF</a>]
</p>
</td>
<td>2024</td>
<td>16th International Symposium on Search-Based Software Engineering (SSBSE) - Challenge Track</td>
</tr>
<tr id="greenstableyolo" class="entry">
<td>Jingzhi Gong, Sisi Li, Giordano d’Aloisio, Zishuo Ding,
Yulong Ye, William B. Langdon, and Federica Sarro</td>
<td><p>
GreenStableYolo: Optimizing Inference Time and Image Quality of Text-to-Image Generation
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="pdf/GreenStableYolo.pdf">PDF</a>]
</p>
</td>
<td>2024</td>
<td>16th International Symposium on Search-Based Software Engineering (SSBSE) - Challenge Track</td>
</tr>
<tr id="mkechagia_emse_24" class="entry">
<td>Matias Martinez, Maria Kechagia, Anjana Perera, Justyna Petke, Federica Sarro, and Aldeida Aleti.</td>
<td><p>
Test-based Patch Clustering for Automatically-Generated Patches Assessment.
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="pdf/mkechagia_emse_24.pdf">PDF</a>]
</p>
</td>
<td>2024</td>
<td> Empirical Software Engineering (EMSE), An International Journal </td>
</tr>
<tr id="mkechagia_fse_24" class="entry">
<td>Justyna Petke, Matias Martinez, Maria Kechagia, Aldeida Aleti, and Federica Sarro</td>
<td><p>
The Patch Overfitting Problem in Automated Program Repair: Practical Magnitude and a Baseline for Realistic Benchmarking.
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="">PDF</a>]
</p>
</td>
<td>2024</td>
<td> International Conference on the Foundations of Software Engineering (FSE 2024). Ideas, Visions and Reflections Track. </td>
</tr>
<tr id="mkechagia_msr_24" class="entry">
<td>Saurabhsingh Rajput, Maria Kechagia, Federica Sarro, and Tushar Sharma</td>
<td><p>
Greenlight: Highlighting Tensorflow APIs energy footprint.
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="pdf/MSR2024_Greenlight.pdf">PDF</a>]
</p>
</td>
<td>2024</td>
<td> International Conference on Mining Software Repositories (MSR 2024). Data and Tool Showcase Track. </td>
</tr>
<tr id="fairnesstestingsurvey" class="entry">
<td>Zhenpeng Chen, Jie M. Zhang, Max Hort, Mark Harman, and Federica Sarro</td>
<td>Fairness Testing: A Comprehensive Survey and Analysis of Trends<p
class="infolinks">
[<a href="javascript:toggleInfo('fairnesstestingsurvey','bibtex')">BibTeX</a>]
[<a href="https://chenzhenpeng18.github.io/papers/TOSEM24-survey.pdf">PDF</a>]
</p>
</td>
<td>2024</td>
<td>ACM Transactions on Software Engineering and Methodology (TOSEM)</td>
</tr>
<tr id="bib_fairnesstestingsurvey" class="bibtex noshow">
<td colspan="6"><b>BibTeX</b>:
<pre>
@article{chen2022fairness,
title={Fairness testing: A comprehensive survey and analysis of trends},
author={Chen, Zhenpeng and Zhang, Jie M and Hort, Max and Harman, Mark and Sarro, Federica},
journal={ACM Transactions on Software Engineering and Methodology (TOSEM)},
year={2024}
}
</pre>
</td>
</tr>
<tr id="langdon:2024:GI" class="entry">
<td>William B. Langdon and David Clark</td>
<td><p>
Deep Mutations have Little Impact
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="pdf/langdon_2024_GI.pdf">PDF</a>]
</p>
</td>
<td>2024</td>
<td>13th International Workshop on Genetic Improvement </td>
</tr>
<tr id="callan:2024:GI" class="entry">
<td>James Callan, William B. Langdon and Justyna Petke</td>
<td><p>
On Reducing Network Usage with Genetic Improvement
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="pdf/callan_2024_GI.pdf">PDF</a>]
</p>
</td>
<td>2024</td>
<td>13th International Workshop on Genetic Improvement </td>
</tr>
<tr id="langdon:2024:EuroGP" class="entry">
<td>William B. Langdon and David Clark</td>
<td><p>
Genetic Improvement of Last Level Cache
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="pdf/langdon_2024_EuroGP.pdf">PDF</a>]
</p>
</td>
<td>2024</td>
<td>EuroGP 2024</td>
</tr>
<tr id="intersectional23" class="entry">
<td>David Williams, James Callan, Serkan Kirbas, Sergey Mechtaev, Justyna Petke, Thomas Prideaux-Ghee, Federica Sarro</td>
<td><p>
User-Centric Deployment of Automated Program Repair at Bloomberg
</p>
<p class="infolinks">
<!--[<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="pdf/B_Assist_pre-print.pdf">PDF</a>]
</p>
</td>
<td>2024</td>
<td>The 46th ACM/IEEE International Conference on Software Engineering (ICSE'24) SEIP Track </td>
</tr>
<tr id="intersectional23" class="entry">
<td>Zhenpeng Chen, Jie M. Zhang, Federica Sarro, and Mark Harman</td>
<td>Fairness Improvement with Multiple Protected Attributes: How Far Are We?<p
class="infolinks">
[<a href="javascript:toggleInfo('intersectional23','bibtex')">BibTeX</a>]
[<a href="https://chenzhenpeng18.github.io/papers/ICSE24.pdf">PDF</a>]
</p>
</td>
<td>2024</td>
<td>The 46th ACM/IEEE International Conference on Software Engineering (ICSE'24)</td>
</tr>
<tr id="FSE_industry_MS_2023" class="entry">
<td>Pengxiang Jin, Shenglin Zhang, Minghua Ma, Haozhe Li, Yu Kang, Liqun Li, Yudong Liu, Bo Qiao, Chaoyun Zhang, Pu Zhao, Shilin He,
Federica Sarro, Yingnong Dang, Saravan Rajmohan, Qingwei Lin, Dongmei Zhang </td>
<td>
Assess and Summarize: Improve Outage Understanding with Large Language Models
<p class="infolinks">
<!-- [<a href="javascript:toggleInfo('','bibtex')">BibTeX</a>] -->
[<a href="pdf/fse23industry_ms.pdf">PDF</a>]
</p>
</td>
<td>2023</td>
<td>ACM/IEEE Foundations of Software Engineering (FSE)</td>
</tr>