-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
255 lines (230 loc) · 6.71 KB
/
main.tex
File metadata and controls
255 lines (230 loc) · 6.71 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
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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% DOCUMENT CLASS AND CLASS OPTIONS %%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Initial authors: Michael Enders, Felix Lammermann
% Author's emails: latex@flammermann.de
%
% Current maintainers: Markus Putnings
% Maintainer's emails: markus.putnings@fau.de
%
%
% Copyright 2019--2020 Michael Enders & Felix Lammermann
%
% This work may be distributed and/or modified under the conditions of the
% LaTeX Project Public License, either version 1.3c of this license or (at your
% option) any later version.
%
% The latest version of this license is in
%
% http://www.latex-project.org/lppl.txt
%
% and version 1.3c or later is part of all distributions of LaTeX version
% 2008-05-04 or later.
%
% This work has the LPPL maintenance status `maintained'.
% The current maintainer of this work is Markus Putnings.
\documentclass[
%paper = 17x24,
paper = a5paper,
% 17x24 (= studienpartitur, default)
% a5 (= a5paper)
language = english,
% german (= default)
% english
acronym = nosymbol,
% none (= false)
% split (= true, default)
% combined
% onlyabbreviation (= nosymbol)
% onlysymbol (= noabbreviation)
acronymline = novertical,
% none (= false)
% both (= true, all, default)
% onlyhorizontal (= novertical)
% onlyvertical (= nohorizontal)
bibliography = combined,
% none (= false)
% split (= true, default)
% combined
bibliographypart = all,
% none (= false)
% all (= true, default)
% onlymain
% nomain
% onlyown
% noown
% onlystudent
% nostudent
titlesize = Huge,
% Huge (= default)
% LARGE
% Large
% large
% normalsize
par = halfskip,
% skip
% halfskip (= default)
% indent
]{faupress}
%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% INDIVIDUAL PACKAGES %%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{blindtext}
\usepackage{physics}
%\usepackage{bm}
%TODO Best solution so far
\def\bm{\symbf}
%\def\bm{}
\usepackage{relsize}
\usepackage{amsthm}
\theoremstyle{definition}
\newtheorem{theorem}{Theorem}
\newtheorem{definition}{Definition}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{graphicx}
\usepackage{algorithmicx}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{tikz}
\usepackage{booktabs}
\usepackage{backnaur}
\usepackage{hyperref}
\usepackage[titles]{tocloft}
\usepackage{minted}
\usepackage{epigraph}
\usepackage{rotating}
% Defs and adaptions
\newcommand{\ps}[1]{\langle #1 \rangle}
\newcommand{\bps}[1]{ \ps{\bm{#1}} }
\newcommand{\state}[3]{( #1 )}
\colorlet{lightred}{red!33}
\colorlet{lightblue}{blue!33}
\renewcommand{\floatpagefraction}{.7}
\renewcommand\theFancyVerbLine{\scriptsize \texttt{\arabic{FancyVerbLine}}}
\numberwithin{equation}{chapter}
\newcounter{prodcounter}
\newenvironment{production}{%
\refstepcounter{prodcounter}
\renewcommand\theequation{p\theprodcounter}
\begin{bnf}}
{\end{bnf}}
\usemintedstyle{tango}
\setminted[python]{fontsize=\footnotesize, breaklines, frame=none
, numbersep=7.5pt, numberblanklines=False}
\setminted[scala]{fontsize=\footnotesize, breaklines, frame=none, numbersep=7.5pt, numberblanklines=False}
%\AtBeginDocument{\RenewCommandCopy\qty\SI}
\usepackage{etoolbox}
\usepackage{microtype}
% TODO outcomment to check for overfull hboxes
%\overfullrule=1mm
\hyphenation{cross-over, Parallelisierungs-schema, Evo-Stencils, Multi-grid}
\AtBeginEnvironment{tabular}{\small}
%%%%%%%%%%%%%%%%%
%%% META INFO %%%
%%%%%%%%%%%%%%%%%
% publication
\title{Automating the Design of Multigrid Methods with Evolutionary Program Synthesis}
%\subtitle{Automatisierung des Entwurfs von Mehrgitterverfahren mit Evolutionärer Programmsynthese}
% author
\firstname{Jonas}
\lastname{Schmitt}
%\degree{M.Sc.}
\origin{Forchheim}
% publication identifiers
\yearofpublication{2024}
\series{}
\volume{}
\doi{}
\isbn{}
\eisbn{}
\issn{}
\printinformation{%
% ggf. Satz \\%
% ggf. Druck%
}
% miscellaneous
\subject{Doktorarbeit}
\keywords{FAU, Erlangen, Nürnberg, Doktorarbeit}
% university and examination
%\institute{Lehrstuhl für Informatik 10}
%\supervisor{Prof. Dr. Harald Köstler}
\institute{\phantom{}}
\supervisor{\phantom{}}
\oralexam{14.12.2023}
\dean{Prof. Dr. Gerhard Wellein}
\reviewer{Prof. Dr. Harald Köstler \\
Prof. Dr. Penousal Machado \\
Prof. Dr. Dietmar Fey}
%%%%%%%%%%%%%%%%%%%%%%%%%
%%% DOCUMENT CONTENTS %%%
%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
% typeset the titlepage of the publisher
\maketitle
% start the frontmatter (roman page numbering,
% lowercase roman sectioning numbering, no header)
\frontmatter
% typesets the titlepage of the faculty
\makefacultytitle
% insert preface heading (has \label{ch:preface},
% reference via \nameref{ch:preface})
\begin{abstract}
\input{contents/abstract.tex}
\end{abstract}
\begin{zusammenfassung}
\input{contents/zusammenfassung.tex}
\end{zusammenfassung}
\chapter*{Acknowledgments}
\input{contents/acknowledgments.tex}
\input{contents/epigraph.tex}
\tableofcontents
\faupressprintacronyms
\begingroup
\listofalgorithms
\let\clearpage\relax
\listoflistings
\endgroup
\mainmatter
\begin{introduction}
\input{contents/introduction.tex}
%%% WRITE YOUR INTRODUCTION DIRECTLY HERE OR %%%%%%%%
%%% INPUT AN EXTERNAL FILE WITH YOUR INTRODUCTION %%%
%\input{contents/my_introduction.tex}
\end{introduction}
\chapter{Multigrid Methods for Solving Partial Differential Equations}
%%% WRITE YOUR THESIS DIRECTLY HERE OR %%%%%%
%%% INPUT EXTERNAL FILES WITH YOUR THESIS %%%
\input{contents/discretization_of_pdes.tex}
\input{contents/basic_iterative_methods.tex}
\input{contents/multigrid_methods.tex}
\chapter{Formal Languages and Evolutionary Program Synthesis}
\label{chapter:formal-languages-and-gp}
\input{contents/formal_languages.tex}
\input{contents/genetic_programming.tex}
\chapter{A Formal Language for Expressing Multigrid Methods}
\label{chapter:multigrid-formal-language}
\input{contents/multigrid_grammar.tex}
\chapter{Automated Multigrid Solver Design -- Part 1: Core Implementation}
\label{chapter:evostencils-1}
\input{contents/evostencils_part1.tex}
\chapter{Automated Multigrid Solver Design -- Part 2: Generalization and Parallelization}
\label{chapter:evostencils-2}
\input{contents/evostencils_part2.tex}
\chapter{Experiments and Discussion}
\label{chapter:experiments}
\input{contents/experiments.tex}
\chapter{Related Work and Conclusion}
\input{contents/related_work.tex}
\input{contents/conclusion.tex}
\appendix
%%% WRITE YOUR APPENDIX DIRECTLY HERE OR %%%%%%%%
%%% INPUT AN EXTERNAL FILE WITH YOUR APPENDIX %%%
\input{contents/appendix.tex}
% start the backmatter (arabic page numbering [continued],
% no sectioning numbering, header)
\backmatter
\faupressprintbibliography
\end{document}