-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
168 lines (142 loc) · 4.25 KB
/
main.tex
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
\newif\ifsubmit
\submitfalse
%% 12 pp + bib
\documentclass[sigplan,screen,authorversion]{acmart}%
% Encoding and lang
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
% Graphical packages
\usepackage{graphicx}
% Math
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsthm}
% \usepackage{mathrsfs}
\usepackage{mathtools}
% \usepackage{textcomp}
% \usepackage{textgreek}
\usepackage{cmll}
\usepackage{mathpartir}
% Good citations and bibliography
\usepackage{natbib}
% % Pictures and latex lists
% \usepackage{wrapfig}
% \usepackage{float}
\usepackage{caption}
\usepackage{subcaption}
% \usepackage{placeins}
% \usepackage{array}
% \usepackage{paralist}
\usepackage{enumitem}% Compact lists
\usepackage{pifont}
\usepackage{dblfloatfix} % allow figure* at the bottom
% Specialized packages
% \usepackage{syntax} % Grammar definitions
\usepackage{verbatim}
\usepackage{listings} % Code
\usepackage{xspace} % Useful for macros
\usepackage{mathpartir}
\usepackage{textcomp}
\usepackage[noabbrev,nameinlink,capitalize]{cleveref}
\crefname{section}{\S}{\S}
% Custom macros
\input{prelude}
% Declare a new environment for floating examples. Used like figure.
% \usepackage{newfloat}
% \DeclareFloatingEnvironment[
% listname={List of Examples},
% name={Example},
% placement={!ht},
% ]{ex}
% \crefname{ex}{Example}{Examples}
% \Crefname{ex}{Example}{Examples}
% \crefname{subex}{Example}{Examples}
% \Crefname{subex}{Example}{Examples}
% Bibliography
\bibliographystyle{ACM-Reference-Format}
\citestyle{acmauthoryear}
\begin{document}
\copyrightyear{2018}
\acmYear{2018}
\setcopyright{licensedothergov}
\acmConference[GPCE '18]{Proceedings of the 17th ACM SIGPLAN International Conference on Generative Programming: Concepts and Experiences}{November 5--6, 2018}{Boston, MA, USA}
\acmBooktitle{Proceedings of the 17th ACM SIGPLAN International Conference on Generative Programming: Concepts and Experiences (GPCE '18), November 5--6, 2018, Boston, MA, USA}
\acmPrice{15.00}
\acmDOI{10.1145/3278122.3278133}
\acmISBN{978-1-4503-6045-6/18/11}
\begin{CCSXML}
<ccs2012>
<concept>
<concept_id>10003752.10003766.10003776</concept_id>
<concept_desc>Theory of computation~Regular languages</concept_desc>
<concept_significance>500</concept_significance>
</concept>
<concept>
<concept_id>10003752.10003766.10003771</concept_id>
<concept_desc>Theory of computation~Grammars and context-free languages</concept_desc>
<concept_significance>300</concept_significance>
</concept>
<concept>
<concept_id>10011007.10011074.10011099.10011102.10011103</concept_id>
<concept_desc>Software and its engineering~Software testing and debugging</concept_desc>
<concept_significance>500</concept_significance>
</concept>
<concept>
<concept_id>10011007.10011006.10011008.10011009.10011012</concept_id>
<concept_desc>Software and its engineering~Functional languages</concept_desc>
<concept_significance>300</concept_significance>
</concept>
</ccs2012>
\end{CCSXML}
\ccsdesc[500]{Theory of computation~Regular languages}
\ccsdesc[300]{Theory of computation~Grammars and context-free languages}
\ccsdesc[500]{Software and its engineering~Software testing and debugging}
\ccsdesc[300]{Software and its engineering~Functional languages}
\title
% {Regenerate: Generation of test cases for regular expression engines}
{Regenerate: A Language Generator for Extended Regular Expressions}
\subtitle{with an application to test case generation}
\author{Gabriel Radanne}
\affiliation{
\institution{University of Freiburg}
\country{Germany}
}
\email{[email protected]}
% \author{Alexander Thiemann}
% \affiliation{
% \institution{University of Freiburg}
% \country{Germany}
% }
% \email{[email protected]}
\author{Peter Thiemann}
\affiliation{
\institution{University of Freiburg}
\country{Germany}
}
\email{[email protected]}
\begin{abstract}
\input{abstract}
\end{abstract}
\keywords{Regular expressions; parsing; formal languages; power series; \haskell; \ocaml}
\maketitle
\input{intro}
\input{motivation}
\input{improvements}
\input{ocaml}
\input{bench}
\input{testing}
\input{related}
\input{conclusions}
%% Acknowledgments
% \begin{acks}
% \end{acks}
\bibliography{biblio}
% \appendix
% \normalsize
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: