You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
791 B
23 lines
791 B
% This file can be used to display the exported plots from multi-objective model checking
|
|
|
|
\documentclass{article}
|
|
\usepackage{pgfplots}
|
|
\usepackage{filecontents}
|
|
|
|
\newcommand{\resultPath}{../ma/stream/results/}
|
|
|
|
\begin{document}
|
|
\centering
|
|
\begin{tikzpicture}[scale=1.75]
|
|
\begin{axis}[
|
|
enlargelimits=false,
|
|
axis background/.style={fill=red!50}
|
|
]
|
|
\addplot[fill=white, very thin] table [col sep=comma] {\resultPath overapproximation.csv} -- cycle;
|
|
\addplot[fill=green, very thin] table [col sep=comma] {\resultPath underapproximation.csv} -- cycle;
|
|
\addplot[mark=o, mark options={blue, scale=1.3, thick}, only marks] table [col sep=comma] {\resultPath paretopoints.csv};
|
|
\addplot[mark=false] table [col sep=comma] {\resultPath boundaries.csv};
|
|
\end{axis}
|
|
\end{tikzpicture}
|
|
|
|
\end{document}
|