falkorlib 0.8.9 → 0.8.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +3 -3
- data/lib/falkorlib/version.rb +1 -1
- data/templates/latex/article/_related_works.tex.erb +1 -1
- data/templates/latex/article/biblio.bib.erb +12 -1
- data/templates/latex/article-acm/main.tex.erb +47 -65
- data/templates/latex/article-ieee/main.tex.erb +42 -410
- data/templates/latex/article-llncs/main.tex.erb +30 -18
- data/templates/latex/beamer/main.tex.erb +7 -6
- data/templates/latex/llncs/llncs.cls +49 -39
- data/templates/latex/llncs/{splncs03.bst → splncs04.bst} +40 -11
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: db8ca53a3ecb0adfbf404f4e0842295f96989c19c53ac931bd7fa38b037bec3c
|
|
4
|
+
data.tar.gz: 40b40ad9380541e56c92c90f8adaf83e9587ddcbadf4832c517d49b5eed3f24e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae8f5b217f1ba4336ad2cee401064f576e3f9c893ceb7bdd8c41e2b81fd3fef11846299d3f06b9e555510565a3479318997771b94c84be4c44cfe9225ff4f033
|
|
7
|
+
data.tar.gz: 9a000a8b6c9c1d515493a5bf4cd147bbb8615fbe3dfe545e7934bb558225d3337d7d1520660a02dbe0e549c84e415f987735cb1e9a95bb170bf4fbe94d9aed07
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
falkorlib (0.8.
|
|
4
|
+
falkorlib (0.8.10)
|
|
5
5
|
activesupport (~> 5.0)
|
|
6
6
|
artii (>= 2.1)
|
|
7
7
|
awesome_print (> 1.2)
|
|
@@ -37,7 +37,7 @@ GEM
|
|
|
37
37
|
configatron (3.2.0)
|
|
38
38
|
deep_merge (1.2.2)
|
|
39
39
|
diff-lcs (1.5.0)
|
|
40
|
-
diffy (3.4.
|
|
40
|
+
diffy (3.4.2)
|
|
41
41
|
docile (1.4.0)
|
|
42
42
|
facter (2.4.6-universal-darwin)
|
|
43
43
|
CFPropertyList (~> 2.2.6)
|
|
@@ -184,4 +184,4 @@ DEPENDENCIES
|
|
|
184
184
|
yard (>= 0.9.20)
|
|
185
185
|
|
|
186
186
|
BUNDLED WITH
|
|
187
|
-
2.3.
|
|
187
|
+
2.3.17
|
data/lib/falkorlib/version.rb
CHANGED
|
@@ -1,13 +1,24 @@
|
|
|
1
1
|
%=======================================================================
|
|
2
2
|
% File: biblio.bib -- BibTeX entries
|
|
3
3
|
% Author(s): <%= config[:author] %> (<%= config[:mail].gsub(/@/, ' at ') %>)
|
|
4
|
-
% Time-stamp: <
|
|
4
|
+
% Time-stamp: <Wed 2022-08-17 10:07 svarrette>
|
|
5
5
|
%
|
|
6
6
|
% Copyright (c) <%= Time.now.year %> <%= config[:author] %>
|
|
7
7
|
%
|
|
8
8
|
% More information on BibTeX: http://www.bibtex.org/
|
|
9
9
|
%=======================================================================
|
|
10
10
|
|
|
11
|
+
@inproceedings{VCPKVO_HPCCT22,
|
|
12
|
+
author = {Varrette, S. and Cartiaux, H. and Peter, S. and Kieffer, E. and Valette, T. and Olloh, A.},
|
|
13
|
+
title = {{Management of an Academic HPC \& Research Computing Facility: The ULHPC Experience 2.0}},
|
|
14
|
+
booktitle = {Proc. of the 6th ACM High Performance Computing and Cluster Technologies Conf. (HPCCT 2022)},
|
|
15
|
+
year = {2022},
|
|
16
|
+
month = jul,
|
|
17
|
+
address = {Fuzhou, China},
|
|
18
|
+
isbn = {978-1-4503-9664-6},
|
|
19
|
+
publisher = {Association for Computing Machinery (ACM)},
|
|
20
|
+
}
|
|
21
|
+
|
|
11
22
|
@InProceedings{VBCG_HPCS14,
|
|
12
23
|
author = {S. Varrette and P. Bouvry and H. Cartiaux and F. Georgatos},
|
|
13
24
|
title = {{Management of an Academic HPC Cluster: The UL Experience}},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
% =============================================================================
|
|
2
2
|
% File: <%= config[:name] %>.tex --
|
|
3
3
|
% Author(s): <%= config[:author] %> (<%= config[:mail] %>)
|
|
4
|
-
% Time-stamp: <
|
|
4
|
+
% Time-stamp: <Wed 2022-08-17 10:06 svarrette>
|
|
5
5
|
%
|
|
6
6
|
% Copyright (c) <%= Time.now.year %> <%= config[:author] %><Sebastien.Varrette@uni.lu>
|
|
7
7
|
%
|
|
@@ -11,37 +11,36 @@
|
|
|
11
11
|
% - LaTeX symbol list:
|
|
12
12
|
% http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-a4.pdf
|
|
13
13
|
% =============================================================================
|
|
14
|
-
% /!\ WARNING: inspired from
|
|
14
|
+
% /!\ WARNING: inspired from 2021 ACM Article Template
|
|
15
15
|
% see https://www.acm.org/publications/proceedings-template
|
|
16
16
|
|
|
17
|
+
%\documentclass[acmlarge]{acmart}
|
|
17
18
|
\documentclass[sigconf]{acmart}
|
|
18
19
|
|
|
19
20
|
\usepackage{_style}
|
|
20
21
|
|
|
21
22
|
\usepackage{booktabs} % For formal tables
|
|
23
|
+
\usepackage{balance}
|
|
22
24
|
|
|
23
25
|
% Copyright
|
|
24
26
|
%\setcopyright{none}
|
|
25
|
-
|
|
27
|
+
\setcopyright{acmcopyright}
|
|
26
28
|
%\setcopyright{acmlicensed}
|
|
27
|
-
|
|
28
|
-
%\setcopyright{usgov}
|
|
29
|
-
%\setcopyright{usgovmixed}
|
|
30
|
-
%\setcopyright{cagov}
|
|
31
|
-
%\setcopyright{cagovmixed}
|
|
29
|
+
%\setcopyright{rightsretained}
|
|
32
30
|
|
|
33
31
|
% DOI
|
|
34
|
-
\acmDOI{10.475/123_4}
|
|
32
|
+
\acmDOI{} %10.475/123_4}
|
|
35
33
|
|
|
36
34
|
% ISBN
|
|
37
35
|
\acmISBN{123-4567-24-567/08/06}
|
|
38
36
|
|
|
39
37
|
%Conference
|
|
40
38
|
\acmConference[<%= config[:name] %>]{ACM <%= config[:name].capitalize %> conference}{June <%= Time.now.year %>}{El Paso, Texas USA}
|
|
39
|
+
\acmBooktitle{XX$^\text{th}$ <%= config[:name].capitalize %> Conference (<%= config[:name] %>), June <%= Time.now.year %>, El Paso, Texas USA}
|
|
41
40
|
\acmYear{<%= Time.now.year %>}
|
|
42
41
|
\copyrightyear{<%= Time.now.year %>}
|
|
43
42
|
|
|
44
|
-
\acmPrice{
|
|
43
|
+
\acmPrice{}
|
|
45
44
|
|
|
46
45
|
% =============================================================================
|
|
47
46
|
\begin{document}
|
|
@@ -61,43 +60,31 @@
|
|
|
61
60
|
\author{%
|
|
62
61
|
<%= config[:author] %>
|
|
63
62
|
}
|
|
64
|
-
%\authornote{}
|
|
65
|
-
\orcid{1234-5678-9012}
|
|
66
|
-
\affiliation{%
|
|
67
|
-
\institution{%
|
|
68
|
-
Computer Science and Communications (CSC) Research Unit\\
|
|
69
|
-
University of Luxembourg
|
|
70
|
-
}
|
|
71
|
-
\streetaddress{6, rue Richard Coudenhove-Kalergi}
|
|
72
|
-
\city{Luxembourg}
|
|
73
|
-
%\state{Ohio}
|
|
74
|
-
\postcode{L-1359}
|
|
75
|
-
}
|
|
76
63
|
\email{%
|
|
77
64
|
<%= config[:mail] %>
|
|
78
65
|
}
|
|
79
|
-
|
|
80
|
-
\author{Firstname Name2}
|
|
81
66
|
%\authornote{}
|
|
82
|
-
|
|
67
|
+
\orcid{1234-5678-9012}
|
|
83
68
|
\affiliation{%
|
|
84
|
-
\institution{
|
|
85
|
-
Interdisciplinary Centre for Security Reliability and Trust
|
|
69
|
+
\institution{
|
|
70
|
+
% Interdisciplinary Centre for Security Reliability and Trust (SnT) \and
|
|
71
|
+
Faculty of Science, Technology and Medicine (FSTM) %\and
|
|
72
|
+
% Luxembourg Centre for Systems Biomedicine (LCSB)
|
|
73
|
+
% Faculty of Science, Technology and Medicine (FSTM),
|
|
86
74
|
University of Luxembourg
|
|
87
75
|
}
|
|
88
|
-
\streetaddress{
|
|
89
|
-
\city{
|
|
90
|
-
|
|
91
|
-
\
|
|
76
|
+
\streetaddress{2 av. de l'Université}
|
|
77
|
+
\city{Esch-sur-Alzette}
|
|
78
|
+
\postcode{L-4365}
|
|
79
|
+
\country{Luxembourg}
|
|
92
80
|
}
|
|
93
|
-
\email{Fistname.Name2@uni.lu}
|
|
94
81
|
|
|
95
|
-
\author{
|
|
82
|
+
\author{Firstname Name2}
|
|
96
83
|
%\authornote{}
|
|
97
84
|
%\orcid{}
|
|
98
85
|
\affiliation{%
|
|
99
86
|
\institution{%
|
|
100
|
-
|
|
87
|
+
Interdisciplinary Centre for Security Reliability and Trust\\
|
|
101
88
|
University of Luxembourg
|
|
102
89
|
}
|
|
103
90
|
\streetaddress{6, rue Richard Coudenhove-Kalergi}
|
|
@@ -105,7 +92,6 @@
|
|
|
105
92
|
%\state{Ohio}
|
|
106
93
|
\postcode{L-1359}
|
|
107
94
|
}
|
|
108
|
-
\email{Pascal.Bouvry@uni.lu}
|
|
109
95
|
|
|
110
96
|
% The default list of authors is too long for headers}
|
|
111
97
|
\renewcommand{\shortauthors}{%
|
|
@@ -127,36 +113,33 @@
|
|
|
127
113
|
%
|
|
128
114
|
\begin{CCSXML}
|
|
129
115
|
<ccs2012>
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
116
|
+
<concept>
|
|
117
|
+
<concept_id>10010520.10010521</concept_id>
|
|
118
|
+
<concept_desc>Computer systems organization~Architectures</concept_desc>
|
|
119
|
+
<concept_significance>500</concept_significance>
|
|
120
|
+
</concept>
|
|
121
|
+
<concept>
|
|
122
|
+
<concept_id>10003033</concept_id>
|
|
123
|
+
<concept_desc>Networks</concept_desc>
|
|
124
|
+
<concept_significance>300</concept_significance>
|
|
125
|
+
</concept>
|
|
126
|
+
<concept>
|
|
127
|
+
<concept_id>10010520.10010575</concept_id>
|
|
128
|
+
<concept_desc>Computer systems organization~Dependable and fault-tolerant systems and networks</concept_desc>
|
|
129
|
+
<concept_significance>300</concept_significance>
|
|
130
|
+
</concept>
|
|
131
|
+
<concept>
|
|
132
|
+
<concept_id>10011007.10011074</concept_id>
|
|
133
|
+
<concept_desc>Software and its engineering~Software creation and management</concept_desc>
|
|
134
|
+
<concept_significance>100</concept_significance>
|
|
135
|
+
</concept>
|
|
150
136
|
</ccs2012>
|
|
151
137
|
\end{CCSXML}
|
|
152
138
|
|
|
153
|
-
\ccsdesc[500]{Computer systems organization~
|
|
154
|
-
\ccsdesc[300]{
|
|
155
|
-
\ccsdesc{Computer systems organization~
|
|
156
|
-
\ccsdesc[100]{
|
|
157
|
-
|
|
158
|
-
% We no longer use \terms command
|
|
159
|
-
%\terms{Theory}
|
|
139
|
+
\ccsdesc[500]{Computer systems organization~Architectures}
|
|
140
|
+
\ccsdesc[300]{Networks}
|
|
141
|
+
\ccsdesc[300]{Computer systems organization~Dependable and fault-tolerant systems and networks}
|
|
142
|
+
\ccsdesc[100]{Software and its engineering~Software creation and management}
|
|
160
143
|
|
|
161
144
|
%__________
|
|
162
145
|
\keywords{%
|
|
@@ -200,10 +183,9 @@
|
|
|
200
183
|
|
|
201
184
|
~\\
|
|
202
185
|
{\noindent \textbf{Acknowledgments:}}
|
|
203
|
-
% \\
|
|
204
186
|
The experiments presented in this paper were carried out
|
|
205
|
-
using the HPC facilities of the University of Luxembourg~\cite{
|
|
206
|
-
{\small -- see \url{
|
|
187
|
+
using the HPC facilities of the University of Luxembourg~\cite{VCPKVO_HPCCT22}
|
|
188
|
+
{\small -- see \url{https://hpc.uni.lu}}.
|
|
207
189
|
|
|
208
190
|
|
|
209
191
|
\bibliographystyle{ACM-Reference-Format}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
% =============================================================================
|
|
2
2
|
% File: <%= config[:name] %>.tex --
|
|
3
3
|
% Author(s): <%= config[:author] %> (<%= config[:mail] %>)
|
|
4
|
-
% Time-stamp: <
|
|
4
|
+
% Time-stamp: <Wed 2022-08-17 10:38 svarrette>
|
|
5
5
|
%
|
|
6
|
-
% Copyright (c) <%= Time.now.year %> <%= config[:author]
|
|
6
|
+
% Copyright (c) <%= Time.now.year %> <%= config[:author] %>
|
|
7
7
|
%
|
|
8
8
|
% For more information:
|
|
9
9
|
% - LaTeX: http://www.latex-project.org/
|
|
@@ -11,388 +11,56 @@
|
|
|
11
11
|
% - LaTeX symbol list:
|
|
12
12
|
% http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-a4.pdf
|
|
13
13
|
% =============================================================================
|
|
14
|
-
% /!\ WARNING: inspired from bare_conf_compsoc.tex
|
|
15
14
|
% See http://www.ctan.org/tex-archive/macros/latex/contrib/IEEEtran
|
|
16
|
-
%
|
|
17
|
-
% =============================================================================
|
|
18
|
-
%% V1.4b
|
|
19
|
-
%% 2015/08/26
|
|
20
|
-
%% by Michael Shell
|
|
21
|
-
%% See:
|
|
22
|
-
%% http://www.michaelshell.org/
|
|
23
|
-
%% for current contact information.
|
|
24
|
-
%%
|
|
25
|
-
%% This is a skeleton file demonstrating the use of IEEEtran.cls
|
|
26
|
-
%% (requires IEEEtran.cls version 1.8b or later) with an IEEE Computer
|
|
27
|
-
%% Society conference paper.
|
|
28
|
-
%%
|
|
29
|
-
%% Support sites:
|
|
30
|
-
%% http://www.michaelshell.org/tex/ieeetran/
|
|
31
|
-
%% http://www.ctan.org/pkg/ieeetran
|
|
32
|
-
%% and
|
|
33
|
-
%% http://www.ieee.org/
|
|
34
|
-
|
|
35
|
-
%%*************************************************************************
|
|
36
|
-
%% Legal Notice:
|
|
37
|
-
%% This code is offered as-is without any warranty either expressed or
|
|
38
|
-
%% implied; without even the implied warranty of MERCHANTABILITY or
|
|
39
|
-
%% FITNESS FOR A PARTICULAR PURPOSE!
|
|
40
|
-
%% User assumes all risk.
|
|
41
|
-
%% In no event shall the IEEE or any contributor to this code be liable for
|
|
42
|
-
%% any damages or losses, including, but not limited to, incidental,
|
|
43
|
-
%% consequential, or any other damages, resulting from the use or misuse
|
|
44
|
-
%% of any information contained here.
|
|
45
|
-
%%
|
|
46
|
-
%% All comments are the opinions of their respective authors and are not
|
|
47
|
-
%% necessarily endorsed by the IEEE.
|
|
48
|
-
%%
|
|
49
|
-
%% This work is distributed under the LaTeX Project Public License (LPPL)
|
|
50
|
-
%% ( http://www.latex-project.org/ ) version 1.3, and may be freely used,
|
|
51
|
-
%% distributed and modified. A copy of the LPPL, version 1.3, is included
|
|
52
|
-
%% in the base LaTeX documentation of all distributions of LaTeX released
|
|
53
|
-
%% 2003/12/01 or later.
|
|
54
|
-
%% Retain all contribution notices and credits.
|
|
55
|
-
%% ** Modified files should be clearly indicated as such, including **
|
|
56
|
-
%% ** renaming them and changing author support contact information. **
|
|
57
|
-
%%*************************************************************************
|
|
58
|
-
|
|
15
|
+
% See also https://github.com/latextemplates/IEEE
|
|
59
16
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
% *** with production work. The IEEE's font choices and paper sizes can ***
|
|
63
|
-
% *** trigger bugs that do not appear when using other class files. *** ***
|
|
64
|
-
% The testflow support page is at:
|
|
65
|
-
% http://www.michaelshell.org/tex/testflow/
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
\documentclass[conference,compsoc]{IEEEtran}
|
|
70
|
-
% Some/most Computer Society conferences require the compsoc mode option,
|
|
71
|
-
% but others may want the standard conference format.
|
|
72
|
-
%
|
|
73
|
-
% If IEEEtran.cls has not been installed into the LaTeX system files,
|
|
74
|
-
% manually specify the path to it like:
|
|
75
|
-
% \documentclass[conference,compsoc]{../sty/IEEEtran}
|
|
17
|
+
\documentclass[conference,a4paper]{IEEEtran}
|
|
18
|
+
\IEEEoverridecommandlockouts
|
|
76
19
|
|
|
77
20
|
\usepackage{_style}
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
% compilation based on whether the output is pdf or dvi.
|
|
88
|
-
% usage:
|
|
89
|
-
% \ifpdf
|
|
90
|
-
% % pdf code
|
|
91
|
-
% \else
|
|
92
|
-
% % dvi code
|
|
93
|
-
% \fi
|
|
94
|
-
% The latest version of ifpdf.sty can be obtained from:
|
|
95
|
-
% http://www.ctan.org/pkg/ifpdf
|
|
96
|
-
% Also, note that IEEEtran.cls V1.7 and later provides a builtin
|
|
97
|
-
% \ifCLASSINFOpdf conditional that works the same way.
|
|
98
|
-
% When switching from latex to pdflatex and vice-versa, the compiler may
|
|
99
|
-
% have to be run twice to clear warning/error messages.
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
% *** CITATION PACKAGES ***
|
|
107
|
-
%
|
|
108
|
-
\ifCLASSOPTIONcompsoc
|
|
109
|
-
% IEEE Computer Society needs nocompress option
|
|
110
|
-
% requires cite.sty v4.0 or later (November 2003)
|
|
111
|
-
\usepackage[nocompress]{cite}
|
|
112
|
-
\else
|
|
113
|
-
% normal IEEE
|
|
114
|
-
\usepackage{cite}
|
|
115
|
-
\fi
|
|
116
|
-
% cite.sty was written by Donald Arseneau
|
|
117
|
-
% V1.6 and later of IEEEtran pre-defines the format of the cite.sty package
|
|
118
|
-
% \cite{} output to follow that of the IEEE. Loading the cite package will
|
|
119
|
-
% result in citation numbers being automatically sorted and properly
|
|
120
|
-
% "compressed/ranged". e.g., [1], [9], [2], [7], [5], [6] without using
|
|
121
|
-
% cite.sty will become [1], [2], [5]--[7], [9] using cite.sty. cite.sty's
|
|
122
|
-
% \cite will automatically add leading space, if needed. Use cite.sty's
|
|
123
|
-
% noadjust option (cite.sty V3.8 and later) if you want to turn this off
|
|
124
|
-
% such as if a citation ever needs to be enclosed in parenthesis.
|
|
125
|
-
% cite.sty is already installed on most LaTeX systems. Be sure and use
|
|
126
|
-
% version 5.0 (2009-03-20) and later if using hyperref.sty.
|
|
127
|
-
% The latest version can be obtained at:
|
|
128
|
-
% http://www.ctan.org/pkg/cite
|
|
129
|
-
% The documentation is contained in the cite.sty file itself.
|
|
130
|
-
%
|
|
131
|
-
% Note that some packages require special options to format as the Computer
|
|
132
|
-
% Society requires. In particular, Computer Society papers do not use
|
|
133
|
-
% compressed citation ranges as is done in typical IEEE papers
|
|
134
|
-
% (e.g., [1]-[4]). Instead, they list every citation separately in order
|
|
135
|
-
% (e.g., [1], [2], [3], [4]). To get the latter we need to load the cite
|
|
136
|
-
% package with the nocompress option which is supported by cite.sty v4.0
|
|
137
|
-
% and later.
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
% *** GRAPHICS RELATED PACKAGES ***
|
|
144
|
-
%
|
|
145
|
-
\ifCLASSINFOpdf
|
|
146
|
-
% \usepackage[pdftex]{graphicx}
|
|
147
|
-
% declare the path(s) where your graphic files are
|
|
148
|
-
% \graphicspath{{../pdf/}{../jpeg/}}
|
|
149
|
-
% and their extensions so you won't have to specify these with
|
|
150
|
-
% every instance of \includegraphics
|
|
151
|
-
% \DeclareGraphicsExtensions{.pdf,.jpeg,.png}
|
|
152
|
-
\else
|
|
153
|
-
% or other class option (dvipsone, dvipdf, if not using dvips). graphicx
|
|
154
|
-
% will default to the driver specified in the system graphics.cfg if no
|
|
155
|
-
% driver is specified.
|
|
156
|
-
% \usepackage[dvips]{graphicx}
|
|
157
|
-
% declare the path(s) where your graphic files are
|
|
158
|
-
% \graphicspath{{../eps/}}
|
|
159
|
-
% and their extensions so you won't have to specify these with
|
|
160
|
-
% every instance of \includegraphics
|
|
161
|
-
% \DeclareGraphicsExtensions{.eps}
|
|
162
|
-
\fi
|
|
163
|
-
% graphicx was written by David Carlisle and Sebastian Rahtz. It is
|
|
164
|
-
% required if you want graphics, photos, etc. graphicx.sty is already
|
|
165
|
-
% installed on most LaTeX systems. The latest version and documentation
|
|
166
|
-
% can be obtained at:
|
|
167
|
-
% http://www.ctan.org/pkg/graphicx
|
|
168
|
-
% Another good source of documentation is "Using Imported Graphics in
|
|
169
|
-
% LaTeX2e" by Keith Reckdahl which can be found at:
|
|
170
|
-
% http://www.ctan.org/pkg/epslatex
|
|
171
|
-
%
|
|
172
|
-
% latex, and pdflatex in dvi mode, support graphics in encapsulated
|
|
173
|
-
% postscript (.eps) format. pdflatex in pdf mode supports graphics
|
|
174
|
-
% in .pdf, .jpeg, .png and .mps (metapost) formats. Users should ensure
|
|
175
|
-
% that all non-photo figures use a vector format (.eps, .pdf, .mps) and
|
|
176
|
-
% not a bitmapped formats (.jpeg, .png). The IEEE frowns on bitmapped formats
|
|
177
|
-
% which can result in "jaggedy"/blurry rendering of lines and letters as
|
|
178
|
-
% well as large increases in file sizes.
|
|
179
|
-
%
|
|
180
|
-
% You can find documentation about the pdfTeX application at:
|
|
181
|
-
% http://www.tug.org/applications/pdftex
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
% *** MATH PACKAGES ***
|
|
188
|
-
%
|
|
189
|
-
%\usepackage{amsmath}
|
|
190
|
-
% A popular package from the American Mathematical Society that provides
|
|
191
|
-
% many useful and powerful commands for dealing with mathematics.
|
|
192
|
-
%
|
|
193
|
-
% Note that the amsmath package sets \interdisplaylinepenalty to 10000
|
|
194
|
-
% thus preventing page breaks from occurring within multiline equations. Use:
|
|
195
|
-
%\interdisplaylinepenalty=2500
|
|
196
|
-
% after loading amsmath to restore such page breaks as IEEEtran.cls normally
|
|
197
|
-
% does. amsmath.sty is already installed on most LaTeX systems. The latest
|
|
198
|
-
% version and documentation can be obtained at:
|
|
199
|
-
% http://www.ctan.org/pkg/amsmath
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
% *** SPECIALIZED LIST PACKAGES ***
|
|
206
|
-
%
|
|
207
|
-
%\usepackage{algorithmic}
|
|
208
|
-
% algorithmic.sty was written by Peter Williams and Rogerio Brito.
|
|
209
|
-
% This package provides an algorithmic environment fo describing algorithms.
|
|
210
|
-
% You can use the algorithmic environment in-text or within a figure
|
|
211
|
-
% environment to provide for a floating algorithm. Do NOT use the algorithm
|
|
212
|
-
% floating environment provided by algorithm.sty (by the same authors) or
|
|
213
|
-
% algorithm2e.sty (by Christophe Fiorio) as the IEEE does not use dedicated
|
|
214
|
-
% algorithm float types and packages that provide these will not provide
|
|
215
|
-
% correct IEEE style captions. The latest version and documentation of
|
|
216
|
-
% algorithmic.sty can be obtained at:
|
|
217
|
-
% http://www.ctan.org/pkg/algorithms
|
|
218
|
-
% Also of interest may be the (relatively newer and more customizable)
|
|
219
|
-
% algorithmicx.sty package by Szasz Janos:
|
|
220
|
-
% http://www.ctan.org/pkg/algorithmicx
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
% *** ALIGNMENT PACKAGES ***
|
|
226
|
-
%
|
|
227
|
-
%\usepackage{array}
|
|
228
|
-
% Frank Mittelbach's and David Carlisle's array.sty patches and improves
|
|
229
|
-
% the standard LaTeX2e array and tabular environments to provide better
|
|
230
|
-
% appearance and additional user controls. As the default LaTeX2e table
|
|
231
|
-
% generation code is lacking to the point of almost being broken with
|
|
232
|
-
% respect to the quality of the end results, all users are strongly
|
|
233
|
-
% advised to use an enhanced (at the very least that provided by array.sty)
|
|
234
|
-
% set of table tools. array.sty is already installed on most systems. The
|
|
235
|
-
% latest version and documentation can be obtained at:
|
|
236
|
-
% http://www.ctan.org/pkg/array
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
% IEEEtran contains the IEEEeqnarray family of commands that can be used to
|
|
240
|
-
% generate multiline equations as well as matrices, tables, etc., of high
|
|
241
|
-
% quality.
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
% *** SUBFIGURE PACKAGES ***
|
|
247
|
-
%\ifCLASSOPTIONcompsoc
|
|
248
|
-
% \usepackage[caption=false,font=footnotesize,labelfont=sf,textfont=sf]{subfig}
|
|
249
|
-
%\else
|
|
250
|
-
% \usepackage[caption=false,font=footnotesize]{subfig}
|
|
251
|
-
%\fi
|
|
252
|
-
% subfig.sty, written by Steven Douglas Cochran, is the modern replacement
|
|
253
|
-
% for subfigure.sty, the latter of which is no longer maintained and is
|
|
254
|
-
% incompatible with some LaTeX packages including fixltx2e. However,
|
|
255
|
-
% subfig.sty requires and automatically loads Axel Sommerfeldt's caption.sty
|
|
256
|
-
% which will override IEEEtran.cls' handling of captions and this will result
|
|
257
|
-
% in non-IEEE style figure/table captions. To prevent this problem, be sure
|
|
258
|
-
% and invoke subfig.sty's "caption=false" package option (available since
|
|
259
|
-
% subfig.sty version 1.3, 2005/06/28) as this is will preserve IEEEtran.cls
|
|
260
|
-
% handling of captions.
|
|
261
|
-
% Note that the Computer Society format requires a sans serif font rather
|
|
262
|
-
% than the serif font used in traditional IEEE formatting and thus the need
|
|
263
|
-
% to invoke different subfig.sty package options depending on whether
|
|
264
|
-
% compsoc mode has been enabled.
|
|
265
|
-
%
|
|
266
|
-
% The latest version and documentation of subfig.sty can be obtained at:
|
|
267
|
-
% http://www.ctan.org/pkg/subfig
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
% *** FLOAT PACKAGES ***
|
|
273
|
-
%
|
|
274
|
-
%\usepackage{fixltx2e}
|
|
275
|
-
% fixltx2e, the successor to the earlier fix2col.sty, was written by
|
|
276
|
-
% Frank Mittelbach and David Carlisle. This package corrects a few problems
|
|
277
|
-
% in the LaTeX2e kernel, the most notable of which is that in current
|
|
278
|
-
% LaTeX2e releases, the ordering of single and double column floats is not
|
|
279
|
-
% guaranteed to be preserved. Thus, an unpatched LaTeX2e can allow a
|
|
280
|
-
% single column figure to be placed prior to an earlier double column
|
|
281
|
-
% figure.
|
|
282
|
-
% Be aware that LaTeX2e kernels dated 2015 and later have fixltx2e.sty's
|
|
283
|
-
% corrections already built into the system in which case a warning will
|
|
284
|
-
% be issued if an attempt is made to load fixltx2e.sty as it is no longer
|
|
285
|
-
% needed.
|
|
286
|
-
% The latest version and documentation can be found at:
|
|
287
|
-
% http://www.ctan.org/pkg/fixltx2e
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
%\usepackage{stfloats}
|
|
291
|
-
% stfloats.sty was written by Sigitas Tolusis. This package gives LaTeX2e
|
|
292
|
-
% the ability to do double column floats at the bottom of the page as well
|
|
293
|
-
% as the top. (e.g., "\begin{figure*}[!b]" is not normally possible in
|
|
294
|
-
% LaTeX2e). It also provides a command:
|
|
295
|
-
%\fnbelowfloat
|
|
296
|
-
% to enable the placement of footnotes below bottom floats (the standard
|
|
297
|
-
% LaTeX2e kernel puts them above bottom floats). This is an invasive package
|
|
298
|
-
% which rewrites many portions of the LaTeX2e float routines. It may not work
|
|
299
|
-
% with other packages that modify the LaTeX2e float routines. The latest
|
|
300
|
-
% version and documentation can be obtained at:
|
|
301
|
-
% http://www.ctan.org/pkg/stfloats
|
|
302
|
-
% Do not use the stfloats baselinefloat ability as the IEEE does not allow
|
|
303
|
-
% \baselineskip to stretch. Authors submitting work to the IEEE should note
|
|
304
|
-
% that the IEEE rarely uses double column equations and that authors should try
|
|
305
|
-
% to avoid such use. Do not be tempted to use the cuted.sty or midfloat.sty
|
|
306
|
-
% packages (also by Sigitas Tolusis) as the IEEE does not format its papers in
|
|
307
|
-
% such ways.
|
|
308
|
-
% Do not attempt to use stfloats with fixltx2e as they are incompatible.
|
|
309
|
-
% Instead, use Morten Hogholm'a dblfloatfix which combines the features
|
|
310
|
-
% of both fixltx2e and stfloats:
|
|
311
|
-
%
|
|
312
|
-
% \usepackage{dblfloatfix}
|
|
313
|
-
% The latest version can be found at:
|
|
314
|
-
% http://www.ctan.org/pkg/dblfloatfix
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
% *** PDF, URL AND HYPERLINK PACKAGES ***
|
|
320
|
-
%
|
|
321
|
-
%\usepackage{url}
|
|
322
|
-
% url.sty was written by Donald Arseneau. It provides better support for
|
|
323
|
-
% handling and breaking URLs. url.sty is already installed on most LaTeX
|
|
324
|
-
% systems. The latest version and documentation can be obtained at:
|
|
325
|
-
% http://www.ctan.org/pkg/url
|
|
326
|
-
% Basically, \url{my_url_here}.
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
% *** Do not adjust lengths that control margins, column widths, etc. ***
|
|
332
|
-
% *** Do not use packages that alter fonts (such as pslatex). ***
|
|
333
|
-
% There should be no need to do such things with IEEEtran.cls V1.6 and later.
|
|
334
|
-
% (Unless specifically asked to do so by the journal or conference you plan
|
|
335
|
-
% to submit to, of course. )
|
|
336
|
-
|
|
21
|
+
%\usepackage{orcidlink}
|
|
22
|
+
\usepackage{balance}
|
|
23
|
+
\hypersetup{
|
|
24
|
+
colorlinks=true,
|
|
25
|
+
citecolor=blue,
|
|
26
|
+
linkcolor=blue,
|
|
27
|
+
filecolor=blue,
|
|
28
|
+
urlcolor=blue,
|
|
29
|
+
}
|
|
337
30
|
|
|
338
31
|
% correct bad hyphenation here
|
|
339
|
-
\hyphenation{}
|
|
32
|
+
% \hyphenation{}
|
|
340
33
|
|
|
341
34
|
|
|
342
|
-
% =============================================================================
|
|
343
|
-
\begin{document}
|
|
344
|
-
% =============================================================================
|
|
345
|
-
%
|
|
346
|
-
% paper title
|
|
347
|
-
% Titles are generally capitalized except for words such as a, an, and, as,
|
|
348
|
-
% at, but, by, for, in, nor, of, on, or, the, to and up, which are usually
|
|
349
|
-
% not capitalized unless they are the first or last word of the title.
|
|
350
|
-
% Linebreaks \\ can be used within to get better formatting as desired.
|
|
351
|
-
% Do not put math or special symbols in the title.
|
|
352
35
|
\title{<%= config[:title] %> -- <%= config[:subtitle] %>}
|
|
353
36
|
|
|
354
37
|
|
|
355
38
|
% author names and affiliations
|
|
356
39
|
% use a multiple column layout for up to three different
|
|
357
40
|
% affiliations
|
|
358
|
-
\author{
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
41
|
+
\author{
|
|
42
|
+
\IEEEauthorblockN{%
|
|
43
|
+
Sebastien Varrette$^{\ast}$, %\,\orcidlink{0000-0001-9011-851X},
|
|
44
|
+
<%= config[:author] %>,
|
|
45
|
+
FirstName2 LastName2$^{\ddagger}$, %\,\orcidlink{XXXX},
|
|
46
|
+
and
|
|
47
|
+
FirstName3 LastName3$^{\dagger}$ %\,\orcidlink{YYYY}
|
|
48
|
+
}
|
|
49
|
+
\IEEEauthorblockA{%
|
|
50
|
+
$^{\ast}$Faculty of Science, Technology and Medicine (FSTM)\\
|
|
362
51
|
$^{\dagger}$Interdisciplinary Centre for Security Reliability and Trust\\
|
|
363
52
|
$^{\ddagger}$Research Unit in Engineering Science\\
|
|
364
53
|
2, avenue de l'Universit\'e, L-4365 Esch-sur-Alzette, Luxembourg\\
|
|
365
|
-
\texttt{Firstname.Name@uni.lu}
|
|
54
|
+
\texttt{Firstname.Name@uni.lu}
|
|
55
|
+
}
|
|
366
56
|
}
|
|
367
57
|
|
|
368
|
-
% conference papers do not typically use \thanks and this command
|
|
369
|
-
% is locked out in conference mode. If really needed, such as for
|
|
370
|
-
% the acknowledgment of grants, issue a \IEEEoverridecommandlockouts
|
|
371
|
-
% after \documentclass
|
|
372
|
-
|
|
373
|
-
% for over three affiliations, or if they all won't fit within the width
|
|
374
|
-
% of the page (and note that there is less available width in this regard for
|
|
375
|
-
% compsoc conferences compared to traditional conferences), use this
|
|
376
|
-
% alternative format:
|
|
377
|
-
%
|
|
378
|
-
%\author{\IEEEauthorblockN{Michael Shell\IEEEauthorrefmark{1},
|
|
379
|
-
%Homer Simpson\IEEEauthorrefmark{2},
|
|
380
|
-
%James Kirk\IEEEauthorrefmark{3},
|
|
381
|
-
%Montgomery Scott\IEEEauthorrefmark{3} and
|
|
382
|
-
%Eldon Tyrell\IEEEauthorrefmark{4}}
|
|
383
|
-
%\IEEEauthorblockA{\IEEEauthorrefmark{1}School of Electrical and Computer Engineering\\
|
|
384
|
-
%Georgia Institute of Technology,
|
|
385
|
-
%Atlanta, Georgia 30332--0250\\ Email: see http://www.michaelshell.org/contact.html}
|
|
386
|
-
%\IEEEauthorblockA{\IEEEauthorrefmark{2}Twentieth Century Fox, Springfield, USA\\
|
|
387
|
-
%Email: homer@thesimpsons.com}
|
|
388
|
-
%\IEEEauthorblockA{\IEEEauthorrefmark{3}Starfleet Academy, San Francisco, California 96678-2391\\
|
|
389
|
-
%Telephone: (800) 555--1212, Fax: (888) 555--1212}
|
|
390
|
-
%\IEEEauthorblockA{\IEEEauthorrefmark{4}Tyrell Inc., 123 Replicant Street, Los Angeles, California 90210--4321}}
|
|
391
|
-
|
|
392
|
-
|
|
393
58
|
% use for special paper notices
|
|
394
59
|
%\IEEEspecialpapernotice{(Invited Paper)}
|
|
395
60
|
|
|
61
|
+
% =============================================================================
|
|
62
|
+
\begin{document}
|
|
63
|
+
% =============================================================================
|
|
396
64
|
|
|
397
65
|
% make the title area
|
|
398
66
|
\maketitle
|
|
@@ -406,20 +74,11 @@
|
|
|
406
74
|
|
|
407
75
|
\acresetall
|
|
408
76
|
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
% For peer review papers, you can put extra information on the cover
|
|
415
|
-
% page as needed:
|
|
416
|
-
% \ifCLASSOPTIONpeerreview
|
|
417
|
-
% \begin{center} \bfseries EDICS Category: 3-BBND \end{center}
|
|
418
|
-
% \fi
|
|
419
|
-
%
|
|
420
|
-
% For peerreview papers, this IEEEtran command inserts a page break and
|
|
421
|
-
% creates the second title. It will be ignored for other modes.
|
|
422
|
-
\IEEEpeerreviewmaketitle
|
|
77
|
+
\begin{IEEEkeywords}
|
|
78
|
+
High Performance Computing, % \and
|
|
79
|
+
Fault Tolerance, % \and
|
|
80
|
+
Security
|
|
81
|
+
\end{IEEEkeywords}
|
|
423
82
|
|
|
424
83
|
|
|
425
84
|
% ===================================
|
|
@@ -452,44 +111,17 @@
|
|
|
452
111
|
\label{sec:conclusion}
|
|
453
112
|
\input{_conclusion}
|
|
454
113
|
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
% use section* for acknowledgment
|
|
464
|
-
\ifCLASSOPTIONcompsoc
|
|
465
|
-
% The Computer Society usually uses the plural form
|
|
466
|
-
\section*{Acknowledgments}
|
|
467
|
-
\else
|
|
468
|
-
% regular IEEE prefers the singular form
|
|
469
|
-
\section*{Acknowledgment}
|
|
470
|
-
\fi
|
|
471
|
-
the experiments presented in this paper were carried out
|
|
472
|
-
using the HPC facilities of the University of Luxembourg~\cite{VBCG_HPCS14}
|
|
473
|
-
{\small -- see \url{http://hpc.uni.lu}}.
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
% trigger a \newpage just before the given reference
|
|
480
|
-
% number - used to balance the columns on the last page
|
|
481
|
-
% adjust value as needed - may need to be readjusted if
|
|
482
|
-
% the document is modified later
|
|
483
|
-
%\IEEEtriggeratref{8}
|
|
484
|
-
% The "triggered" command can be changed if desired:
|
|
485
|
-
%\IEEEtriggercmd{\enlargethispage{-5in}}
|
|
486
|
-
|
|
487
|
-
% references section
|
|
114
|
+
~\\
|
|
115
|
+
{\noindent \textbf{Acknowledgments:}}
|
|
116
|
+
The experiments presented in this paper were carried out
|
|
117
|
+
using the HPC facilities of the University of Luxembourg~\cite{VCPKVO_HPCCT22}
|
|
118
|
+
{\small -- see \url{https://hpc.uni.lu}}.
|
|
488
119
|
|
|
489
120
|
\bibliographystyle{IEEEtran}
|
|
121
|
+
\balance
|
|
490
122
|
\bibliography{biblio}
|
|
491
123
|
|
|
492
|
-
\appendix
|
|
124
|
+
% \appendix
|
|
493
125
|
|
|
494
126
|
% \section{Acronyms used}
|
|
495
127
|
\input{_acronyms}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
% =============================================================================
|
|
2
2
|
% File: <%= config[:name] %>.tex --
|
|
3
3
|
% Author(s): <%= config[:author] %> (<%= config[:mail] %>)
|
|
4
|
-
% Time-stamp: <
|
|
4
|
+
% Time-stamp: <Wed 2022-08-17 10:49 svarrette>
|
|
5
5
|
%
|
|
6
|
-
% Copyright (c) <%= Time.now.year %> <%= config[:author]
|
|
6
|
+
% Copyright (c) <%= Time.now.year %> <%= config[:author] %> (Sebastien.Varrette@uni.lu)
|
|
7
7
|
%
|
|
8
8
|
% For more information:
|
|
9
9
|
% - LaTeX: http://www.latex-project.org/
|
|
@@ -12,17 +12,23 @@
|
|
|
12
12
|
% http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-a4.pdf
|
|
13
13
|
% =============================================================================
|
|
14
14
|
% /!\ WARNING: inspired from llncs.dem demonstration file of the LaTeX macro
|
|
15
|
-
% package from Springer-Verlag for Lecture Notes in Computer Science, version 2.4
|
|
16
|
-
% for LaTeX2e as of 16. April 2010
|
|
17
15
|
% See http://www.springer.com/gp/computer-science/lncs/conference-proceedings-guidelines
|
|
16
|
+
% See also https://latextemplates.github.io/LNCS/
|
|
18
17
|
|
|
19
|
-
\documentclass[
|
|
18
|
+
\documentclass[runningheads]{llncs}
|
|
20
19
|
%\documentclass[conference,runningheads]{llncs}
|
|
21
20
|
|
|
22
21
|
%\newcommand{\blind}[1]{\textit{\textcolor{blue}{[removed for blind review purposes]}}}
|
|
23
22
|
\newcommand{\blind}[1]{#1}
|
|
24
23
|
|
|
25
24
|
\usepackage{_style}
|
|
25
|
+
\hypersetup{
|
|
26
|
+
colorlinks=true,
|
|
27
|
+
citecolor=blue,
|
|
28
|
+
linkcolor=blue,
|
|
29
|
+
filecolor=blue,
|
|
30
|
+
urlcolor=blue,
|
|
31
|
+
}
|
|
26
32
|
|
|
27
33
|
% correct bad hyphenation here
|
|
28
34
|
\hyphenation{}
|
|
@@ -36,22 +42,26 @@
|
|
|
36
42
|
% author names and affiliations
|
|
37
43
|
\author{\blind{%
|
|
38
44
|
<%= config[:author] %>$^{\ast}$,
|
|
39
|
-
|
|
45
|
+
\orcidID{0000-0001-9011-851X}
|
|
46
|
+
\and
|
|
47
|
+
FirstName2 LastName2$^{\ddagger}$
|
|
48
|
+
\orcidID{XXXX}
|
|
49
|
+
\and
|
|
50
|
+
FirstName3 LastName3$^{\dagger}$
|
|
51
|
+
\orcidID{YYYY}
|
|
40
52
|
}
|
|
41
53
|
}
|
|
42
54
|
\institute{\blind{%
|
|
43
|
-
\email{Firstname.Lastname@uni.lu}\\
|
|
44
55
|
$^{\ast}$Computer Science and Communications (CSC) Research Unit\\
|
|
45
56
|
$^{\dagger}$Interdisciplinary Centre for Security Reliability and Trust\\
|
|
46
57
|
$^{\ddagger}$Research Unit in Engineering Science\\
|
|
47
58
|
University of Luxembourg\\
|
|
48
|
-
|
|
49
|
-
|
|
59
|
+
2, avenue de l'Universit\'e, L-4365 Esch-sur-Alzette, Luxembourg\\
|
|
60
|
+
\email{\{firtname.lastname\}@uni.lu}
|
|
50
61
|
}
|
|
51
62
|
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
%\titlerunning{<%= config[:title] %>\ldots}
|
|
63
|
+
\authorrunning{<%= config[:author] %> et al.}
|
|
64
|
+
% \titlerunning{<%= config[:title] %>\ldots}
|
|
55
65
|
% =============================================================================
|
|
56
66
|
|
|
57
67
|
\begin{document}
|
|
@@ -62,6 +72,11 @@
|
|
|
62
72
|
%_______________
|
|
63
73
|
\begin{abstract}
|
|
64
74
|
\input{_abstract}
|
|
75
|
+
\keywords{%
|
|
76
|
+
High Performance Computing \and
|
|
77
|
+
Fault Tolerance \and
|
|
78
|
+
Security
|
|
79
|
+
}
|
|
65
80
|
\end{abstract}
|
|
66
81
|
|
|
67
82
|
\acresetall
|
|
@@ -103,16 +118,13 @@
|
|
|
103
118
|
\label{sec:conclusion}
|
|
104
119
|
\input{_conclusion}
|
|
105
120
|
|
|
106
|
-
|
|
107
|
-
|
|
108
121
|
~\\
|
|
109
122
|
{\noindent \textbf{Acknowledgments:}}
|
|
110
|
-
% \\
|
|
111
123
|
The experiments presented in this paper were carried out
|
|
112
|
-
using the HPC facilities of the University of Luxembourg~\cite{
|
|
113
|
-
{\small -- see \url{
|
|
124
|
+
using the HPC facilities of the University of Luxembourg~\cite{VCPKVO_HPCCT22}
|
|
125
|
+
{\small -- see \url{https://hpc.uni.lu}}.
|
|
114
126
|
|
|
115
|
-
\bibliographystyle{
|
|
127
|
+
\bibliographystyle{splncs04}
|
|
116
128
|
% comma separated list of bibtex files, **without** .bib extension
|
|
117
129
|
\bibliography{biblio}
|
|
118
130
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
+
% Time-stamp: <Thu 2017-08-17 22:22 svarrette>
|
|
1
2
|
% =============================================================================
|
|
2
3
|
% File: <%= config[:name] %>.tex --
|
|
3
4
|
% Author(s): <%= config[:author] %> (<%= config[:mail] %>)
|
|
4
|
-
% Time-stamp: <Thu 2017-08-17 22:22 svarrette>
|
|
5
5
|
%
|
|
6
|
-
% Copyright (c) <%= Time.now.year %> <%= config[:author]
|
|
6
|
+
% Copyright (c) <%= Time.now.year %> <%= config[:author] %>
|
|
7
7
|
%
|
|
8
8
|
% For more information:
|
|
9
9
|
% - LaTeX: http://www.latex-project.org/
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
% http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-a4.pdf
|
|
13
13
|
% =============================================================================
|
|
14
14
|
|
|
15
|
-
\documentclass{beamer}
|
|
15
|
+
\documentclass[aspectratio=169]{beamer}
|
|
16
16
|
% \documentclass[draft]{beamer}
|
|
17
17
|
\usepackage{_style}
|
|
18
18
|
|
|
@@ -31,6 +31,8 @@
|
|
|
31
31
|
|
|
32
32
|
\graphicspath{{images/}} % Add this directory to the searched paths for graphics
|
|
33
33
|
|
|
34
|
+
% \usetikzlibrary{arrows,shapes,positioning,shadows,trees,intersections,backgrounds,calc,fit}
|
|
35
|
+
|
|
34
36
|
|
|
35
37
|
%%%%%%%%%% Header %%%%%%%%%%%%
|
|
36
38
|
\title{<%= config[:title] %>}
|
|
@@ -39,9 +41,8 @@
|
|
|
39
41
|
\author[<%= config[:author] %> \& al.]{
|
|
40
42
|
\underline{<%= config[:author] %>}
|
|
41
43
|
}
|
|
42
|
-
\institute[
|
|
43
|
-
|
|
44
|
-
University of Luxembourg (\href{http://www.uni.lu}{UL}), Luxembourg
|
|
44
|
+
\institute[University of Luxembourg]{
|
|
45
|
+
\myurl{https://hpc.uni.lu}
|
|
45
46
|
}
|
|
46
47
|
|
|
47
48
|
% Mandatory to **declare** a logo to be placed on the bottom right -- normally the
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
% LLNCS DOCUMENT CLASS -- version 2.
|
|
1
|
+
% LLNCS DOCUMENT CLASS -- version 2.21 (12-Jan-2022)
|
|
2
2
|
% Springer Verlag LaTeX2e support for Lecture Notes in Computer Science
|
|
3
3
|
%
|
|
4
4
|
%%
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
%% Right brace \} Tilde \~}
|
|
20
20
|
%%
|
|
21
21
|
\NeedsTeXFormat{LaTeX2e}[1995/12/01]
|
|
22
|
-
\ProvidesClass{llncs}[
|
|
22
|
+
\ProvidesClass{llncs}[2022/01/12 v2.21
|
|
23
23
|
^^J LaTeX document class for Lecture Notes in Computer Science]
|
|
24
24
|
% Options
|
|
25
25
|
\let\if@envcntreset\iffalse
|
|
@@ -77,40 +77,40 @@
|
|
|
77
77
|
\fi}
|
|
78
78
|
%
|
|
79
79
|
\def\switcht@albion{%
|
|
80
|
-
\def\abstractname{Abstract.}
|
|
81
|
-
\def\ackname{Acknowledgement.}
|
|
82
|
-
\def\andname{and}
|
|
83
|
-
\def\lastandname{\unskip, and}
|
|
84
|
-
\def\appendixname{Appendix}
|
|
85
|
-
\def\chaptername{Chapter}
|
|
86
|
-
\def\claimname{Claim}
|
|
87
|
-
\def\conjecturename{Conjecture}
|
|
88
|
-
\def\contentsname{Table of Contents}
|
|
89
|
-
\def\corollaryname{Corollary}
|
|
90
|
-
\def\definitionname{Definition}
|
|
91
|
-
\def\examplename{Example}
|
|
92
|
-
\def\exercisename{Exercise}
|
|
93
|
-
\def\figurename{Fig.}
|
|
94
|
-
\def\keywordname{{\bf Keywords:}}
|
|
95
|
-
\def\indexname{Index}
|
|
96
|
-
\def\lemmaname{Lemma}
|
|
97
|
-
\def\contriblistname{List of Contributors}
|
|
98
|
-
\def\listfigurename{List of Figures}
|
|
99
|
-
\def\listtablename{List of Tables}
|
|
100
|
-
\def\mailname{{\it Correspondence to\/}:}
|
|
101
|
-
\def\noteaddname{Note added in proof}
|
|
102
|
-
\def\notename{Note}
|
|
103
|
-
\def\partname{Part}
|
|
104
|
-
\def\problemname{Problem}
|
|
105
|
-
\def\proofname{Proof}
|
|
106
|
-
\def\propertyname{Property}
|
|
107
|
-
\def\propositionname{Proposition}
|
|
108
|
-
\def\questionname{Question}
|
|
109
|
-
\def\remarkname{Remark}
|
|
110
|
-
\def\seename{see}
|
|
111
|
-
\def\solutionname{Solution}
|
|
112
|
-
\def\subclassname{{\it Subject Classifications\/}:}
|
|
113
|
-
\def\tablename{Table}
|
|
80
|
+
\def\abstractname{Abstract.}
|
|
81
|
+
\def\ackname{Acknowledgement.}
|
|
82
|
+
\def\andname{and}
|
|
83
|
+
\def\lastandname{\unskip, and}
|
|
84
|
+
\def\appendixname{Appendix}
|
|
85
|
+
\def\chaptername{Chapter}
|
|
86
|
+
\def\claimname{Claim}
|
|
87
|
+
\def\conjecturename{Conjecture}
|
|
88
|
+
\def\contentsname{Table of Contents}
|
|
89
|
+
\def\corollaryname{Corollary}
|
|
90
|
+
\def\definitionname{Definition}
|
|
91
|
+
\def\examplename{Example}
|
|
92
|
+
\def\exercisename{Exercise}
|
|
93
|
+
\def\figurename{Fig.}
|
|
94
|
+
\def\keywordname{{\bf Keywords:}}
|
|
95
|
+
\def\indexname{Index}
|
|
96
|
+
\def\lemmaname{Lemma}
|
|
97
|
+
\def\contriblistname{List of Contributors}
|
|
98
|
+
\def\listfigurename{List of Figures}
|
|
99
|
+
\def\listtablename{List of Tables}
|
|
100
|
+
\def\mailname{{\it Correspondence to\/}:}
|
|
101
|
+
\def\noteaddname{Note added in proof}
|
|
102
|
+
\def\notename{Note}
|
|
103
|
+
\def\partname{Part}
|
|
104
|
+
\def\problemname{Problem}
|
|
105
|
+
\def\proofname{Proof}
|
|
106
|
+
\def\propertyname{Property}
|
|
107
|
+
\def\propositionname{Proposition}
|
|
108
|
+
\def\questionname{Question}
|
|
109
|
+
\def\remarkname{Remark}
|
|
110
|
+
\def\seename{see}
|
|
111
|
+
\def\solutionname{Solution}
|
|
112
|
+
\def\subclassname{{\it Subject Classifications\/}:}
|
|
113
|
+
\def\tablename{Table}
|
|
114
114
|
\def\theoremname{Theorem}}
|
|
115
115
|
\switcht@albion
|
|
116
116
|
% Names of theorem like environments are already defined
|
|
@@ -875,8 +875,10 @@ to0pt{\kern0.55\wd0\vrule height0.45\ht0\hss}\box0}}}}
|
|
|
875
875
|
\or \ddagger\ddagger \else\@ctrerr\fi}}
|
|
876
876
|
|
|
877
877
|
\def\inst#1{\unskip$^{#1}$}
|
|
878
|
+
\def\orcidID#1{\unskip$^{[#1]}$} % added MR 2018-03-10
|
|
878
879
|
\def\fnmsep{\unskip$^,$}
|
|
879
880
|
\def\email#1{{\tt#1}}
|
|
881
|
+
|
|
880
882
|
\AtBeginDocument{\@ifundefined{url}{\def\url#1{#1}}{}%
|
|
881
883
|
\@ifpackageloaded{babel}{%
|
|
882
884
|
\@ifundefined{extrasenglish}{}{\addto\extrasenglish{\switcht@albion}}%
|
|
@@ -884,8 +886,12 @@ to0pt{\kern0.55\wd0\vrule height0.45\ht0\hss}\box0}}}}
|
|
|
884
886
|
\@ifundefined{extrasgerman}{}{\addto\extrasgerman{\switcht@deutsch}}%
|
|
885
887
|
\@ifundefined{extrasngerman}{}{\addto\extrasngerman{\switcht@deutsch}}%
|
|
886
888
|
}{\switcht@@therlang}%
|
|
887
|
-
\providecommand{\keywords}[1]{\
|
|
889
|
+
\providecommand{\keywords}[1]{\def\and{{\textperiodcentered} }%
|
|
890
|
+
\par\addvspace\baselineskip
|
|
888
891
|
\noindent\keywordname\enspace\ignorespaces#1}%
|
|
892
|
+
\@ifpackageloaded{hyperref}{%
|
|
893
|
+
\def\doi#1{\href{https://doi.org/\detokenize{#1}}{\url{https://doi.org/#1}}}}{
|
|
894
|
+
\def\doi#1{https://doi.org/\detokenize{#1}}}
|
|
889
895
|
}
|
|
890
896
|
\def\homedir{\~{ }}
|
|
891
897
|
|
|
@@ -946,6 +952,8 @@ to0pt{\kern0.55\wd0\vrule height0.45\ht0\hss}\box0}}}}
|
|
|
946
952
|
%
|
|
947
953
|
\if!\the\tocauthor!\relax
|
|
948
954
|
{\def\and{\noexpand\protect\noexpand\and}%
|
|
955
|
+
\def\inst##1{}% added MR 2017-09-20 to remove inst numbers from the TOC
|
|
956
|
+
\def\orcidID##1{}% added MR 2017-09-20 to remove ORCID ids from the TOC
|
|
949
957
|
\protected@xdef\toc@uthor{\@author}}%
|
|
950
958
|
\else
|
|
951
959
|
\def\\{\noexpand\protect\noexpand\newline}%
|
|
@@ -961,7 +969,9 @@ to0pt{\kern0.55\wd0\vrule height0.45\ht0\hss}\box0}}}}
|
|
|
961
969
|
\else
|
|
962
970
|
\edef\@author{\the\authorrunning}%
|
|
963
971
|
\fi
|
|
964
|
-
\global\setbox\authrun=\hbox{\
|
|
972
|
+
\global\setbox\authrun=\hbox{\def\inst##1{}% added MR 2017-09-20 to remove inst numbers from the runninghead
|
|
973
|
+
\def\orcidID##1{}% added MR 2017-09-20 to remove ORCID ids from the runninghead
|
|
974
|
+
\small\unboldmath\@author\unskip}%
|
|
965
975
|
\ifdim\wd\authrun>\instindent
|
|
966
976
|
\typeout{Names of authors too long for running head. Please supply}%
|
|
967
977
|
\typeout{a shorter form with \string\authorrunning\space prior to
|
|
@@ -1063,7 +1073,7 @@ to0pt{\kern0.55\wd0\vrule height0.45\ht0\hss}\box0}}}}
|
|
|
1063
1073
|
\global\@namedef{end#1}{\@endtheorem}}}}
|
|
1064
1074
|
|
|
1065
1075
|
\def\@spthm#1#2#3#4{\topsep 7\p@ \@plus2\p@ \@minus4\p@
|
|
1066
|
-
\refstepcounter{#1}
|
|
1076
|
+
\refstepcounter{#1}%
|
|
1067
1077
|
\@ifnextchar[{\@spythm{#1}{#2}{#3}{#4}}{\@spxthm{#1}{#2}{#3}{#4}}}
|
|
1068
1078
|
|
|
1069
1079
|
\def\@spxthm#1#2#3#4{\@spbegintheorem{#2}{\csname the#1\endcsname}{#3}{#4}%
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
%% BibTeX bibliography style `
|
|
1
|
+
%% BibTeX bibliography style `splncs04'
|
|
2
2
|
%%
|
|
3
3
|
%% BibTeX bibliography style for use with numbered references in
|
|
4
4
|
%% Springer Verlag's "Lecture Notes in Computer Science" series.
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
%% - Used for editors the same name conventions used for authors (see function format.in.ed.booktitle)
|
|
32
32
|
%% - Removed a \newblock to avoid long spaces between title and "In: ..."
|
|
33
33
|
%% - Added function titto.space.prefix to add a space instead of "~" after the (removed) "vol." label
|
|
34
|
+
%% - Added doi
|
|
34
35
|
%% ================================================================================================
|
|
35
36
|
%% This was file `titto.bst',
|
|
36
37
|
%% generated with the docstrip utility.
|
|
@@ -73,6 +74,7 @@ ENTRY
|
|
|
73
74
|
author
|
|
74
75
|
booktitle
|
|
75
76
|
chapter
|
|
77
|
+
doi
|
|
76
78
|
edition
|
|
77
79
|
editor
|
|
78
80
|
eid
|
|
@@ -243,8 +245,15 @@ FUNCTION {field.or.null}
|
|
|
243
245
|
}
|
|
244
246
|
FUNCTION {emphasize}
|
|
245
247
|
{ skip$ }
|
|
248
|
+
|
|
249
|
+
FUNCTION {embolden}
|
|
250
|
+
{ duplicate$ empty$
|
|
251
|
+
{ pop$ "" }
|
|
252
|
+
{ "\textbf{" swap$ * "}" * }
|
|
253
|
+
if$
|
|
254
|
+
}
|
|
246
255
|
FUNCTION {tie.or.space.prefix}
|
|
247
|
-
{ duplicate$ text.length$ #
|
|
256
|
+
{ duplicate$ text.length$ #5 <
|
|
248
257
|
{ "~" }
|
|
249
258
|
{ " " }
|
|
250
259
|
if$
|
|
@@ -436,6 +445,14 @@ FUNCTION {format.url}
|
|
|
436
445
|
if$
|
|
437
446
|
}
|
|
438
447
|
|
|
448
|
+
FUNCTION {format.doi} % added in splncs04.bst
|
|
449
|
+
{ doi empty$
|
|
450
|
+
{ "" }
|
|
451
|
+
{ after.block 'output.state :=
|
|
452
|
+
"\doi{" doi * "}" * }
|
|
453
|
+
if$
|
|
454
|
+
}
|
|
455
|
+
|
|
439
456
|
INTEGERS { nameptr namesleft numnames }
|
|
440
457
|
|
|
441
458
|
|
|
@@ -768,17 +785,17 @@ FUNCTION {format.journal.eid}
|
|
|
768
785
|
if$
|
|
769
786
|
}
|
|
770
787
|
FUNCTION {format.vol.num.pages} % this function is used only for journal entries
|
|
771
|
-
{ volume field.or.null
|
|
788
|
+
{ volume field.or.null embolden
|
|
772
789
|
duplicate$ empty$ 'skip$
|
|
773
790
|
{
|
|
774
|
-
%
|
|
775
|
-
|
|
776
|
-
%
|
|
777
|
-
%
|
|
778
|
-
%
|
|
791
|
+
% bbl.volume swap$ tie.or.space.prefix
|
|
792
|
+
titto.bbl.volume swap$ titto.space.prefix
|
|
793
|
+
% rationale for the change above: for journals you don't want "vol." label
|
|
794
|
+
% hence it does not make sense to attach the journal number to the label when
|
|
795
|
+
% it is short
|
|
779
796
|
"volume" bibinfo.check
|
|
780
797
|
* *
|
|
781
|
-
|
|
798
|
+
}
|
|
782
799
|
if$
|
|
783
800
|
number "number" bibinfo.check duplicate$ empty$ 'skip$
|
|
784
801
|
{
|
|
@@ -1006,6 +1023,7 @@ FUNCTION {article}
|
|
|
1006
1023
|
}
|
|
1007
1024
|
if$
|
|
1008
1025
|
% new.block
|
|
1026
|
+
format.doi output
|
|
1009
1027
|
format.url output
|
|
1010
1028
|
% new.block
|
|
1011
1029
|
format.note output
|
|
@@ -1042,6 +1060,7 @@ FUNCTION {book}
|
|
|
1042
1060
|
format.edition output
|
|
1043
1061
|
format.date "year" output.check
|
|
1044
1062
|
% new.block
|
|
1063
|
+
format.doi output
|
|
1045
1064
|
format.url output
|
|
1046
1065
|
% new.block
|
|
1047
1066
|
format.note output
|
|
@@ -1058,6 +1077,7 @@ FUNCTION {booklet}
|
|
|
1058
1077
|
address "address" bibinfo.check output
|
|
1059
1078
|
format.date output
|
|
1060
1079
|
% new.block
|
|
1080
|
+
format.doi output
|
|
1061
1081
|
format.url output
|
|
1062
1082
|
% new.block
|
|
1063
1083
|
format.note output
|
|
@@ -1098,6 +1118,7 @@ FUNCTION {inbook}
|
|
|
1098
1118
|
format.edition output
|
|
1099
1119
|
format.date "year" output.check
|
|
1100
1120
|
% new.block
|
|
1121
|
+
format.doi output
|
|
1101
1122
|
format.url output
|
|
1102
1123
|
% new.block
|
|
1103
1124
|
format.note output
|
|
@@ -1126,6 +1147,7 @@ FUNCTION {incollection}
|
|
|
1126
1147
|
}
|
|
1127
1148
|
if$
|
|
1128
1149
|
% new.block
|
|
1150
|
+
format.doi output
|
|
1129
1151
|
format.url output
|
|
1130
1152
|
% new.block
|
|
1131
1153
|
format.note output
|
|
@@ -1158,6 +1180,7 @@ FUNCTION {inproceedings}
|
|
|
1158
1180
|
}
|
|
1159
1181
|
if$
|
|
1160
1182
|
% new.block
|
|
1183
|
+
format.doi output
|
|
1161
1184
|
format.url output
|
|
1162
1185
|
% new.block
|
|
1163
1186
|
format.note output
|
|
@@ -1197,6 +1220,7 @@ FUNCTION {manual}
|
|
|
1197
1220
|
format.edition output
|
|
1198
1221
|
format.date output
|
|
1199
1222
|
% new.block
|
|
1223
|
+
format.doi output
|
|
1200
1224
|
format.url output
|
|
1201
1225
|
% new.block
|
|
1202
1226
|
format.note output
|
|
@@ -1216,6 +1240,7 @@ FUNCTION {mastersthesis}
|
|
|
1216
1240
|
address "address" bibinfo.check output
|
|
1217
1241
|
format.date "year" output.check
|
|
1218
1242
|
% new.block
|
|
1243
|
+
format.doi output
|
|
1219
1244
|
format.url output
|
|
1220
1245
|
% new.block
|
|
1221
1246
|
format.note output
|
|
@@ -1232,6 +1257,7 @@ FUNCTION {misc}
|
|
|
1232
1257
|
howpublished "howpublished" bibinfo.check output
|
|
1233
1258
|
format.date output
|
|
1234
1259
|
% new.block
|
|
1260
|
+
format.doi output
|
|
1235
1261
|
format.url output
|
|
1236
1262
|
% new.block
|
|
1237
1263
|
format.note output
|
|
@@ -1251,6 +1277,7 @@ FUNCTION {phdthesis}
|
|
|
1251
1277
|
address "address" bibinfo.check output
|
|
1252
1278
|
format.date "year" output.check
|
|
1253
1279
|
% new.block
|
|
1280
|
+
format.doi output
|
|
1254
1281
|
format.url output
|
|
1255
1282
|
% new.block
|
|
1256
1283
|
format.note output
|
|
@@ -1294,6 +1321,7 @@ FUNCTION {proceedings}
|
|
|
1294
1321
|
if$
|
|
1295
1322
|
format.date "year" output.check
|
|
1296
1323
|
% new.block
|
|
1324
|
+
format.doi output
|
|
1297
1325
|
format.url output
|
|
1298
1326
|
% new.block
|
|
1299
1327
|
format.note output
|
|
@@ -1313,6 +1341,7 @@ FUNCTION {techreport}
|
|
|
1313
1341
|
address "address" bibinfo.check output
|
|
1314
1342
|
format.date "year" output.check
|
|
1315
1343
|
% new.block
|
|
1344
|
+
format.doi output
|
|
1316
1345
|
format.url output
|
|
1317
1346
|
% new.block
|
|
1318
1347
|
format.note output
|
|
@@ -1503,6 +1532,8 @@ FUNCTION {begin.bib}
|
|
|
1503
1532
|
write$ newline$
|
|
1504
1533
|
"\providecommand{\urlprefix}{URL }"
|
|
1505
1534
|
write$ newline$
|
|
1535
|
+
"\providecommand{\doi}[1]{https://doi.org/#1}"
|
|
1536
|
+
write$ newline$
|
|
1506
1537
|
}
|
|
1507
1538
|
EXECUTE {begin.bib}
|
|
1508
1539
|
EXECUTE {init.state.consts}
|
|
@@ -1515,5 +1546,3 @@ EXECUTE {end.bib}
|
|
|
1515
1546
|
%% End of customized bst file
|
|
1516
1547
|
%%
|
|
1517
1548
|
%% End of file `titto.bst'.
|
|
1518
|
-
|
|
1519
|
-
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: falkorlib
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sebastien Varrette
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-08-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -490,7 +490,7 @@ files:
|
|
|
490
490
|
- templates/latex/letter/_content.md.erb
|
|
491
491
|
- templates/latex/letter/main.tex.erb
|
|
492
492
|
- templates/latex/llncs/llncs.cls
|
|
493
|
-
- templates/latex/llncs/
|
|
493
|
+
- templates/latex/llncs/splncs04.bst
|
|
494
494
|
- templates/mkdocs/docs/README.md.erb
|
|
495
495
|
- templates/mkdocs/docs/contributing/README.md.erb
|
|
496
496
|
- templates/mkdocs/docs/contributing/setup.md.erb
|