Components

Select Connection: INPUT[inlineListSuggester(optionQuery(#area)):connections] Date Created: INPUT[dateTime(defaultValue(null)):Date_Created] Due Date: INPUT[dateTime(defaultValue(null)):Due_Date] Priority Level: INPUT[inlineSelect(option(1 Critical), option(2 High), option(3 Medium), option(4 Low)):Priority_Level] Status: INPUT[inlineSelect(option(1 To Do), option(2 In Progress), option(3 Testing), option(4 Completed), option(5 Blocked)):Status]

Description

    \begin{algorithm}
    \caption{PUFFINN query algorithm}
    \begin{algorithmic}
		\State $PQ \leftarrow \text{empty priority queue of (point, dist) of unique points}$
		\For{$i\leftarrow K,K-1,...,0$}
		\For{$j\leftarrow 1,2,...,L$}
		\For{$x\in \Pi_{i,j}(q)$}
			\If{$dist(q,x_k^\prime)\ge dist(q,x)$}
				\State $PQ\text{.insert}(x,dist(q,x))$
            \EndIf
        \EndFor
        \If{$i=0$ \Or $\Big(PQ\text{.size}()=k$ \And $j\ge \frac{\ln(1-\delta)}{\max(p(q,x_k^\prime), p(q,x_s))^i}\Big)$} 
	        \Return $PQ$
        \EndIf
        \EndFor
        \EndFor
    \end{algorithmic}
    \end{algorithm}