Update on Overleaf.

This commit is contained in:
nachideo.em 2022-03-15 15:22:40 +00:00 committed by node
parent 35c589ee8b
commit 607d680655

View file

@ -1 +1,21 @@
AST construction goes here
\begin{algorithm}
\caption{\texttt{astparse}$(s)$}
\label{alg:abort}
\begin{algorithmic}[1]
\Require{$\mathcal N$: A source code from a cell}
\State{$node = genericvisit(s)$}
\If{\texttt{isinstance(node,ast.Name)}}
\If { \texttt{ in main scope} }
\State{\texttt{Populate store and load dictionaries in main scope}}
\ElsIf{}
\EndIf
\ElsIf{$c_0$.\texttt{done}}
\State{Clear $c_0$'s results}
\For{$c$ s.t. $(c_0, c) \in \mathcal G$}
\State{\texttt{abort}$(\mathcal N, c)$}
\EndFor
\EndIf
\end{algorithmic}
\end{algorithm}