Skip to content

Commit d9e80bf

Browse files
committed
Presentation: Feedback from Stefan
1 parent 31f7682 commit d9e80bf

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

presentation/figures/diagrams_ram.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
title={Memory use on the laptop},
55
height=.7\textheight,
66
xlabel={depth of the \gls{access-tree}},
7-
ylabel={kilobytes},
7+
ylabel={KB},
88
xmin=0.75, xmax=4.25,
99
ymin=0, ymax=360000,
1010
xtick=data,
@@ -24,7 +24,7 @@
2424
\addplot [color=blue, mark=none] {83560};
2525
\addlegendentry{YCT Enc};
2626
\addplot [color=orange, mark=none] {22616};
27-
\addplot [color=black, dashed, mark=none] {256000};
27+
\addplot [color=red, thick, dashed, mark=none] {256000} node [below,pos=.925, anchor=north east, font=\small] {SoC RAM size};
2828
\end{axis}
2929
\end{tikzpicture}
3030
\end{minipage}

presentation/figures/evaluation-tree.tex

+11-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
\begin{figure}
2-
\begin{tikzpicture}
3-
\tikzstyle{every node}=[circle, draw];
2+
\begin{tikzpicture}[inner/.style={circle}, l/.style={font=\small, align=center}]
3+
\tikzstyle{every node}=[draw];
44
\only<1>{
55
\tikzstyle{level 1}=[sibling distance=2cm];
6-
\draw (0,0) node (root) [anchor=south] {4} child {node {A}} child {node {B}} child {node {C}} child {node {D}};
6+
\draw (0,0) node[inner] (root) [anchor=south] {4} child {node {A}} child {node {B}} child {node {C}} child {node {D}};
77
}
88
\only<2>{
99
\tikzstyle{level 1}=[sibling distance=1cm];
10-
\draw (0,0) node (root) [anchor=south] {8} child {node {A}} child {node {B}} child {node {C}} child {node {D}} child {node {E}} child {node {F}} child {node {G}};
11-
}
12-
13-
10+
\draw (0,0) node[inner] (root) [anchor=south] {8} child {node {A}} child {node {B}} child {node {C}} child {node {D}} child {node {E}} child {node {F}} child {node {G}};
11+
}
1412
\end{tikzpicture}
1513
\caption*{Flat access tree}
1614
\end{figure}
@@ -27,17 +25,17 @@
2725
% \end{figure}}
2826

2927
\begin{figure}
30-
\begin{tikzpicture}
31-
\tikzstyle{every node}=[circle, draw];
28+
\begin{tikzpicture}[inner/.style={circle}, l/.style={font=\small, align=center}]
29+
\tikzstyle{every node}=[draw];
3230
\tikzstyle{level 1}=[sibling distance=4cm, level distance=1cm];
3331
\tikzstyle{level 2}=[sibling distance=2cm, level distance=1.5cm];
3432
\tikzstyle{level 3}=[sibling distance=1cm, level distance=1.5cm];
3533

36-
\only<1>{\draw (0,0) node (root) [anchor=south] {2} child {node {2} child {node {A}} child {node {B}}} child {node {2} child {node {C}} child {node {D}}};}
34+
\only<1>{\draw (0,0) node[inner] (root) [anchor=south] {2} child {node[inner] {2} child {node {A}} child {node {B}}} child {node[inner] {2} child {node {C}} child {node {D}}};}
3735

38-
\only<2>{\draw (0,0) node (root) [anchor=south] {2}
39-
child {node {2} child { node {2} child {node {A}} child {node {B}}} child {node {2} child {node {C}} child {node {D}}}}
40-
child {node {2} child { node {2} child {node {D}} child {node {E}}} child { node {2} child {node {F}} child {node {G}}}
36+
\only<2>{\draw (0,0) node[inner] (root) [anchor=south] {2}
37+
child {node[inner] {2} child { node[inner] {2} child {node {A}} child {node {B}}} child { node[inner] {2} child {node {C}} child {node {D}}}}
38+
child {node[inner] {2} child { node[inner] {2} child {node {D}} child {node {E}}} child { node[inner] {2} child {node {F}} child {node {G}}}
4139
};}
4240
\end{tikzpicture}
4341
\caption*{Perfect binary access tree (depth \only<1>{2}\only<2>{3})}

presentation/presentation.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ \section{Results}
333333
\begin{block}{\centering GPSW}
334334
\begin{itemize}
335335
\item Encryption takes up to 8.5\,s, decryption up to 80\,s
336-
\item RAM shortage puts hard limit on policy size (two levels), even if using \textbf{entire} available RAM!
336+
\item RAM shortage puts hard limit on policy size (two levels), even if using entire available RAM!
337337
\end{itemize}
338338
\end{block}
339339
\column{.49\textwidth}

0 commit comments

Comments
 (0)