summary refs log tree commit diff homepage
path: root/all.tex
blob: 73f9b67ee916605b519652b8eb19a37a1d9931b5 (plain) (blame)
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
\documentclass[11pt, a4paper, onecolumn, oneside]{report}
\usepackage[vietnamese,english]{babel}
\usepackage[hidelinks]{hyperref}
\usepackage{mathptmx}
\RequirePackage[top=3cm, bottom=1in, left=1in, right=1in]{geometry}
\linespread{1.3}

\usepackage{algorithm}
\usepackage[noend]{algpseudocode}
\usepackage{alltt}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{booktabs}
\usepackage{caption}
\usepackage{cases}
\usepackage{cite}
\usepackage{enumitem}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{glossaries}
\usepackage{multicol}
\usepackage{pdfpages}
\usepackage{setspace}
\usepackage{siunitx}
\usepackage[skip=-1ex]{subcaption}
\usepackage{tikz}
\usepackage{tocloft}
\usepackage{varwidth}
\usepackage{xcolor}

\usetikzlibrary{arrows}
\usetikzlibrary{decorations.pathmorphing}
\usetikzlibrary{fit}
\usetikzlibrary{matrix}
\usetikzlibrary{positioning}
\usetikzlibrary{shapes}
\usetikzlibrary{shapes.geometric}

\renewcommand\cftsecafterpnum{\vskip15pt}
\renewcommand\cftsubsecafterpnum{\vskip15pt}
\renewcommand\cftfigafterpnum{\vskip15pt}
%\renewcommand{\baselinestretch}{1.5}
\renewcommand{\thesection}{\Roman{section}}
\renewcommand{\thesubsection}{\arabic{section}.\arabic{subsection}}
\renewcommand{\thefigure}{\arabic{figure}}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\renewcommand{\algorithmicrequire}{\textbf{Input:}}
\renewcommand{\algorithmicensure}{\textbf{Output:}}
\newcommand{\qed}{\hfill\blacksquare}

\newcounter{lemma}
\newcounter{proposition}
\newcounter{theorem}
\newtheorem{definition}{Definition}
\newtheorem{lemma}{\bf Lemma}
\newtheorem{proposition}{\bf Proposition}
\newtheorem{theorem}{\bf Theorem}
\newtheorem{proof}{\bf Proof}
\DeclareMathOperator*{\argmax}{arg\,max}
\DeclareCaptionLabelFormat{none}{\!}

\newcommand{\name}{Symbolic Execution Groundwork\\
                   for Distinguishing Automatically Generated Patches}
\newcommand{\cnx}{\foreignlanguage{vietnamese}{Nguyễn Gia Phong}}
\newcommand{\cse}{Department of Computer Science and Engineering}
\newcommand{\unist}{Ulsan National Institute of Science and Technology}
\newcommand{\klee}{\textsc{klee}}
\newcommand{\psychic}{\textsc{Psychic}}
\newcommand{\blankpage}{\hbox{}\thispagestyle{empty}\clearpage}
\newcommand{\doi}[1]{\href{https://oadoi.org/#1}{doi:#1}}

\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\cfoot{\thepage}
\pagestyle{fancy}

\title{\name}
\author{\cnx}
\input{glossary.tex}

\begin{document}
\include{front.tex}
\include{title.tex}
\include{approve.tex}
\include{confirm.tex}

% [Thesis approval]
% Add the approval doc signed by your advisor in a PDF file
% Put your pdf with the filename below, and uncomment it.
%\includepdf[fitpaper=true, pages=-]{sample_approval.pdf}

% [Confirmation of thesis approval]
% add the certificate signed by your committee in a PDF file
% Put your pdf with the filename below, and uncomment it.
%\includepdf[fitpaper=true, pages=-]{sample_confirmation.pdf}

\include{abstract.tex}
\blankpage
\begin{spacing}{1}
  \renewcommand{\contentsname}{\hfill\Large Contents\hfill}
  \tableofcontents{}
  \thispagestyle{empty}
  \clearpage
  \renewcommand{\listfigurename}{\hfill\Large List of Figures\hfill}
  {\captionsetup{subrefformat=none}\listoffigures{}}
\end{spacing}
\thispagestyle{empty}
\clearpage
\renewcommand{\glossaryname}{\hfill\Large Technical Terms
                             and Abbreviations\hfill\hfill}
\printnoidxglossaries
\thispagestyle{empty}
\clearpage

\include{intro.tex}
\include{bg.tex}
\include{technique.tex}
\include{eval.tex}
\include{discuss.tex}
\include{related.tex}
\include{outro.tex}

\newpage
\renewcommand{\bibname}{\hfill\Large References\hfill\hfill}
\phantomsection\addcontentsline{toc}{section}{References}
\bibliographystyle{IEEEtran}
\bibliography{ref.bib}

\include{ack.tex}
\blankpage
\end{document}