Commit 47d6aa69 authored by Valentin Platzgummer's avatar Valentin Platzgummer

Qt Version added to WimaDok/main.tex

parent 2feb0308
No preview for this file type
No preview for this file type
...@@ -88,6 +88,8 @@ The extension can generate flight plans based on minimal user input. This is don ...@@ -88,6 +88,8 @@ The extension can generate flight plans based on minimal user input. This is don
\subsection{Inventory} \subsection{Inventory}
The source code can be cloned from the git repository \gitrepourl. The root directory of the project contains the folder "deploy" inside which a \verb|.AppImage| of the program can be found. Under GNU/Linux \qgc can be launched from console or by double-clicking the \verb|.AppImage|. It is also possible to build versions for Microsoft Windows, Android or Mac. For this purpose refer to the \qgc documentation under \qgcdocurl. The source code can be cloned from the git repository \gitrepourl. The root directory of the project contains the folder "deploy" inside which a \verb|.AppImage| of the program can be found. Under GNU/Linux \qgc can be launched from console or by double-clicking the \verb|.AppImage|. It is also possible to build versions for Microsoft Windows, Android or Mac. For this purpose refer to the \qgc documentation under \qgcdocurl.
Built with Qt 5.11.3.
\section{Menus and Instructions} \section{Menus and Instructions}
\subsection{Warnings} \subsection{Warnings}
......
...@@ -26,7 +26,7 @@ namespace OptimisationTools { ...@@ -26,7 +26,7 @@ namespace OptimisationTools {
// The list with all Nodes (elements) // The list with all Nodes (elements)
QVector<Node> nodeList(numElements); QVector<Node> nodeList(numElements);
// This list will be initalized with (pointer to) all elements of nodeList. // This list will be initalized with indices referring to the elements of nodeList.
// Elements will be successively remove during the execution of the Dijkstra Algorithm. // Elements will be successively remove during the execution of the Dijkstra Algorithm.
QVector<int> workingSet(numElements); QVector<int> workingSet(numElements);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment