forked from program-repair/program-repair.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbenchmarks.html
More file actions
106 lines (103 loc) · 4.45 KB
/
benchmarks.html
File metadata and controls
106 lines (103 loc) · 4.45 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Automated Program Repair</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/user.css">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header"><a class="navbar-brand navbar-link" href="index.html"><i class="fa fa-cogs"></i> automated-program-repair.org</a>
<button class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navcol-1"><span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button>
</div>
<div class="collapse navbar-collapse" id="navcol-1">
<ul class="nav navbar-nav navbar-right">
<li role="presentation"><a href="index.html">Home </a></li>
<li role="presentation"><a href="bibliography.html">Bibliography</a></li>
<li role="presentation"><a href="tools.html">Tools </a></li>
<li class="active" role="presentation"><a href="benchmarks.html">Benchmarks </a></li>
<li role="presentation"><a href="about.html">About </a></li>
</ul>
</div>
</div>
</nav>
<section class="testimonials">
<div class="container">
<h1>ManyBugs</h1>
<div class="table-responsive tool-table">
<table class="table">
<thead>
<tr>
<th> </th>
<th> </th>
</tr>
</thead>
<tbody>
<tr>
<td>Description</td>
<td>Automated program repair benchmark that consists of 185 defects from large popular open-source projects</td>
</tr>
<tr>
<td>URL </td>
<td><a href="http://repairbenchmarks.cs.umass.edu"><span style="text-decoration: underline;">http://repairbenchmarks.cs.umass.edu</span></a> </td>
</tr>
<tr>
<td>Target</td>
<td>C source code</td>
</tr>
<tr>
<td>Related publication</td>
<td><strong>The ManyBugs and IntroClass Benchmarks for Automated Repair of C Programs</strong>, by C. L. Goues, N. Holtschulte, E. K. Smith, Y. Brun, P.Devanbu, S. Forrest, W. Weimer. <em>IEEE Transactions on Software Engineering (TSE)</em>.
2015 </td>
</tr>
</tbody>
</table>
</div>
<h1>IntroClass</h1>
<div class="table-responsive tool-table">
<table class="table">
<thead>
<tr>
<th> </th>
<th> </th>
</tr>
</thead>
<tbody>
<tr>
<td>Description</td>
<td>Automated program repair benchmark that consists of 998 defects in small student-written programming assignments</td>
</tr>
<tr>
<td>URL </td>
<td><a href="http://repairbenchmarks.cs.umass.edu"><span style="text-decoration: underline;">http://repairbenchmarks.cs.umass.edu</span></a> </td>
</tr>
<tr>
<td>Target</td>
<td>C source code</td>
</tr>
<tr>
<td>Related publication</td>
<td><strong>The ManyBugs and IntroClass Benchmarks for Automated Repair of C Programs</strong>, by C. L. Goues, N. Holtschulte, E. K. Smith, Y. Brun, P.Devanbu, S. Forrest, W. Weimer. <em>IEEE Transactions on Software Engineering (TSE)</em>.
2015 </td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<footer class="site-footer">
<div class="container">
<div class="row">
<div class="col-sm-6"></div>
<div class="col-sm-6 social-icons"><a href="https://github.com/automated-program-repair"><i class="fa fa-github-alt"></i></a></div>
</div>
</div>
</footer>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>