forked from uwsampa/research-group-web
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpublications.html
1860 lines (1591 loc) · 85.7 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>
<html>
<head>
<title>The Software Design Lab: Publications</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="/js/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/group.css">
<link rel="shortcut icon" href="/img/tsdl.ico" type="image/x-icon">
<link rel="stylesheet" href="/css/flipster.min.css">
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark bg-dark">
<div class="container" style="font-size: 1.35em !important;">
<div class="navbar-brand" style="font-size: 1.3em !important;">
<!--The Software Design Lab-->
<a href="/" class="">
<img src="/img/tsdlFondosOscuros.png" alt="TESDLA" id="logo">
</a>
</div>
<div class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item ">
<a class="nav-link" href="/">
Home
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/people.html">
People
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/teaching.html">
Teaching
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/research.html">
Research
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/development.html">
Development
</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="/publications.html">
Publications
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/code.html">
Code
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/contact.html">
Contact
</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container body-container" style="padding-top: 20px">
<!-- This is a bit nasty, but it basically says be a column first, and on larger screens be a spaced out row -->
<style>
ol.bibliography {
list-style: none;
padding-left: 0px;
}
ol li {
padding: 1rem;
background-color: rgba(0, 0, 0, 0.03);
margin-bottom: 0.25rem;
border: 1px black solid;
}
</style>
<style>
.modal-dialog{
max-width: 60vw !important;
}
</style>
<div class="row">
<div class="col-12">
<div class="form-group">
<label for="inputAddress">Filter articles</label>
<input type="text" class="form-control" id="search" placeholder="Search by title, author(s), conf/journal, year or doi">
</div>
</div>
</div>
<ol class="bibliography"><li><h5><span class="bibtitle">Enabling Mutant Generation for Open- and Closed-Source Android Apps.</span> <span class="bibyear">2020</span></h5>
<h6> <em class="bibsupporter">Supported by Google. Google Latin American Research Award (LARA) 2018-2020</em></h6>
<span class="bibauthor">Escobar-Velásquez, C. and Linares-Vásquez, M. and Bavota, G. and Tufano, M. and Moran, K. P. and Di Penta, M. and Vendome, C. and Bernal-Cárdenas, C. and Poshyvanyk, D..</span><br>
<em class="bibbook">IEEE Transactions on Software Engineering</em><br>
[<a href="https://doi.org/10.1109/TSE.2020.2982638"> doi: <span class="bibdoi">10.1109/TSE.2020.2982638</span> </a>]
[<a href="#" data-toggle="modal" data-target="#9052435"> Bibtex </a>]
<br>
<div class="modal fade" id="9052435" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Enabling Mutant Generation for Open- and Closed-Source Android Apps</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="9052435" id="id9052435" style="width:58vw" rows="13">
@article{9052435,
author = {{Escobar-Velásquez}, C. and {Linares-Vásquez}, M. and {Bavota}, G. and {Tufano}, M. and {Moran}, K. P. and {Di Penta}, M. and {Vendome}, C. and {Bernal-Cárdenas}, C. and {Poshyvanyk}, D.},
journal = {IEEE Transactions on Software Engineering},
title = {Enabling Mutant Generation for Open- and Closed-Source Android Apps},
year = {2020},
volume = {},
number = {},
doi = {10.1109/TSE.2020.2982638},
supporter = {Google},
supdetails = {Google Latin American Research Award (LARA) 2018-2020},
pages = {1-1}
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Investigating types and survivability of performance bugs in mobile apps.</span> <span class="bibyear">2020</span></h5>
<span class="bibauthor">Mazuera-Rozo, Alejandro and Trubiani, Catia and Linares-Vásquez, Mario and Bavota, Gabriele.</span><br>
<em class="bibbook">Empirical Software Engineering</em><br>
[<a href="https://doi.org/10.1007/s10664-019-09795-6"> doi: <span class="bibdoi">10.1007/s10664-019-09795-6</span> </a>]
[<a href="#" data-toggle="modal" data-target="#article"> Bibtex </a>]
<br>
<div class="modal fade" id="article" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Investigating types and survivability of performance bugs in mobile apps</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="article" id="idarticle" style="width:58vw" rows="11">
@article{article,
author = {Mazuera-Rozo, Alejandro and Trubiani, Catia and Linares-Vásquez, Mario and Bavota, Gabriele},
year = {2020},
month = mar,
pages = {1-43},
title = {Investigating types and survivability of performance bugs in mobile apps},
volume = {25},
journal = {Empirical Software Engineering},
doi = {10.1007/s10664-019-09795-6}
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Software Documentation: The Practitioners’ Perspective.</span> <span class="bibyear">2020</span></h5>
<span class="bibauthor">Aghajani, Emad and Nagy, Csaba and Linares-Vásquez, Mario and Moreno, Laura and Bavota, Gabriele and Lanza, Michele and Sheperd, David.</span><br>
<em class="bibbook">Proceedings of the 42nd International Conference on Software Engineering</em><br>
[<a href="https://doi.org/"> doi: <span class="bibdoi"></span> </a>]
[<a href="#" data-toggle="modal" data-target="#emad2020software"> Bibtex </a>]
<br>
<div class="modal fade" id="emad2020software" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Software Documentation: The Practitioners’ Perspective</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="emad2020software" id="idemad2020software" style="width:58vw" rows="9">
@inproceedings{emad2020software,
author = {Aghajani, Emad and Nagy, Csaba and Linares-V\'{a}squez, Mario and Moreno, Laura and Bavota, Gabriele and Lanza, Michele and Sheperd, David},
title = {Software Documentation: The Practitioners' Perspective},
booktitle = {Proceedings of the 42nd International Conference on Software Engineering},
series = {ICSE'20},
year = {2020},
location = {Seoul, South Korea}
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Urban Transformations and Health: Methods for TrUST—a Natural Experiment Evaluating the Impacts of a Mass Transit Cable Car in Bogotá, Colombia.</span> <span class="bibyear">2020</span></h5>
<span class="bibauthor">Sarmiento, Olga L. and Higuera-Mendieta, Diana and Wilches-Mogollon, Maria A. and Guzman, Luis A. and Rodríguez, Daniel A. and Morales, Ricardo and Méndez, Daniela and Bedoya, Claudia and Linares-Vásquez, Mario and Arévalo, Maria Isabel and Martínez-Herrera, Eliana and Montes, Felipe and Meisel, Jose D. and Useche, Andrés F. and García, Elizabeth and Triana, Camilo A. and Medaglia, Andrés L. and Hessel, Philipp and Arellana, Julian and Moncada, Carlos and King, Abby C. and Diez Roux, Ana V..</span><br>
<em class="bibbook">Frontiers in Public Health</em><br>
[<a href="https://doi.org/10.3389/fpubh.2020.00064"> doi: <span class="bibdoi">10.3389/fpubh.2020.00064</span> </a>]
[<a href="#" data-toggle="modal" data-target="#10.3389/fpubh.2020.00064"> Bibtex </a>]
<br>
<div class="modal fade" id="10.3389/fpubh.2020.00064" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Urban Transformations and Health: Methods for TrUST—a Natural Experiment Evaluating the Impacts of a Mass Transit Cable Car in Bogotá, Colombia</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="10.3389/fpubh.2020.00064" id="id10.3389/fpubh.2020.00064" style="width:58vw" rows="12">
@article{10.3389/fpubh.2020.00064,
author = {Sarmiento, Olga L. and Higuera-Mendieta, Diana and Wilches-Mogollon, Maria A. and Guzman, Luis A. and Rodríguez, Daniel A. and Morales, Ricardo and Méndez, Daniela and Bedoya, Claudia and Linares-Vásquez, Mario and Arévalo, Maria Isabel and Martínez-Herrera, Eliana and Montes, Felipe and Meisel, Jose D. and Useche, Andrés F. and García, Elizabeth and Triana, Camilo A. and Medaglia, Andrés L. and Hessel, Philipp and Arellana, Julian and Moncada, Carlos and King, Abby C. and Diez Roux, Ana V.},
title = {Urban Transformations and Health: Methods for TrUST—a Natural Experiment Evaluating the Impacts of a Mass Transit Cable Car in Bogotá, Colombia},
journal = {Frontiers in Public Health},
volume = {8},
pages = {64},
year = {2020},
url = {https://www.frontiersin.org/article/10.3389/fpubh.2020.00064},
doi = {10.3389/fpubh.2020.00064},
issn = {2296-2565}
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Hall-of-Apps: The Top Android Apps Metadata Archive.</span> <span class="bibyear">2020</span></h5>
<h6> <em class="bibsupporter">Supported by Google. Google Latin American Research Award (LARA) 2018-2020</em></h6>
<span class="bibauthor">Bello-Jiménez, Laura and Escobar-Velásquez, Camilo and Mojica-Hanke, Anamaria and Cortés-Fernández, Santiago and Linares-Vásquez, Mario.</span><br>
<em class="bibbook">Proceedings of the 17th International Conference on Mining Software Repositories</em><br>
[<a href="https://doi.org/"> doi: <span class="bibdoi"></span> </a>]
[<a href="#" data-toggle="modal" data-target="#bello2020hallOfApps"> Bibtex </a>]
[<a href="https://caev03.github.io/assets/pdfs/bello2020hallOfApps.pdf"> preprint </a> ]
<br>
<div class="modal fade" id="bello2020hallOfApps" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Hall-of-Apps: The Top Android Apps Metadata Archive</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="bello2020hallOfApps" id="idbello2020hallOfApps" style="width:58vw" rows="16">
@inproceedings{bello2020hallOfApps,
author = {Bello-Jim\'{e}nez, Laura and Escobar-Vel\'{a}squez, Camilo and Mojica-Hanke, Anamaria and Cort\'{e}s-Fern\'{a}ndez, Santiago and Linares-V\'{a}squez, Mario},
title = {Hall-of-Apps: The Top Android Apps Metadata Archive},
booktitle = {Proceedings of the 17th International Conference on Mining Software Repositories},
track = {Data Showcase},
series = {MSR'20},
year = {2020},
location = {Seoul, South Korea},
supporter = {Google},
supdetails = {Google Latin American Research Award (LARA) 2018-2020},
numpages = {4},
preprint = {https://caev03.github.io/assets/pdfs/bello2020hallOfApps.pdf},
online = {https://github.com/TheSoftwareDesignLab/hall-of-apps-tools},
selected = true
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Does Neuron Coverage Matter for Deep Reinforcement Learning? A Preliminary Study.</span> <span class="bibyear">2020</span></h5>
<span class="bibauthor">Trujillo, Miller and Linares-Vásquez, Mario and Escobar-Velásquez, Camilo and Dusparic, Ivana and Cardozo, Nicolás.</span><br>
<em class="bibbook">Proceedings of the 2nd Workshop on Testing for Deep Learning and Deep Learning for Testing</em><br>
[<a href="https://doi.org/"> doi: <span class="bibdoi"></span> </a>]
[<a href="#" data-toggle="modal" data-target="#trujillo2020neuron"> Bibtex </a>]
<br>
<div class="modal fade" id="trujillo2020neuron" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Does Neuron Coverage Matter for Deep Reinforcement Learning? A Preliminary Study</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="trujillo2020neuron" id="idtrujillo2020neuron" style="width:58vw" rows="12">
@inproceedings{trujillo2020neuron,
author = {Trujillo, Miller and Linares-V\'{a}squez, Mario and Escobar-Vel\'{a}squez, Camilo and Dusparic, Ivana and Cardozo, Nicol\'{a}s},
title = {Does Neuron Coverage Matter for Deep Reinforcement Learning? A Preliminary Study},
booktitle = {Proceedings of the 2nd Workshop on Testing for Deep Learning and Deep Learning for Testing},
track = {Research Track},
series = {DeepTest'20},
year = {2020},
location = {Seoul, South Korea},
numpages = {6},
selected = false
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Source-Codeless Testing for Android Apps.</span> <span class="bibyear">2020</span></h5>
<h6> <em class="bibsupporter">Supported by Google. Google Latin American Research Award (LARA) 2018-2020</em></h6>
<span class="bibauthor">Escobar-Velásquez, Camilo.</span><br>
<em class="bibbook">Proceedings of the 13th IEEE International Conference on Software Testing, Validation and Verification</em><br>
[<a href="https://doi.org/"> doi: <span class="bibdoi"></span> </a>]
[<a href="#" data-toggle="modal" data-target="#escobar2020source"> Bibtex </a>]
[<a href="https://caev03.github.io/assets/pdfs/escobar2020codeless.pdf"> preprint </a> ]
<br>
<div class="modal fade" id="escobar2020source" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Source-Codeless Testing for Android Apps</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="escobar2020source" id="idescobar2020source" style="width:58vw" rows="15">
@inproceedings{escobar2020source,
author = {Escobar-Vel\'{a}squez, Camilo},
title = {Source-Codeless Testing for Android Apps},
booktitle = {Proceedings of the 13th IEEE International Conference on Software Testing, Validation and Verification},
track = {Doctoral Symposium},
series = {ICST'20},
year = {2020},
supporter = {Google},
supdetails = {Google Latin American Research Award (LARA) 2018-2020},
location = {Porto, Portugal},
numpages = {2},
preprint = {https://caev03.github.io/assets/pdfs/escobar2020codeless.pdf},
selected = true
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Working Conditions for Software Developers in Colombia: An Effort-Reward-Imbalance-Based Study.</span> <span class="bibyear">2019</span></h5>
<span class="bibauthor">Moreno, Judy and Aponte, Jairo and Linares-Vásquez, Mario.</span><br>
<em class="bibbook">Product-Focused Software Process Improvement</em><br>
[<a href="https://doi.org/10.1007/978-3-030-35333-9_55"> doi: <span class="bibdoi">10.1007/978-3-030-35333-9_55</span> </a>]
[<a href="#" data-toggle="modal" data-target="#10.1007/978-3-030-35333-9_55"> Bibtex </a>]
<br>
<div class="modal fade" id="10.1007/978-3-030-35333-9_55" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Working Conditions for Software Developers in Colombia: An Effort-Reward-Imbalance-Based Study</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="10.1007/978-3-030-35333-9_55" id="id10.1007/978-3-030-35333-9_55" style="width:58vw" rows="13">
@inproceedings{10.1007/978-3-030-35333-9_55,
author = {Moreno, Judy and Aponte, Jairo and Linares-V{\'a}squez, Mario},
editor = {Franch, Xavier and M{\"a}nnist{\"o}, Tomi and Mart{\'i}nez-Fern{\'a}ndez, Silverio},
title = {Working Conditions for Software Developers in Colombia: An Effort-Reward-Imbalance-Based Study},
booktitle = {Product-Focused Software Process Improvement},
year = {2019},
publisher = {Springer International Publishing},
address = {Cham},
pages = {709--724},
isbn = {978-3-030-35333-9},
doi = {10.1007/978-3-030-35333-9_55}
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Automatically Assessing Code Understandability.</span> <span class="bibyear">2019</span></h5>
<span class="bibauthor">Scalabrino, S. and Bavota, G. and Vendome, C. and Linares-V?squez, M. and Poshyvanyk, D. and Oliveto, R..</span><br>
<em class="bibbook">IEEE Transactions on Software Engineering</em><br>
[<a href="https://doi.org/10.1109/TSE.2019.2901468"> doi: <span class="bibdoi">10.1109/TSE.2019.2901468</span> </a>]
[<a href="#" data-toggle="modal" data-target="#scalabrino2019automatically"> Bibtex </a>]
<br>
<div class="modal fade" id="scalabrino2019automatically" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Automatically Assessing Code Understandability</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="scalabrino2019automatically" id="idscalabrino2019automatically" style="width:58vw" rows="14">
@article{scalabrino2019automatically,
author = {{Scalabrino}, S. and {Bavota}, G. and {Vendome}, C. and {Linares-V?squez}, M. and {Poshyvanyk}, D. and {Oliveto}, R.},
journal = {IEEE Transactions on Software Engineering},
title = {Automatically Assessing Code Understandability},
year = {2019},
volume = {},
number = {},
pages = {1-1},
keywords = {Complexity theory;Software;Computer bugs;Readability metrics;Software measurement;Indexes;Software metrics;Code understandability;Empirical study;Negative result},
doi = {10.1109/TSE.2019.2901468},
issn = {2326-3881},
month = {}
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">MutAPK: Source-Codeless Mutant Generation for Android Apps.</span> <span class="bibyear">2019</span></h5>
<h6> <em class="bibsupporter">Supported by Google. Google Latin American Research Award (LARA) 2018-2020</em></h6>
<span class="bibauthor">Escobar-Velásquez, C. and Osorio-Riaño, M. and Linares-Vásquez, M..</span><br>
<em class="bibbook">2019 34th IEEE/ACM International Conference on Automated Software Engineering (ASE)</em><br>
[<a href="https://doi.org/10.1109/ASE.2019.00109"> doi: <span class="bibdoi">10.1109/ASE.2019.00109</span> </a>]
[<a href="#" data-toggle="modal" data-target="#escobar2019mutapk"> Bibtex </a>]
<br>
<div class="modal fade" id="escobar2019mutapk" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">MutAPK: Source-Codeless Mutant Generation for Android Apps</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="escobar2019mutapk" id="idescobar2019mutapk" style="width:58vw" rows="16">
@inproceedings{escobar2019mutapk,
author = {{Escobar-Velásquez}, C. and {Osorio-Riaño}, M. and {Linares-Vásquez}, M.},
booktitle = {2019 34th IEEE/ACM International Conference on Automated Software Engineering (ASE)},
title = {MutAPK: Source-Codeless Mutant Generation for Android Apps},
year = {2019},
volume = {},
number = {},
pages = {1090-1093},
supporter = {Google},
supdetails = {Google Latin American Research Award (LARA) 2018-2020},
keywords = {Mutation Testing, Closed Source Apps, Android},
doi = {10.1109/ASE.2019.00109},
issn = {1938-4300},
month = nov
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">OPIA: A Tool for On-Device Testing of Vulnerabilities in Android Applications.</span> <span class="bibyear">2019</span></h5>
<h6> <em class="bibsupporter">Supported by Google. Google Latin American Research Award (LARA) 2018-2020</em></h6>
<span class="bibauthor">Bello-Jiménez, L. and Mazuera-Rozo, A. and Linares-Vásquez, M. and Bavota, G..</span><br>
<em class="bibbook">2019 IEEE International Conference on Software Maintenance and Evolution (ICSME)</em><br>
[<a href="https://doi.org/10.1109/ICSME.2019.00073"> doi: <span class="bibdoi">10.1109/ICSME.2019.00073</span> </a>]
[<a href="#" data-toggle="modal" data-target="#bello2019opia"> Bibtex </a>]
<br>
<div class="modal fade" id="bello2019opia" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">OPIA: A Tool for On-Device Testing of Vulnerabilities in Android Applications</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="bello2019opia" id="idbello2019opia" style="width:58vw" rows="16">
@inproceedings{bello2019opia,
author = {{Bello-Jiménez}, L. and {Mazuera-Rozo}, A. and {Linares-Vásquez}, M. and {Bavota}, G.},
booktitle = {2019 IEEE International Conference on Software Maintenance and Evolution (ICSME)},
title = {OPIA: A Tool for On-Device Testing of Vulnerabilities in Android Applications},
year = {2019},
volume = {},
number = {},
pages = {418-421},
supporter = {Google},
supdetails = {Google Latin American Research Award (LARA) 2018-2020},
keywords = {Android (operating system);cryptography;data integrity;data privacy;mobile computing;program testing;software maintenance;software quality;SQL;sensitive information;OPIA;android applications;mobile developers;users pressure;quality attributes;testing security vulnerabilities;mobile apps;on-device security testing;conduct SQL-injection attacks;record-and-replay testing;Data mining;Tools;Testing;NoSQL databases;Androids;Humanoid robots;security;Android;testing;confidentiality},
doi = {10.1109/ICSME.2019.00073},
issn = {1063-6773},
month = sep
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Can Everyone use my app? An Empirical Study on Accessibility in Android Apps.</span> <span class="bibyear">2019</span></h5>
<h6> <em class="bibsupporter">Supported by Google. Google Latin American Research Award (LARA) 2018-2020</em></h6>
<span class="bibauthor">Vendome, C. and Solano, D. and Liñán, S. and Linares-Vásquez, M..</span><br>
<em class="bibbook">2019 IEEE International Conference on Software Maintenance and Evolution (ICSME)</em><br>
[<a href="https://doi.org/10.1109/ICSME.2019.00014"> doi: <span class="bibdoi">10.1109/ICSME.2019.00014</span> </a>]
[<a href="#" data-toggle="modal" data-target="#vendome2019accessibility"> Bibtex </a>]
<br>
<div class="modal fade" id="vendome2019accessibility" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Can Everyone use my app? An Empirical Study on Accessibility in Android Apps</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="vendome2019accessibility" id="idvendome2019accessibility" style="width:58vw" rows="17">
@inproceedings{vendome2019accessibility,
author = {{Vendome}, C. and {Solano}, D. and {Liñán}, S. and {Linares-Vásquez}, M.},
booktitle = {2019 IEEE International Conference on Software Maintenance and Evolution (ICSME)},
title = {Can Everyone use my app? An Empirical Study on Accessibility in Android Apps},
year = {2019},
volume = {},
number = {},
pages = {41-52},
supporter = {Google},
supdetails = {Google Latin American Research Award (LARA) 2018-2020},
keywords = {application program interfaces;data mining;handicapped aids;information retrieval;mobile computing;product design;Web sites;mining-based pilot study;accessibility APIs;Android apps;universal design principles;product designs;mobile apps;StackOverflow;formal open-coding;Androids;Humanoid robots;Tools;Guidelines;Sociology;Statistics;Mobile handsets;Empirical Studies;Mobile Accessibility;Universal Design},
doi = {10.1109/ICSME.2019.00014},
url = {10.1109/ICSME.2019.00014},
issn = {1063-6773},
month = sep
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Kraken-Mobile: Cross-Device Interaction-Based Testing of Android Apps.</span> <span class="bibyear">2019</span></h5>
<h6> <em class="bibsupporter">Supported by Google. Google Latin American Research Award (LARA) 2018-2020</em></h6>
<span class="bibauthor">Ravelo-Méndez, W. and Escobar-Vélasquez, C. and Linares-Vásquez, M..</span><br>
<em class="bibbook">2019 IEEE International Conference on Software Maintenance and Evolution (ICSME)</em><br>
[<a href="https://doi.org/10.1109/ICSME.2019.00071"> doi: <span class="bibdoi">10.1109/ICSME.2019.00071</span> </a>]
[<a href="#" data-toggle="modal" data-target="#ravelo2019kraken"> Bibtex </a>]
<br>
<div class="modal fade" id="ravelo2019kraken" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Kraken-Mobile: Cross-Device Interaction-Based Testing of Android Apps</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="ravelo2019kraken" id="idravelo2019kraken" style="width:58vw" rows="17">
@inproceedings{ravelo2019kraken,
author = {{Ravelo-Méndez}, W. and {Escobar-Vélasquez}, C. and {Linares-Vásquez}, M.},
booktitle = {2019 IEEE International Conference on Software Maintenance and Evolution (ICSME)},
title = {Kraken-Mobile: Cross-Device Interaction-Based Testing of Android Apps},
year = {2019},
volume = {},
number = {},
pages = {410-413},
supporter = {Google},
supdetails = {Google Latin American Research Award (LARA) 2018-2020},
keywords = {Android (operating system);mobile computing;program testing;public domain software;smart phones;software tools;high-quality cross-device apps;cross-device testing tool;validate test scenarios;tests scripts;Kraken-mobile;mobile applications;Android apps;Gherkin syntax;cross-device interaction-based testing;Testing;Engines;Tools;Graphical user interfaces;Androids;Humanoid robots;Automation;Signaling;Automated Testing;Cross-device Testing;Cross-application Testing},
doi = {10.1109/ICSME.2019.00071},
url = {https://doi.org/10.1109/ICSME.2019.00071},
issn = {1063-6773},
month = sep
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Perspectives in Testing Deep RL.</span> <span class="bibyear">2019</span></h5>
<span class="bibauthor">Cardozo, Nicolás and Dusparic, Ivana and Linares-Vásquez, Mario.</span><br>
<em class="bibbook">2019 1st International Workshop on Testing for Deep Learning and Deep Learning for Testing</em><br>
[<a href="https://doi.org/10.13140/RG.2.2.21572.68483"> doi: <span class="bibdoi">10.13140/RG.2.2.21572.68483</span> </a>]
[<a href="#" data-toggle="modal" data-target="#cardozo2019deep"> Bibtex </a>]
<br>
<div class="modal fade" id="cardozo2019deep" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Perspectives in Testing Deep RL</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="cardozo2019deep" id="idcardozo2019deep" style="width:58vw" rows="11">
@inproceedings{cardozo2019deep,
author = {Cardozo, Nicolás and Dusparic, Ivana and Linares-Vásquez, Mario},
year = {2019},
month = may,
pages = {},
booktitle = {2019 1st International Workshop on Testing for Deep Learning and Deep Learning for Testing},
title = {Perspectives in Testing Deep RL},
url = {https://doi.org/10.13140/RG.2.2.21572.68483},
doi = {10.13140/RG.2.2.21572.68483}
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Data-Driven Solutions to Detect API Compatibility Issues in Android: An Empirical Study.</span> <span class="bibyear">2019</span></h5>
<span class="bibauthor">Scalabrino, S. and Bavota, G. and Linares-Vásquez, M. and Lanza, M. and Oliveto, R..</span><br>
<em class="bibbook">2019 IEEE/ACM 16th International Conference on Mining Software Repositories (MSR)</em><br>
[<a href="https://doi.org/10.1109/MSR.2019.00055"> doi: <span class="bibdoi">10.1109/MSR.2019.00055</span> </a>]
[<a href="#" data-toggle="modal" data-target="#scalabrino2019msr"> Bibtex </a>]
<br>
<div class="modal fade" id="scalabrino2019msr" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Data-Driven Solutions to Detect API Compatibility Issues in Android: An Empirical Study</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="scalabrino2019msr" id="idscalabrino2019msr" style="width:58vw" rows="15">
@inproceedings{scalabrino2019msr,
author = {{Scalabrino}, S. and {Bavota}, G. and {Linares-Vásquez}, M. and {Lanza}, M. and {Oliveto}, R.},
booktitle = {2019 IEEE/ACM 16th International Conference on Mining Software Repositories (MSR)},
title = {Data-Driven Solutions to Detect API Compatibility Issues in Android: An Empirical Study},
year = {2019},
volume = {},
number = {},
pages = {288-298},
url = {https://doi.org/10.1109/MSR.2019.00055},
keywords = {Android (operating system);application program interfaces;learning (artificial intelligence);mobile computing;Android apps;data-driven approach;API compatibility issues;official Android API;CiD;ACRYL;Android;API Compatibility Issues;Empirical Study},
doi = {10.1109/MSR.2019.00055},
issn = {2574-3848},
month = may
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">The Android OS stack and its vulnerabilities: an empirical study.</span> <span class="bibyear">2019</span></h5>
<span class="bibauthor">Mazuera-Rozo, Alejandro and Bautista-Mora, Jairo and Linares-Vásquez, Mario and Rueda, Sandra and Bavota, Gabriele.</span><br>
<em class="bibbook">Empirical Software Engineering</em><br>
[<a href="https://doi.org/10.1007/s10664-019-09689-7"> doi: <span class="bibdoi">10.1007/s10664-019-09689-7</span> </a>]
[<a href="#" data-toggle="modal" data-target="#mazuera2019vulnerabilities"> Bibtex </a>]
<br>
<div class="modal fade" id="mazuera2019vulnerabilities" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">The Android OS stack and its vulnerabilities: an empirical study</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="mazuera2019vulnerabilities" id="idmazuera2019vulnerabilities" style="width:58vw" rows="11">
@article{mazuera2019vulnerabilities,
doi = {10.1007/s10664-019-09689-7},
url = {https://doi.org/10.1007/s10664-019-09689-7},
year = {2019},
month = feb,
publisher = {Springer Nature},
author = {Mazuera-Rozo, Alejandro and Bautista-Mora, Jairo and Linares-V{\'{a}}squez, Mario and Rueda, Sandra and Bavota, Gabriele},
title = {The Android {OS} stack and its vulnerabilities: an empirical study},
journal = {Empirical Software Engineering}
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Automated Documentation of Android Apps.</span> <span class="bibyear">2019</span></h5>
<span class="bibauthor">Aghajani, E. and Bavota, G. and Linares-Vásquez, M. and Lanza, M..</span><br>
<em class="bibbook">IEEE Transactions on Software Engineering</em><br>
[<a href="https://doi.org/10.1109/TSE.2018.2890652"> doi: <span class="bibdoi">10.1109/TSE.2018.2890652</span> </a>]
[<a href="#" data-toggle="modal" data-target="#aghajani2019tse"> Bibtex </a>]
<br>
<div class="modal fade" id="aghajani2019tse" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Automated Documentation of Android Apps</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="aghajani2019tse" id="idaghajani2019tse" style="width:58vw" rows="14">
@article{aghajani2019tse,
author = {{Aghajani}, E. and {Bavota}, G. and {Linares-Vásquez}, M. and {Lanza}, M.},
journal = {IEEE Transactions on Software Engineering},
title = {Automated Documentation of Android Apps},
year = {2019},
volume = {},
number = {},
pages = {1-1},
keywords = {Knowledge based systems;Documentation;Java;Cloning;Asia;Task analysis;Data mining;Program Comprehension;Documentation;Android},
doi = {10.1109/TSE.2018.2890652},
issn = {2326-3881},
month = {}
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Software Documentation Issues Unveiled.</span> <span class="bibyear">2019</span></h5>
<span class="bibauthor">Aghajani, E. and Nagy, C. and Vega-Márquez, O. L. and Linares-Vásquez, M. and Moreno, L. and Bavota, G. and Lanza, M..</span><br>
<em class="bibbook">2019 IEEE/ACM 41st International Conference on Software Engineering (ICSE)</em><br>
[<a href="https://doi.org/"> doi: <span class="bibdoi"></span> </a>]
[<a href="#" data-toggle="modal" data-target="#8811931"> Bibtex </a>]
<br>
<div class="modal fade" id="8811931" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Software Documentation Issues Unveiled</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="8811931" id="id8811931" style="width:58vw" rows="10">
@inproceedings{8811931,
author = {{Aghajani}, E. and {Nagy}, C. and {Vega-Márquez}, O. L. and {Linares-Vásquez}, M. and {Moreno}, L. and {Bavota}, G. and {Lanza}, M.},
booktitle = {2019 IEEE/ACM 41st International Conference on Software Engineering (ICSE)},
title = {Software Documentation Issues Unveiled},
year = {2019},
volume = {},
number = {},
pages = {1199-1210}
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Crowdsourcing user reviews to support the evolution of mobile apps.</span> <span class="bibyear">2018</span></h5>
<span class="bibauthor">Palomba, Fabio and Linares-Vásquez, Mario and Bavota, Gabriele and Oliveto, Rocco and Penta, Massimiliano Di and Poshyvanyk, Denys and Lucia, Andrea De.</span><br>
<em class="bibbook">Journal of Systems and Software</em><br>
[<a href="https://doi.org/10.1016/j.jss.2017.11.043"> doi: <span class="bibdoi">10.1016/j.jss.2017.11.043</span> </a>]
[<a href="#" data-toggle="modal" data-target="#palomba2018jss"> Bibtex </a>]
<br>
<div class="modal fade" id="palomba2018jss" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Crowdsourcing user reviews to support the evolution of mobile apps</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="palomba2018jss" id="idpalomba2018jss" style="width:58vw" rows="13">
@article{palomba2018jss,
title = {Crowdsourcing user reviews to support the evolution of mobile apps},
journal = {Journal of Systems and Software},
volume = {137},
pages = {143 - 162},
year = {2018},
issn = {0164-1212},
doi = {10.1016/j.jss.2017.11.043},
url = {http://www.sciencedirect.com/science/article/pii/S0164121217302807},
author = {Palomba, Fabio and Linares-V\'{a}squez, Mario and Bavota, Gabriele and Oliveto, Rocco and Penta, Massimiliano Di and Poshyvanyk, Denys and Lucia, Andrea De},
keywords = {Mobile app evolution, User reviews, Mining app stores, Empirical study}
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Automated Extraction of Augmented Models for Android Apps.</span> <span class="bibyear">2018</span></h5>
<span class="bibauthor">Liñán, S. and Bello-Jiménez, L. and Arévalo, M. and Linares-Vásquez, M..</span><br>
<em class="bibbook">2018 IEEE International Conference on Software Maintenance and Evolution (ICSME)</em><br>
[<a href="https://doi.org/10.1109/ICSME.2018.00065"> doi: <span class="bibdoi">10.1109/ICSME.2018.00065</span> </a>]
[<a href="#" data-toggle="modal" data-target="#linan2018rip"> Bibtex </a>]
<br>
<div class="modal fade" id="linan2018rip" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Automated Extraction of Augmented Models for Android Apps</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="linan2018rip" id="idlinan2018rip" style="width:58vw" rows="14">
@inproceedings{linan2018rip,
author = {Li\~{n}\'{a}n, S. and Bello-Jim\'{e}nez, L. and Ar\'{e}valo, M. and Linares-V\'{a}squez, M.},
booktitle = {2018 IEEE International Conference on Software Maintenance and Evolution (ICSME)},
title = {Automated Extraction of Augmented Models for Android Apps},
year = {2018},
volume = {},
number = {},
pages = {549-553},
doi = {10.1109/ICSME.2018.00065},
url = {https://ieeexplore.ieee.org/document/8530063},
issn = {2576-3148},
month = sep
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Multi-Objective Optimization of Energy Consumption of GUIs in Android Apps.</span> <span class="bibyear">2018</span></h5>
<span class="bibauthor">Linares-Vásquez, Mario and Bavota, Gabriele and Bernal-Cárdenas, Carlos and Penta, Massimiliano Di and Oliveto, Rocco and Poshyvanyk, Denys.</span><br>
<em class="bibbook">ACM Trans. Softw. Eng. Methodol.</em><br>
[<a href="https://doi.org/10.1145/3241742"> doi: <span class="bibdoi">10.1145/3241742</span> </a>]
[<a href="#" data-toggle="modal" data-target="#linares2018tmooecgaa"> Bibtex </a>]
<br>
<div class="modal fade" id="linares2018tmooecgaa" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Multi-Objective Optimization of Energy Consumption of GUIs in Android Apps</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<textarea name="linares2018tmooecgaa" id="idlinares2018tmooecgaa" style="width:58vw" rows="21">
@article{linares2018tmooecgaa,
author = {Linares-V\'{a}squez, Mario and Bavota, Gabriele and Bernal-C\'{a}rdenas, Carlos and Penta, Massimiliano Di and Oliveto, Rocco and Poshyvanyk, Denys},
title = {Multi-Objective Optimization of Energy Consumption of GUIs in Android Apps},
journal = {ACM Trans. Softw. Eng. Methodol.},
issue_date = {October 2018},
volume = {27},
number = {3},
month = sep,
year = {2018},
issn = {1049-331X},
pages = {14:1--14:47},
articleno = {14},
numpages = {47},
url = {http://doi.acm.org/10.1145/3241742},
doi = {10.1145/3241742},
acmid = {3241742},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {Energy consumption, empirical study, mobile applications}
}
</textarea>
</div>
</div>
</div>
</div></li>
<li><h5><span class="bibtitle">Mutode: Generic JavaScript and Node.Js Mutation Testing Tool.</span> <span class="bibyear">2018</span></h5>
<span class="bibauthor">Rodríguez-Baquero, Diego and Linares-Vásquez, Mario.</span><br>
<em class="bibbook">Proceedings of the 27th ACM SIGSOFT International Symposium on Software Testing and Analysis</em><br>
[<a href="https://doi.org/10.1145/3213846.3229504"> doi: <span class="bibdoi">10.1145/3213846.3229504</span> </a>]
[<a href="#" data-toggle="modal" data-target="#rodriguez2018mutode"> Bibtex </a>]
<br>
<div class="modal fade" id="rodriguez2018mutode" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">