feat(vla): add SmolVLA conditioning and experiment artifacts
This commit is contained in:
@@ -0,0 +1,472 @@
|
||||
% File: corl_2026.sty
|
||||
%
|
||||
% Latex templates for the Conference on Robot Learning (CoRL)
|
||||
%
|
||||
% This template is heavily inspired by the NeurIPS, ICML, ICLR and IEEE Transactions latex templates.
|
||||
% Hence we would like to thank: Roman Garnett and the previous mantainers of the NIPS style, Percy Liang and the previous mantainers of the ICML style, Hugo Larochelle for the ICLR style, and Michael Shell for the IEEE Transactions style.
|
||||
%
|
||||
% History:
|
||||
% 2017/04/16 - First revision by Roberto Calandra (roberto.calandra@berkeley.edu).
|
||||
% Main changes:
|
||||
% - The abstract is more compact compared to NeurIPS/ICML
|
||||
% - References are by default using natbib with squared numbers (e.g., [1])
|
||||
% - DOI fields from the bibtex are automatically converted to hyperlinks
|
||||
% to the corresponding page
|
||||
% - acknowledgments are now a command, and the corresponding subsubsection is
|
||||
% automatically included only in the final version
|
||||
% 2017/06/12 - Modified to use corlabbrvnat.bst, which order the reference by order of appearance in the paper
|
||||
% 2017/06/13 - fixed typo
|
||||
% 2018/05/09 - Slightly modified for CoRL 2018 by Jun Morimoto (xmorimo@atr.jp)
|
||||
% 2019/01/28 - Slightly modified for CoRL 2019 by Jun Nakanishi (jnakanis@meijo-u.ac.jp)
|
||||
% 2020/02/02 - Slightly modified for CoRL 2020 by Cynthia Matuszek (cmat@umbc.edu)
|
||||
% 2020/08/19 - Added preprint option by Roberto Calandra (rcalandra@fb.com)
|
||||
% 2021/05/06 - Slightly modified for CoRL 2021 by Gerhard Neumann (gerhard.neumann@kit.edu)
|
||||
% 2022/03/09 - Slightly modified for CoRL 2022 by Minas Liarokapis (minas.liarokapis@auckland.ac.nz)
|
||||
% 2022/03/06 - Slightly modified for CoRL 2023 by Marc Toussaint (toussaint@tu-berlin.de)
|
||||
% 2024/03/26 - Slightly modified for CoRL 2024 by David Held (dheld@andrew.cmu.edu)
|
||||
% 2026/01/10 - Slightly modified for CoRL 2026 by Yoonchang Sung (yoonchang.sung@ntu.edu.sg)
|
||||
%
|
||||
% TODO: nohyperref is not working at the moment
|
||||
%
|
||||
|
||||
\NeedsTeXFormat{LaTeX2e}
|
||||
|
||||
% Content to be changed from year to year
|
||||
\ProvidesPackage{corl_2026}[2026/08/15 CORL2026 submission/preprint/camera-ready style file]
|
||||
\newcommand{\@conferenceordinal}{10th}
|
||||
\newcommand{\@conferenceyear}{2026}
|
||||
\newcommand{\@conferencelocation}{Austin TX, USA}
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% Accepted options: [final,preprint,nonatbib,nohyperref]
|
||||
|
||||
% Declare the final option, which creates camera-ready copy
|
||||
\newif\if@conferencefinal\@conferencefinalfalse
|
||||
\DeclareOption{final}{
|
||||
\@conferencefinaltrue
|
||||
}
|
||||
|
||||
% Declare the preprint option, which creates a camera-ready copy without the corl footnote
|
||||
\newif\if@preprinttype\@preprinttypefalse
|
||||
\DeclareOption{preprint}{
|
||||
\@preprinttypetrue
|
||||
}
|
||||
|
||||
% The natbib package is loaded by default. Declaring the nonatbib option, does not load natbib in case of package clash (users can pass options to natbib via \PassOptionsToPackage)
|
||||
\newif\if@natbib\@natbibtrue
|
||||
\DeclareOption{nonatbib}{
|
||||
\@natbibfalse
|
||||
}
|
||||
|
||||
% The hyperref package is loaded by default. Declaring the nohyperref option, does not load the hyperref.
|
||||
\DeclareOption{nohyperref}{%
|
||||
\gdef\nohyperref{1}
|
||||
}
|
||||
|
||||
% Activate the options
|
||||
\ProcessOptions\relax
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% Required packages:
|
||||
|
||||
\RequirePackage{lineno}
|
||||
\RequirePackage{color}
|
||||
|
||||
% Load natbib unless told otherwise
|
||||
\if@natbib
|
||||
\RequirePackage[square,numbers]{natbib}
|
||||
\bibliographystyle{corlabbrvnat}
|
||||
\fi
|
||||
|
||||
% set page geometry
|
||||
\RequirePackage{hyperref} % hyperlinks
|
||||
\RequirePackage[verbose=true,letterpaper]{geometry}
|
||||
\AtBeginDocument{
|
||||
\newgeometry{
|
||||
textheight=9in,
|
||||
textwidth=5.5in,
|
||||
top=1in,
|
||||
headheight=12pt,
|
||||
headsep=25pt,
|
||||
footskip=30pt
|
||||
}
|
||||
\@ifpackageloaded{fullpage}
|
||||
{\PackageWarning{corl_2026}{fullpage package not allowed! Overwriting formatting.}}
|
||||
{}
|
||||
}
|
||||
|
||||
|
||||
\ifdefined\nohyperref\else\ifdefined\hypersetup
|
||||
\definecolor{mydarkblue}{rgb}{0,0.08,0.45}
|
||||
\hypersetup{ %
|
||||
pdftitle={},
|
||||
pdfauthor={},
|
||||
pdfsubject={Proceedings of the \@conferenceordinal\/ Conference on Robot Learning (CoRL \@conferenceyear)},
|
||||
pdfkeywords={},
|
||||
pdfborder=0 0 0,
|
||||
pdfpagemode=UseNone,
|
||||
colorlinks=true,
|
||||
linkcolor=mydarkblue,
|
||||
citecolor=mydarkblue,
|
||||
filecolor=mydarkblue,
|
||||
urlcolor=mydarkblue,
|
||||
pdfview=FitH}
|
||||
|
||||
\ifdefined\isaccepted \else
|
||||
\hypersetup{pdfauthor={Anonymous Submission}}
|
||||
\fi
|
||||
\fi\fi
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
|
||||
% fonts
|
||||
\renewcommand{\rmdefault}{ptm}
|
||||
\renewcommand{\sfdefault}{phv}
|
||||
|
||||
% Create acknowledgments -- only if the option 'final' is activated
|
||||
\providecommand{\acknowledgments}{}
|
||||
\renewcommand{\acknowledgments}[1]{%
|
||||
\if@conferencefinal%
|
||||
\subsubsection*{Acknowledgments} #1
|
||||
\fi
|
||||
\if@preprinttype%
|
||||
\subsubsection*{Acknowledgments} #1
|
||||
\fi
|
||||
}
|
||||
|
||||
|
||||
% handle tweaks for camera-ready copy vs. submission copy
|
||||
\if@conferencefinal
|
||||
\newcommand{\@noticestring}{%
|
||||
\@conferenceordinal\/ Conference on Robot Learning
|
||||
(CoRL \@conferenceyear), \@conferencelocation.%
|
||||
}
|
||||
\else
|
||||
\if@preprinttype
|
||||
\newcommand{\@noticestring}{%
|
||||
% Nothing here.
|
||||
}
|
||||
\else
|
||||
\newcommand{\@noticestring}{%
|
||||
Submitted to the \@conferenceordinal\/ Conference on Robot Learning (CoRL \@conferenceyear). Do not distribute.%
|
||||
}
|
||||
|
||||
% line numbers for submission
|
||||
\linenumbers
|
||||
|
||||
% fix incompatibilities between lineno and amsmath, if required, by
|
||||
% transparently wrapping linenomath environments around amsmath
|
||||
% environments
|
||||
\AtBeginDocument{%
|
||||
\@ifpackageloaded{amsmath}{%
|
||||
\newcommand*\patchAmsMathEnvironmentForLineno[1]{%
|
||||
\expandafter\let\csname old#1\expandafter\endcsname\csname #1\endcsname
|
||||
\expandafter\let\csname oldend#1\expandafter\endcsname\csname end#1\endcsname
|
||||
\renewenvironment{#1}%
|
||||
{\linenomath\csname old#1\endcsname}%
|
||||
{\csname oldend#1\endcsname\endlinenomath}%
|
||||
}%
|
||||
\newcommand*\patchBothAmsMathEnvironmentsForLineno[1]{%
|
||||
\patchAmsMathEnvironmentForLineno{#1}%
|
||||
\patchAmsMathEnvironmentForLineno{#1*}%
|
||||
}%
|
||||
\patchBothAmsMathEnvironmentsForLineno{equation}%
|
||||
\patchBothAmsMathEnvironmentsForLineno{align}%
|
||||
\patchBothAmsMathEnvironmentsForLineno{flalign}%
|
||||
\patchBothAmsMathEnvironmentsForLineno{alignat}%
|
||||
\patchBothAmsMathEnvironmentsForLineno{gather}%
|
||||
\patchBothAmsMathEnvironmentsForLineno{multline}%
|
||||
}{}
|
||||
}
|
||||
\fi
|
||||
\fi
|
||||
|
||||
|
||||
|
||||
% The DOI will now automatically generate a URL link. Pretty cool!
|
||||
% + Fix for hyperref and DOI (https://www.tug.org/pipermail/tex-live/2012-August/032161.html)
|
||||
%-----------------------------
|
||||
\makeatletter
|
||||
\providecommand{\doi}[1]{%
|
||||
\begingroup
|
||||
\let\bibinfo\@secondoftwo
|
||||
\urlstyle{rm}%
|
||||
\href{http://dx.doi.org/#1}{%
|
||||
doi:\discretionary{}{}{}%
|
||||
\nolinkurl{#1}%
|
||||
}%
|
||||
\endgroup
|
||||
}
|
||||
% \makeatother
|
||||
% %-----------------------------
|
||||
|
||||
\widowpenalty=10000
|
||||
\clubpenalty=10000
|
||||
\flushbottom
|
||||
\sloppy
|
||||
|
||||
% font sizes with reduced leading
|
||||
\renewcommand{\normalsize}{%
|
||||
\@setfontsize\normalsize\@xpt\@xipt
|
||||
\abovedisplayskip 7\p@ \@plus 2\p@ \@minus 5\p@
|
||||
\abovedisplayshortskip \z@ \@plus 3\p@
|
||||
\belowdisplayskip \abovedisplayskip
|
||||
\belowdisplayshortskip 4\p@ \@plus 3\p@ \@minus 3\p@
|
||||
}
|
||||
\normalsize
|
||||
\renewcommand{\small}{%
|
||||
\@setfontsize\small\@ixpt\@xpt
|
||||
\abovedisplayskip 6\p@ \@plus 1.5\p@ \@minus 4\p@
|
||||
\abovedisplayshortskip \z@ \@plus 2\p@
|
||||
\belowdisplayskip \abovedisplayskip
|
||||
\belowdisplayshortskip 3\p@ \@plus 2\p@ \@minus 2\p@
|
||||
}
|
||||
\renewcommand{\footnotesize}{\@setfontsize\footnotesize\@ixpt\@xpt}
|
||||
\renewcommand{\scriptsize}{\@setfontsize\scriptsize\@viipt\@viiipt}
|
||||
\renewcommand{\tiny}{\@setfontsize\tiny\@vipt\@viipt}
|
||||
\renewcommand{\large}{\@setfontsize\large\@xiipt{14}}
|
||||
\renewcommand{\Large}{\@setfontsize\Large\@xivpt{16}}
|
||||
\renewcommand{\LARGE}{\@setfontsize\LARGE\@xviipt{20}}
|
||||
\renewcommand{\huge}{\@setfontsize\huge\@xxpt{23}}
|
||||
\renewcommand{\Huge}{\@setfontsize\Huge\@xxvpt{28}}
|
||||
|
||||
% sections with less space
|
||||
\providecommand{\section}{}
|
||||
\renewcommand{\section}{%
|
||||
\@startsection{section}{1}{\z@}%
|
||||
{-2.0ex \@plus -0.5ex \@minus -0.2ex}%
|
||||
{ 1.5ex \@plus 0.3ex \@minus 0.2ex}%
|
||||
{\large\bf\raggedright}%
|
||||
}
|
||||
\providecommand{\subsection}{}
|
||||
\renewcommand{\subsection}{%
|
||||
\@startsection{subsection}{2}{\z@}%
|
||||
{-1.8ex \@plus -0.5ex \@minus -0.2ex}%
|
||||
{ 0.8ex \@plus 0.2ex}%
|
||||
{\normalsize\bf\raggedright}%
|
||||
}
|
||||
\providecommand{\subsubsection}{}
|
||||
\renewcommand{\subsubsection}{%
|
||||
\@startsection{subsubsection}{3}{\z@}%
|
||||
{-1.5ex \@plus -0.5ex \@minus -0.2ex}%
|
||||
{ 0.5ex \@plus 0.2ex}%
|
||||
{\normalsize\bf\raggedright}%
|
||||
}
|
||||
\providecommand{\paragraph}{}
|
||||
\renewcommand{\paragraph}{%
|
||||
\@startsection{paragraph}{4}{\z@}%
|
||||
{1.5ex \@plus 0.5ex \@minus 0.2ex}%
|
||||
{-1em}%
|
||||
{\normalsize\bf}%
|
||||
}
|
||||
\providecommand{\subparagraph}{}
|
||||
\renewcommand{\subparagraph}{%
|
||||
\@startsection{subparagraph}{5}{\z@}%
|
||||
{1.5ex \@plus 0.5ex \@minus 0.2ex}%
|
||||
{-1em}%
|
||||
{\normalsize\bf}%
|
||||
}
|
||||
\providecommand{\subsubsubsection}{}
|
||||
\renewcommand{\subsubsubsection}{%
|
||||
\vskip5pt{\noindent\normalsize\rm\raggedright}%
|
||||
}
|
||||
|
||||
% float placement
|
||||
\renewcommand{\topfraction }{0.85}
|
||||
\renewcommand{\bottomfraction }{0.4}
|
||||
\renewcommand{\textfraction }{0.1}
|
||||
\renewcommand{\floatpagefraction}{0.7}
|
||||
|
||||
\newlength{\@nipsabovecaptionskip}\setlength{\@nipsabovecaptionskip}{7\p@}
|
||||
\newlength{\@nipsbelowcaptionskip}\setlength{\@nipsbelowcaptionskip}{\z@}
|
||||
|
||||
\setlength{\abovecaptionskip}{\@nipsabovecaptionskip}
|
||||
\setlength{\belowcaptionskip}{\@nipsbelowcaptionskip}
|
||||
|
||||
% swap above/belowcaptionskip lengths for tables
|
||||
\renewenvironment{table}
|
||||
{\setlength{\abovecaptionskip}{\@nipsbelowcaptionskip}%
|
||||
\setlength{\belowcaptionskip}{\@nipsabovecaptionskip}%
|
||||
\@float{table}}
|
||||
{\end@float}
|
||||
|
||||
% footnote formatting
|
||||
\setlength{\footnotesep }{6.65\p@}
|
||||
\setlength{\skip\footins}{9\p@ \@plus 4\p@ \@minus 2\p@}
|
||||
\renewcommand{\footnoterule}{\kern-3\p@ \hrule width 12pc \kern 2.6\p@}
|
||||
\setcounter{footnote}{0}
|
||||
|
||||
% paragraph formatting
|
||||
\setlength{\parindent}{\z@}
|
||||
\setlength{\parskip }{5.5\p@}
|
||||
|
||||
% list formatting
|
||||
\setlength{\topsep }{4\p@ \@plus 1\p@ \@minus 2\p@}
|
||||
\setlength{\partopsep }{1\p@ \@plus 0.5\p@ \@minus 0.5\p@}
|
||||
\setlength{\itemsep }{2\p@ \@plus 1\p@ \@minus 0.5\p@}
|
||||
\setlength{\parsep }{2\p@ \@plus 1\p@ \@minus 0.5\p@}
|
||||
\setlength{\leftmargin }{3pc}
|
||||
\setlength{\leftmargini }{\leftmargin}
|
||||
\setlength{\leftmarginii }{2em}
|
||||
\setlength{\leftmarginiii}{1.5em}
|
||||
\setlength{\leftmarginiv }{1.0em}
|
||||
\setlength{\leftmarginv }{0.5em}
|
||||
\def\@listi {\leftmargin\leftmargini}
|
||||
\def\@listii {\leftmargin\leftmarginii
|
||||
\labelwidth\leftmarginii
|
||||
\advance\labelwidth-\labelsep
|
||||
\topsep 2\p@ \@plus 1\p@ \@minus 0.5\p@
|
||||
\parsep 1\p@ \@plus 0.5\p@ \@minus 0.5\p@
|
||||
\itemsep \parsep}
|
||||
\def\@listiii{\leftmargin\leftmarginiii
|
||||
\labelwidth\leftmarginiii
|
||||
\advance\labelwidth-\labelsep
|
||||
\topsep 1\p@ \@plus 0.5\p@ \@minus 0.5\p@
|
||||
\parsep \z@
|
||||
\partopsep 0.5\p@ \@plus 0\p@ \@minus 0.5\p@
|
||||
\itemsep \topsep}
|
||||
\def\@listiv {\leftmargin\leftmarginiv
|
||||
\labelwidth\leftmarginiv
|
||||
\advance\labelwidth-\labelsep}
|
||||
\def\@listv {\leftmargin\leftmarginv
|
||||
\labelwidth\leftmarginv
|
||||
\advance\labelwidth-\labelsep}
|
||||
\def\@listvi {\leftmargin\leftmarginvi
|
||||
\labelwidth\leftmarginvi
|
||||
\advance\labelwidth-\labelsep}
|
||||
|
||||
% create title
|
||||
\providecommand{\maketitle}{}
|
||||
\renewcommand{\maketitle}{%
|
||||
\par
|
||||
\begingroup
|
||||
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
|
||||
% for perfect author name centering
|
||||
\renewcommand{\@makefnmark}{\hbox to \z@{$^{\@thefnmark}$\hss}}
|
||||
% The footnote-mark was overlapping the footnote-text,
|
||||
% added the following to fix this problem (MK)
|
||||
\long\def\@makefntext##1{%
|
||||
\parindent 1em\noindent
|
||||
\hbox to 1.8em{\hss $\m@th ^{\@thefnmark}$}##1
|
||||
}
|
||||
\thispagestyle{empty}
|
||||
\@maketitle
|
||||
\@thanks
|
||||
\@notice
|
||||
\endgroup
|
||||
\let\maketitle\relax
|
||||
\let\thanks\relax
|
||||
}
|
||||
|
||||
% rules for title box at top of first page
|
||||
\newcommand{\@toptitlebar}{
|
||||
\hrule height 4\p@
|
||||
\vskip 0.25in
|
||||
\vskip -\parskip%
|
||||
}
|
||||
\newcommand{\@bottomtitlebar}{
|
||||
\vskip 0.29in
|
||||
\vskip -\parskip
|
||||
\hrule height 1\p@
|
||||
\vskip 0.09in%
|
||||
}
|
||||
|
||||
%% keywords as first class citizens
|
||||
\def\keywords#1{%
|
||||
% \ifdefined\isaccepted \else
|
||||
% \par {\bf Keywords:} #1%
|
||||
% \fi
|
||||
% \ifdefined\nohyperref\else\ifdefined\hypersetup
|
||||
% \hypersetup{pdfkeywords={#1}}
|
||||
% \fi\fi
|
||||
\ifdefined\isaccepted \else
|
||||
\begin{quote}
|
||||
\textbf{Keywords:} #1%
|
||||
\end{quote}
|
||||
\fi
|
||||
\ifdefined\nohyperref\else\ifdefined\hypersetup
|
||||
\hypersetup{pdfkeywords={#1}}
|
||||
\fi\fi
|
||||
}
|
||||
|
||||
|
||||
% create title (includes both anonymized and non-anonymized versions)
|
||||
\providecommand{\@maketitle}{}
|
||||
\renewcommand{\@maketitle}{%
|
||||
\vbox{%
|
||||
\hsize\textwidth
|
||||
\linewidth\hsize
|
||||
\vskip 0.1in
|
||||
% \@toptitlebar
|
||||
\centering
|
||||
{\LARGE\bf \@title\par}
|
||||
% \@bottomtitlebar
|
||||
\if@conferencefinal
|
||||
\def\And{%
|
||||
\end{tabular}\hfil\linebreak[0]\hfil%
|
||||
\begin{tabular}[t]{c}\bf\rule{\z@}{24\p@}\ignorespaces%
|
||||
}
|
||||
\def\AND{%
|
||||
\end{tabular}\hfil\linebreak[4]\hfil%
|
||||
\begin{tabular}[t]{c}\bf\rule{\z@}{24\p@}\ignorespaces%
|
||||
}
|
||||
\begin{tabular}[t]{c}\bf\rule{\z@}{24\p@}\@author\end{tabular}%
|
||||
\else
|
||||
\if@preprinttype
|
||||
\def\And{%
|
||||
\end{tabular}\hfil\linebreak[0]\hfil%
|
||||
\begin{tabular}[t]{c}\bf\rule{\z@}{24\p@}\ignorespaces%
|
||||
}
|
||||
\def\AND{%
|
||||
\end{tabular}\hfil\linebreak[4]\hfil%
|
||||
\begin{tabular}[t]{c}\bf\rule{\z@}{24\p@}\ignorespaces%
|
||||
}
|
||||
\begin{tabular}[t]{c}\bf\rule{\z@}{24\p@}\@author\end{tabular}%
|
||||
\else
|
||||
\begin{tabular}[t]{c}\bf\rule{\z@}{24\p@}
|
||||
Anonymous Author(s) \\
|
||||
Affiliation \\
|
||||
Address \\
|
||||
\texttt{email} \\
|
||||
\end{tabular}%
|
||||
\fi
|
||||
\fi
|
||||
\vskip 0.3in \@minus 0.1in
|
||||
}
|
||||
}
|
||||
|
||||
% add conference notice to bottom of first page
|
||||
\newcommand{\ftype@noticebox}{8}
|
||||
\newcommand{\@notice}{%
|
||||
% give a bit of extra room back to authors on first page
|
||||
\enlargethispage{2\baselineskip}%
|
||||
\@float{noticebox}[b]%
|
||||
\footnotesize\@noticestring%
|
||||
\end@float%
|
||||
}
|
||||
|
||||
% abstract styling
|
||||
\renewenvironment{abstract}%
|
||||
{%
|
||||
% \vskip 0.075in%
|
||||
% \centerline%
|
||||
% {\large\bf Abstract}%
|
||||
% \vspace{0.5ex}%
|
||||
\begin{quote}%
|
||||
\textbf{Abstract:}%
|
||||
}
|
||||
{
|
||||
\par%
|
||||
\vskip 1ex%
|
||||
% \ifdefined\keywords
|
||||
% \textbf{Keywords:}%
|
||||
% \@keywords%
|
||||
% \else
|
||||
% \fi
|
||||
\end{quote}%
|
||||
}
|
||||
|
||||
\endinput
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,124 @@
|
||||
\relax
|
||||
\bibstyle{corlabbrvnat}
|
||||
\providecommand\hyper@newdestlabel[2]{}
|
||||
\providecommand\HyField@AuxAddToFields[1]{}
|
||||
\providecommand\HyField@AuxAddToCoFields[2]{}
|
||||
\citation{black2024pi0,chi2023diffusion}
|
||||
\citation{ho2020denoising}
|
||||
\citation{peebles2023scalable}
|
||||
\citation{lipman2023flow,liu2022flow}
|
||||
\citation{geng2025mean}
|
||||
\citation{geng2025improved}
|
||||
\citation{he2016deep,vaswani2017attention}
|
||||
\citation{kimi2026attention}
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {1}Introduction}{1}{section.1}\protected@file@percent }
|
||||
\newlabel{sec:introduction}{{1}{1}{Introduction}{section.1}{}}
|
||||
\newlabel{sec:introduction@cref}{{[section][1][]1}{[1][1][]1}{}{}{}}
|
||||
\citation{zhao2023learning,shukor2025smolvla}
|
||||
\citation{black2024pi0,chi2023diffusion}
|
||||
\citation{ho2020denoising}
|
||||
\citation{peebles2023scalable}
|
||||
\citation{lipman2023flow}
|
||||
\citation{liu2022flow}
|
||||
\citation{brohan2022rt,brohan2023rt}
|
||||
\citation{kim2024openvla}
|
||||
\citation{shukor2025smolvla,pertsch2025fast}
|
||||
\citation{zhao2023learning}
|
||||
\citation{kimi2026attention}
|
||||
\def\@LN@column{1}
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {2}Related Work}{2}{section.2}\protected@file@percent }
|
||||
\newlabel{sec:related_work}{{2}{2}{Related Work}{section.2}{}}
|
||||
\newlabel{sec:related_work@cref}{{[section][2][]2}{[1][2][]2}{}{}{}}
|
||||
\@writefile{toc}{\contentsline {paragraph}{Diffusion and flow policies for robot action generation.}{2}{section*.1}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {paragraph}{Vision-language-action models and action chunking.}{2}{section*.2}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {paragraph}{Residual aggregation and attention residuals.}{2}{section*.3}\protected@file@percent }
|
||||
\citation{geng2025mean}
|
||||
\citation{geng2025improved}
|
||||
\def\@LN@column{1}
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {3}Method}{3}{section.3}\protected@file@percent }
|
||||
\newlabel{sec:method}{{3}{3}{Method}{section.3}{}}
|
||||
\newlabel{sec:method@cref}{{[section][3][]3}{[1][2][]3}{}{}{}}
|
||||
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1}Policy formulation}{3}{subsection.3.1}\protected@file@percent }
|
||||
\newlabel{sec:policy_formulation}{{3.1}{3}{Policy formulation}{subsection.3.1}{}}
|
||||
\newlabel{sec:policy_formulation@cref}{{[subsection][1][3]3.1}{[1][3][]3}{}{}{}}
|
||||
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2}Improved Mean Flow action generation}{3}{subsection.3.2}\protected@file@percent }
|
||||
\newlabel{sec:imf_action_generation}{{3.2}{3}{Improved Mean Flow action generation}{subsection.3.2}{}}
|
||||
\newlabel{sec:imf_action_generation@cref}{{[subsection][2][3]3.2}{[1][3][]3}{}{}{}}
|
||||
\def\@LN@column{1}
|
||||
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3}Attention Residual policy transformer}{4}{subsection.3.3}\protected@file@percent }
|
||||
\newlabel{sec:attnres_policy}{{3.3}{4}{Attention Residual policy transformer}{subsection.3.3}{}}
|
||||
\newlabel{sec:attnres_policy@cref}{{[subsection][3][3]3.3}{[1][3][]4}{}{}{}}
|
||||
\newlabel{eq:standard_residual_sum}{{10}{4}{Attention Residual policy transformer}{equation.10}{}}
|
||||
\newlabel{eq:standard_residual_sum@cref}{{[equation][10][]10}{[1][4][]4}{}{}{}}
|
||||
\newlabel{eq:weighted_residual_sum}{{12}{4}{Attention Residual policy transformer}{equation.12}{}}
|
||||
\newlabel{eq:weighted_residual_sum@cref}{{[equation][12][]12}{[1][4][]4}{}{}{}}
|
||||
\newlabel{eq:attnres_weights}{{14}{4}{Attention Residual policy transformer}{equation.14}{}}
|
||||
\newlabel{eq:attnres_weights@cref}{{[equation][14][]14}{[1][4][]4}{}{}{}}
|
||||
\@writefile{toc}{\contentsline {subsection}{\numberline {3.4}Inference and control loop}{4}{subsection.3.4}\protected@file@percent }
|
||||
\newlabel{sec:inference_loop}{{3.4}{4}{Inference and control loop}{subsection.3.4}{}}
|
||||
\newlabel{sec:inference_loop@cref}{{[subsection][4][3]3.4}{[1][4][]4}{}{}{}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Planned method overview figure. The current draft intentionally stores the Paper Banana generation prompt as a placeholder instead of generating an image.}}{5}{figure.1}\protected@file@percent }
|
||||
\newlabel{fig:method_overview}{{1}{5}{Planned method overview figure. The current draft intentionally stores the Paper Banana generation prompt as a placeholder instead of generating an image}{figure.1}{}}
|
||||
\newlabel{fig:method_overview@cref}{{[figure][1][]1}{[1][4][]5}{}{}{}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Planned technical component figure. The prompt is retained as a placeholder for later Paper Banana rendering.}}{5}{figure.2}\protected@file@percent }
|
||||
\newlabel{fig:imf_attnres_components}{{2}{5}{Planned technical component figure. The prompt is retained as a placeholder for later Paper Banana rendering}{figure.2}{}}
|
||||
\newlabel{fig:imf_attnres_components@cref}{{[figure][2][]2}{[1][4][]5}{}{}{}}
|
||||
\def\@LN@column{1}
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {4}Experiments}{5}{section.4}\protected@file@percent }
|
||||
\newlabel{sec:experiments}{{4}{5}{Experiments}{section.4}{}}
|
||||
\newlabel{sec:experiments@cref}{{[section][4][]4}{[1][4][]5}{}{}{}}
|
||||
\@writefile{toc}{\contentsline {subsection}{\numberline {4.1}Setup and metrics}{5}{subsection.4.1}\protected@file@percent }
|
||||
\newlabel{sec:setup_metrics}{{4.1}{5}{Setup and metrics}{subsection.4.1}{}}
|
||||
\newlabel{sec:setup_metrics@cref}{{[subsection][1][4]4.1}{[1][4][]5}{}{}{}}
|
||||
\@writefile{toc}{\contentsline {subsection}{\numberline {4.2}Socket peg insertion}{5}{subsection.4.2}\protected@file@percent }
|
||||
\newlabel{sec:socket_results}{{4.2}{5}{Socket peg insertion}{subsection.4.2}{}}
|
||||
\newlabel{sec:socket_results@cref}{{[subsection][2][4]4.2}{[1][5][]5}{}{}{}}
|
||||
\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Socket peg insertion over 100 rollouts. Success-like uses the recorded \texttt {max\_reward > 4} count.}}{6}{table.1}\protected@file@percent }
|
||||
\newlabel{tab:socket_results}{{1}{6}{Socket peg insertion over 100 rollouts. Success-like uses the recorded \texttt {max\_reward > 4} count}{table.1}{}}
|
||||
\newlabel{tab:socket_results@cref}{{[table][1][]1}{[1][5][]6}{}{}{}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces Planned socket reward-latency figure. The current draft contains the Paper Banana prompt placeholder instead of a rendered image.}}{6}{figure.3}\protected@file@percent }
|
||||
\newlabel{fig:socket_reward_latency}{{3}{6}{Planned socket reward-latency figure. The current draft contains the Paper Banana prompt placeholder instead of a rendered image}{figure.3}{}}
|
||||
\newlabel{fig:socket_reward_latency@cref}{{[figure][3][]3}{[1][5][]6}{}{}{}}
|
||||
\def\@LN@column{1}
|
||||
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3}Object transfer and ablations}{6}{subsection.4.3}\protected@file@percent }
|
||||
\newlabel{sec:sim_transfer_results}{{4.3}{6}{Object transfer and ablations}{subsection.4.3}{}}
|
||||
\newlabel{sec:sim_transfer_results@cref}{{[subsection][3][4]4.3}{[1][6][]6}{}{}{}}
|
||||
\@writefile{toc}{\contentsline {subsection}{\numberline {4.4}Derived speed-quality comparisons}{6}{subsection.4.4}\protected@file@percent }
|
||||
\newlabel{sec:derived_comparisons}{{4.4}{6}{Derived speed-quality comparisons}{subsection.4.4}{}}
|
||||
\newlabel{sec:derived_comparisons@cref}{{[subsection][4][4]4.4}{[1][6][]6}{}{}{}}
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {5}Limitations}{6}{section.5}\protected@file@percent }
|
||||
\newlabel{sec:limitations}{{5}{6}{Limitations}{section.5}{}}
|
||||
\newlabel{sec:limitations@cref}{{[section][5][]5}{[1][6][]6}{}{}{}}
|
||||
\@writefile{lot}{\contentsline {table}{\numberline {2}{\ignorespaces Object transfer / sim\_transfer over 100 rollouts. Success-like uses the recorded \texttt {max\_reward >= 4} count.}}{7}{table.2}\protected@file@percent }
|
||||
\newlabel{tab:sim_transfer_results}{{2}{7}{Object transfer / sim\_transfer over 100 rollouts. Success-like uses the recorded \texttt {max\_reward >= 4} count}{table.2}{}}
|
||||
\newlabel{tab:sim_transfer_results@cref}{{[table][2][]2}{[1][6][]7}{}{}{}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces Planned sim\_transfer ablation figure. The prompt is retained for later Paper Banana rendering.}}{7}{figure.4}\protected@file@percent }
|
||||
\newlabel{fig:sim_transfer_ablation}{{4}{7}{Planned sim\_transfer ablation figure. The prompt is retained for later Paper Banana rendering}{figure.4}{}}
|
||||
\newlabel{fig:sim_transfer_ablation@cref}{{[figure][4][]4}{[1][6][]7}{}{}{}}
|
||||
\def\@LN@column{1}
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {6}Conclusion}{7}{section.6}\protected@file@percent }
|
||||
\newlabel{sec:conclusion}{{6}{7}{Conclusion}{section.6}{}}
|
||||
\newlabel{sec:conclusion@cref}{{[section][6][]6}{[1][7][]7}{}{}{}}
|
||||
\@writefile{lot}{\contentsline {table}{\numberline {3}{\ignorespaces Derived comparisons from the 100-rollout logs.}}{8}{table.3}\protected@file@percent }
|
||||
\newlabel{tab:derived_comparisons}{{3}{8}{Derived comparisons from the 100-rollout logs}{table.3}{}}
|
||||
\newlabel{tab:derived_comparisons@cref}{{[table][3][]3}{[1][6][]8}{}{}{}}
|
||||
\bibdata{refs}
|
||||
\bibcite{black2024pi0}{{1}{2024}{{Black et~al.}}{{Black, Brown, Driess, Esmail, Equi, Finn, Fusai, Groom, Hausman, Ichter, et~al.}}}
|
||||
\bibcite{chi2023diffusion}{{2}{2023}{{Chi et~al.}}{{Chi, Xu, Feng, Cousineau, Du, Burchfiel, Tedrake, and Song}}}
|
||||
\bibcite{ho2020denoising}{{3}{2020}{{Ho et~al.}}{{Ho, Jain, and Abbeel}}}
|
||||
\bibcite{peebles2023scalable}{{4}{2023}{{Peebles and Xie}}{{}}}
|
||||
\bibcite{lipman2023flow}{{5}{2023}{{Lipman et~al.}}{{Lipman, Chen, Ben-Hamu, Nickel, and Le}}}
|
||||
\bibcite{liu2022flow}{{6}{2022}{{Liu et~al.}}{{Liu, Gong, and Liu}}}
|
||||
\bibcite{geng2025mean}{{7}{2025{}}{{Geng et~al.}}{{Geng, Deng, Bai, Kolter, and He}}}
|
||||
\bibcite{geng2025improved}{{8}{2025{}}{{Geng et~al.}}{{Geng, Lu, Wu, Shechtman, Kolter, and He}}}
|
||||
\bibcite{he2016deep}{{9}{2016}{{He et~al.}}{{He, Zhang, Ren, and Sun}}}
|
||||
\bibcite{vaswani2017attention}{{10}{2017}{{Vaswani et~al.}}{{Vaswani, Shazeer, Parmar, Uszkoreit, Jones, Gomez, Kaiser, and Polosukhin}}}
|
||||
\bibcite{kimi2026attention}{{11}{2026}{{Kimi Team}}{{}}}
|
||||
\bibcite{zhao2023learning}{{12}{2023}{{Zhao et~al.}}{{Zhao, Kumar, Levine, and Finn}}}
|
||||
\bibcite{shukor2025smolvla}{{13}{2025}{{Shukor et~al.}}{{Shukor, Aubakirova, Capuano, Kooijmans, Palma, Zouitine, Aractingi, Pascal, Russi, Marafioti, et~al.}}}
|
||||
\bibcite{brohan2022rt}{{14}{2022}{{Brohan et~al.}}{{Brohan, Brown, Carbajal, Chebotar, Dabis, Finn, Gopalakrishnan, Hausman, Herzog, Hsu, et~al.}}}
|
||||
\bibcite{brohan2023rt}{{15}{2023}{{Brohan et~al.}}{{Brohan, Brown, Carbajal, Chebotar, Chen, Choromanski, Ding, Driess, Dubey, Finn, et~al.}}}
|
||||
\bibcite{kim2024openvla}{{16}{2024}{{Kim et~al.}}{{Kim, Pertsch, Karamcheti, Xiao, Balakrishna, Nair, Rafailov, Foster, Lam, Sanketi, et~al.}}}
|
||||
\bibcite{pertsch2025fast}{{17}{2025}{{Pertsch et~al.}}{{Pertsch, Stachowicz, Ichter, Driess, Nair, Vuong, Mees, Finn, and Levine}}}
|
||||
\def\@LN@column{1}
|
||||
\gdef \@abspage@last{9}
|
||||
@@ -0,0 +1,119 @@
|
||||
\begin{thebibliography}{17}
|
||||
\providecommand{\natexlab}[1]{#1}
|
||||
\providecommand{\url}[1]{\texttt{#1}}
|
||||
\expandafter\ifx\csname urlstyle\endcsname\relax
|
||||
\providecommand{\doi}[1]{doi: #1}\else
|
||||
\providecommand{\doi}{doi: \begingroup \urlstyle{rm}\Url}\fi
|
||||
|
||||
\bibitem[Black et~al.(2024)Black, Brown, Driess, Esmail, Equi, Finn, Fusai,
|
||||
Groom, Hausman, Ichter, et~al.]{black2024pi0}
|
||||
K.~Black, N.~Brown, D.~Driess, A.~Esmail, M.~Equi, C.~Finn, N.~Fusai, L.~Groom,
|
||||
K.~Hausman, B.~Ichter, et~al.
|
||||
\newblock {$\pi_0$}: A vision-language-action flow model for general robot
|
||||
control.
|
||||
\newblock \emph{arXiv preprint arXiv:2410.24164}, 2024.
|
||||
|
||||
\bibitem[Chi et~al.(2023)Chi, Xu, Feng, Cousineau, Du, Burchfiel, Tedrake, and
|
||||
Song]{chi2023diffusion}
|
||||
C.~Chi, Z.~Xu, S.~Feng, E.~Cousineau, Y.~Du, B.~Burchfiel, R.~Tedrake, and
|
||||
S.~Song.
|
||||
\newblock Diffusion policy: Visuomotor policy learning via action diffusion.
|
||||
\newblock \emph{arXiv preprint arXiv:2303.04137}, 2023.
|
||||
|
||||
\bibitem[Ho et~al.(2020)Ho, Jain, and Abbeel]{ho2020denoising}
|
||||
J.~Ho, A.~Jain, and P.~Abbeel.
|
||||
\newblock Denoising diffusion probabilistic models.
|
||||
\newblock In \emph{Advances in Neural Information Processing Systems}, 2020.
|
||||
|
||||
\bibitem[Peebles and Xie(2023)]{peebles2023scalable}
|
||||
W.~Peebles and S.~Xie.
|
||||
\newblock Scalable diffusion models with transformers.
|
||||
\newblock In \emph{IEEE/CVF International Conference on Computer Vision}, 2023.
|
||||
|
||||
\bibitem[Lipman et~al.(2023)Lipman, Chen, Ben-Hamu, Nickel, and
|
||||
Le]{lipman2023flow}
|
||||
Y.~Lipman, R.~T.~Q. Chen, H.~Ben-Hamu, M.~Nickel, and M.~Le.
|
||||
\newblock Flow matching for generative modeling.
|
||||
\newblock In \emph{International Conference on Learning Representations}, 2023.
|
||||
|
||||
\bibitem[Liu et~al.(2022)Liu, Gong, and Liu]{liu2022flow}
|
||||
X.~Liu, C.~Gong, and Q.~Liu.
|
||||
\newblock Flow straight and fast: Learning to generate and transfer data with
|
||||
rectified flow.
|
||||
\newblock \emph{arXiv preprint arXiv:2209.03003}, 2022.
|
||||
|
||||
\bibitem[Geng et~al.(2025{\natexlab{a}})Geng, Deng, Bai, Kolter, and
|
||||
He]{geng2025mean}
|
||||
Z.~Geng, M.~Deng, X.~Bai, J.~Z. Kolter, and K.~He.
|
||||
\newblock Mean flows for one-step generative modeling.
|
||||
\newblock \emph{arXiv preprint arXiv:2505.13447}, 2025{\natexlab{a}}.
|
||||
|
||||
\bibitem[Geng et~al.(2025{\natexlab{b}})Geng, Lu, Wu, Shechtman, Kolter, and
|
||||
He]{geng2025improved}
|
||||
Z.~Geng, Y.~Lu, Z.~Wu, E.~Shechtman, J.~Z. Kolter, and K.~He.
|
||||
\newblock Improved mean flows: On the challenges of fastforward generative
|
||||
models.
|
||||
\newblock \emph{arXiv preprint arXiv:2512.02012}, 2025{\natexlab{b}}.
|
||||
|
||||
\bibitem[He et~al.(2016)He, Zhang, Ren, and Sun]{he2016deep}
|
||||
K.~He, X.~Zhang, S.~Ren, and J.~Sun.
|
||||
\newblock Deep residual learning for image recognition.
|
||||
\newblock In \emph{IEEE Conference on Computer Vision and Pattern Recognition},
|
||||
2016.
|
||||
|
||||
\bibitem[Vaswani et~al.(2017)Vaswani, Shazeer, Parmar, Uszkoreit, Jones, Gomez,
|
||||
Kaiser, and Polosukhin]{vaswani2017attention}
|
||||
A.~Vaswani, N.~Shazeer, N.~Parmar, J.~Uszkoreit, L.~Jones, A.~N. Gomez,
|
||||
L.~Kaiser, and I.~Polosukhin.
|
||||
\newblock Attention is all you need.
|
||||
\newblock In \emph{Advances in Neural Information Processing Systems}, 2017.
|
||||
|
||||
\bibitem[{Kimi Team}(2026)]{kimi2026attention}
|
||||
{Kimi Team}.
|
||||
\newblock Attention residuals.
|
||||
\newblock \emph{arXiv preprint arXiv:2603.15031}, 2026.
|
||||
|
||||
\bibitem[Zhao et~al.(2023)Zhao, Kumar, Levine, and Finn]{zhao2023learning}
|
||||
T.~Z. Zhao, V.~Kumar, S.~Levine, and C.~Finn.
|
||||
\newblock Learning fine-grained bimanual manipulation with low-cost hardware.
|
||||
\newblock \emph{arXiv preprint arXiv:2304.13705}, 2023.
|
||||
|
||||
\bibitem[Shukor et~al.(2025)Shukor, Aubakirova, Capuano, Kooijmans, Palma,
|
||||
Zouitine, Aractingi, Pascal, Russi, Marafioti, et~al.]{shukor2025smolvla}
|
||||
M.~Shukor, D.~Aubakirova, F.~Capuano, P.~Kooijmans, S.~Palma, A.~Zouitine,
|
||||
M.~Aractingi, C.~Pascal, M.~Russi, A.~Marafioti, et~al.
|
||||
\newblock Smolvla: A vision-language-action model for affordable and efficient
|
||||
robotics.
|
||||
\newblock \emph{arXiv preprint arXiv:2506.01844}, 2025.
|
||||
|
||||
\bibitem[Brohan et~al.(2022)Brohan, Brown, Carbajal, Chebotar, Dabis, Finn,
|
||||
Gopalakrishnan, Hausman, Herzog, Hsu, et~al.]{brohan2022rt}
|
||||
A.~Brohan, N.~Brown, J.~Carbajal, Y.~Chebotar, J.~Dabis, C.~Finn,
|
||||
K.~Gopalakrishnan, K.~Hausman, A.~Herzog, J.~Hsu, et~al.
|
||||
\newblock Rt-1: Robotics transformer for real-world control at scale.
|
||||
\newblock \emph{arXiv preprint arXiv:2212.06817}, 2022.
|
||||
|
||||
\bibitem[Brohan et~al.(2023)Brohan, Brown, Carbajal, Chebotar, Chen,
|
||||
Choromanski, Ding, Driess, Dubey, Finn, et~al.]{brohan2023rt}
|
||||
A.~Brohan, N.~Brown, J.~Carbajal, Y.~Chebotar, X.~Chen, K.~Choromanski,
|
||||
T.~Ding, D.~Driess, A.~Dubey, C.~Finn, et~al.
|
||||
\newblock Rt-2: Vision-language-action models transfer web knowledge to robotic
|
||||
control.
|
||||
\newblock In \emph{Conference on Robot Learning}, 2023.
|
||||
|
||||
\bibitem[Kim et~al.(2024)Kim, Pertsch, Karamcheti, Xiao, Balakrishna, Nair,
|
||||
Rafailov, Foster, Lam, Sanketi, et~al.]{kim2024openvla}
|
||||
M.~J. Kim, K.~Pertsch, S.~Karamcheti, T.~Xiao, A.~Balakrishna, S.~Nair,
|
||||
R.~Rafailov, E.~Foster, G.~Lam, P.~Sanketi, et~al.
|
||||
\newblock Openvla: An open-source vision-language-action model.
|
||||
\newblock \emph{arXiv preprint arXiv:2406.09246}, 2024.
|
||||
|
||||
\bibitem[Pertsch et~al.(2025)Pertsch, Stachowicz, Ichter, Driess, Nair, Vuong,
|
||||
Mees, Finn, and Levine]{pertsch2025fast}
|
||||
K.~Pertsch, K.~Stachowicz, B.~Ichter, D.~Driess, S.~Nair, Q.~Vuong, O.~Mees,
|
||||
C.~Finn, and S.~Levine.
|
||||
\newblock Fast: Efficient action tokenization for vision-language-action
|
||||
models.
|
||||
\newblock \emph{arXiv preprint arXiv:2501.09747}, 2025.
|
||||
|
||||
\end{thebibliography}
|
||||
@@ -0,0 +1,46 @@
|
||||
This is BibTeX, Version 0.99e (TeX Live 2026/Arch Linux)
|
||||
Capacity: max_strings=200000, hash_size=200000, hash_prime=170003
|
||||
The top-level auxiliary file: paper.aux
|
||||
The style file: corlabbrvnat.bst
|
||||
Database file #1: refs.bib
|
||||
You've used 17 entries,
|
||||
2773 wiz_defined-function locations,
|
||||
667 strings with 8328 characters,
|
||||
and the built_in function-call counts, 10273 in all, are:
|
||||
= -- 758
|
||||
> -- 1061
|
||||
< -- 2
|
||||
+ -- 357
|
||||
- -- 339
|
||||
* -- 940
|
||||
:= -- 1707
|
||||
add.period$ -- 51
|
||||
call.type$ -- 17
|
||||
change.case$ -- 159
|
||||
chr.to.int$ -- 16
|
||||
cite$ -- 34
|
||||
duplicate$ -- 362
|
||||
empty$ -- 586
|
||||
format.name$ -- 358
|
||||
if$ -- 2034
|
||||
int.to.chr$ -- 2
|
||||
int.to.str$ -- 1
|
||||
missing$ -- 17
|
||||
newline$ -- 93
|
||||
num.names$ -- 68
|
||||
pop$ -- 343
|
||||
preamble$ -- 1
|
||||
purify$ -- 142
|
||||
quote$ -- 0
|
||||
skip$ -- 317
|
||||
stack$ -- 0
|
||||
substring$ -- 34
|
||||
swap$ -- 25
|
||||
text.length$ -- 0
|
||||
text.prefix$ -- 0
|
||||
top$ -- 0
|
||||
type$ -- 187
|
||||
warning$ -- 0
|
||||
while$ -- 51
|
||||
width$ -- 0
|
||||
write$ -- 211
|
||||
@@ -0,0 +1,205 @@
|
||||
# Fdb version 4
|
||||
["bibtex paper"] 1778915961.47314 "paper.aux" "paper.bbl" "paper" 1778915962.00077 0
|
||||
"./corlabbrvnat.bst" 1778915960.91983 26694 1972207a84216683d105ea25982a4f25 ""
|
||||
"./refs.bib" 1778915960.91838 5693 df14ac265e44528611e8ea03e1f31a1e ""
|
||||
"paper.aux" 1778915961.88858 10768 2556dc9b99b49df6abac644723c92193 "pdflatex"
|
||||
(generated)
|
||||
"paper.bbl"
|
||||
"paper.blg"
|
||||
(rewritten before read)
|
||||
["pdflatex"] 1778915961.5118 "paper.tex" "paper.pdf" "paper" 1778915962.00086 0
|
||||
"/usr/share/texmf-dist/fonts/enc/dvips/base/8r.enc" 1775415801 4850 80dc9bab7f31fb78a000ccfed0e27cab ""
|
||||
"/usr/share/texmf-dist/fonts/enc/dvips/cm-super/cm-super-t1.enc" 1775415801 2971 def0b6c1f0b107b3b936def894055589 ""
|
||||
"/usr/share/texmf-dist/fonts/map/fontname/texfonts.map" 1775415801 3524 cb3e574dea2d1052e39280babc910dc8 ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvr8r.tfm" 1775415801 4712 9ef4d7d106579d4b136e1529e1a4533c ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvr8t.tfm" 1775415801 7040 b2bd27e2bfe6f6948cbc3239cae7444f ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/adobe/times/ptmb8r.tfm" 1775415801 4524 6bce29db5bc272ba5f332261583fee9c ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/adobe/times/ptmb8t.tfm" 1775415801 6880 f19b8995b61c334d78fc734065f6b4d4 ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/adobe/times/ptmr8r.tfm" 1775415801 4408 25b74d011a4c66b7f212c0cc3c90061b ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/adobe/times/ptmr8t.tfm" 1775415801 6672 e3ab9e37e925f3045c9005e6d1473d56 ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/adobe/times/ptmri8r.tfm" 1775415801 4640 532ca3305aad10cc01d769f3f91f1029 ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/adobe/times/ptmri8t.tfm" 1775415801 6944 94c55ad86e6ea2826f78ba2240d50df9 ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/jknappen/ec/ectt1000.tfm" 1775415801 1536 06717a2b50de47d4087ac0e6cd759455 ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm" 1775415801 1004 54797486969f23fa377b128694d548df ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex9.tfm" 1775415801 996 a18840b13b499c08ac2de96a99eda4bc ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm" 1775415801 916 f87d7c45f9c908e672703b83b72241a3 ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam5.tfm" 1775415801 924 9904cf1d39e9767e7a3622f2a125a565 ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam7.tfm" 1775415801 928 2dc8d444221b7a635bb58038579b861a ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm" 1775415801 908 2921f8a10601f252058503cc6570e581 ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm5.tfm" 1775415801 940 75ac932a52f80982a9f8ea75d03a34cf ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm7.tfm" 1775415801 940 228d6584342e91276bf566bcf9716b83 ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/cm/cmmi6.tfm" 1775415801 1512 f21f83efb36853c0b70002322c1ab3ad ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/cm/cmmi9.tfm" 1775415801 1524 d89e2d087a9828407a196f428428ef4a ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/cm/cmr6.tfm" 1775415801 1300 b62933e007d01cfd073f79b963c01526 ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/cm/cmr9.tfm" 1775415801 1292 6b21b9c2c7bebb38aa2273f7ca0fb3af ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/cm/cmsy6.tfm" 1775415801 1116 933a60c408fc0a863a92debe84b2d294 ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/cm/cmsy9.tfm" 1775415801 1116 25a7bf822c58caf309a702ef79f4afbb ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb" 1775415801 30251 6afa5cb1d0204815a708a080681d4674 ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb" 1775415801 36299 5f9df58c2139e7edcf37c8fca4bd384d ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi6.pfb" 1775415801 37166 8ab3487cbe3ab49ebce74c29ea2418db ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb" 1775415801 36281 c355509802a035cadc5f15869451dcee ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi9.pfb" 1775415801 36094 798f80770b3b148ceedd006d487db67c ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb" 1775415801 35752 024fb6c41858982481f6968b5fc26508 ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr6.pfb" 1775415801 32734 69e00a6b65cedb993666e42eedb3d48f ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb" 1775415801 32762 224316ccc9ad3ca0423a14971cfa7fc1 ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr9.pfb" 1775415801 33993 9b89b85fd2d9df0482bd47194d1d3bf3 ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb" 1775415801 32569 5e5ddc8df908dea60932f3c484a54c0d ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfb" 1775415801 32716 08e384dc442464e7285e891af9f45947 ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy9.pfb" 1775415801 32442 c975af247b6702f7ca0c299af3616b80 ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/cm-super/sftt1000.pfb" 1775415801 169201 9ebf99020dde51a5086e186761a34e8f ""
|
||||
"/usr/share/texmf-dist/fonts/type1/urw/helvetic/uhvr8a.pfb" 1775415801 44648 23115b2a545ebfe2c526c3ca99db8b95 ""
|
||||
"/usr/share/texmf-dist/fonts/type1/urw/times/utmb8a.pfb" 1775415801 44729 811d6c62865936705a31c797a1d5dada ""
|
||||
"/usr/share/texmf-dist/fonts/type1/urw/times/utmr8a.pfb" 1775415801 46026 6dab18b61c907687b520c72847215a68 ""
|
||||
"/usr/share/texmf-dist/fonts/type1/urw/times/utmri8a.pfb" 1775415801 45458 a3faba884469519614ca56ba5f6b1de1 ""
|
||||
"/usr/share/texmf-dist/fonts/vf/adobe/helvetic/phvr8t.vf" 1775415801 2344 44ff28c9ef2fc97180cd884f900fee71 ""
|
||||
"/usr/share/texmf-dist/fonts/vf/adobe/times/ptmb8t.vf" 1775415801 2340 df9c920cc5688ebbf16a93f45ce7bdd3 ""
|
||||
"/usr/share/texmf-dist/fonts/vf/adobe/times/ptmr8t.vf" 1775415801 2348 91706c542228501c410c266421fbe30c ""
|
||||
"/usr/share/texmf-dist/fonts/vf/adobe/times/ptmri8t.vf" 1775415801 2328 6cd7df782b09b29cfc4d93e55b6b9a59 ""
|
||||
"/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii" 1775415801 71627 94eb9990bed73c364d7f53f960cc8c5b ""
|
||||
"/usr/share/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty" 1775415801 40635 c40361e206be584d448876bba8a64a3b ""
|
||||
"/usr/share/texmf-dist/tex/generic/bitset/bitset.sty" 1775415801 33961 6b5c75130e435b2bfdb9f480a09a39f9 ""
|
||||
"/usr/share/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty" 1775415801 8371 9d55b8bd010bc717624922fb3477d92e ""
|
||||
"/usr/share/texmf-dist/tex/generic/iftex/iftex.sty" 1775415801 7984 7dbb9280f03c0a315425f1b4f35d43ee ""
|
||||
"/usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty" 1775415801 1057 525c2192b5febbd8c1f662c9468335bb ""
|
||||
"/usr/share/texmf-dist/tex/generic/infwarerr/infwarerr.sty" 1775415801 8356 7bbb2c2373aa810be568c29e333da8ed ""
|
||||
"/usr/share/texmf-dist/tex/generic/intcalc/intcalc.sty" 1775415801 31769 002a487f55041f8e805cfbf6385ffd97 ""
|
||||
"/usr/share/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty" 1775415801 5412 d5a2436094cd7be85769db90f29250a6 ""
|
||||
"/usr/share/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty" 1775415801 17865 1a9bd36b4f98178fa551aca822290953 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pdfescape/pdfescape.sty" 1775415801 19007 15924f7228aca6c6d184b115f4baa231 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty" 1775415801 20089 80423eac55aa175305d35b49e04fe23b ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex" 1775415801 1016 1c2b89187d12a2768764b83b4945667c ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex" 1775415801 43906 06058dc09064474303f3b5dd62d982c0 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex" 1775415801 19324 f4e4c6403dd0f1605fd20ed22fa79dea ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex" 1775415801 6038 ccb406740cc3f03bbfb58ad504fe8c27 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex" 1775415801 6911 f6d4cf5a3fef5cc879d668b810e82868 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex" 1775415801 4883 42daaf41e27c3735286e23e48d2d7af9 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex" 1775415801 2544 8c06d2a7f0f469616ac9e13db6d2f842 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex" 1775415801 44195 5e390c414de027626ca5e2df888fa68d ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex" 1775415801 17311 e001219836e75b16c4af9a112785f30a ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex" 1775415801 21302 788a79944eb22192a4929e46963a3067 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex" 1775415801 9691 3d42d89522f4650c2f3dc616ca2b925e ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex" 1775415801 33335 dd1fa4814d4e51f18be97d88bf0da60c ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex" 1775415801 2965 4c2b1f4e0826925746439038172e5d6f ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex" 1775415801 5196 2cc249e0ee7e03da5f5f6589257b1e5b ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex" 1775415801 20821 7579108c1e9363e61a0b1584778804aa ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex" 1775415801 35251 5ff5b5b310c5ac882610e0ccc99095e7 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex" 1775415801 22012 81b34a0aa8fa1a6158cc6220b00e4f10 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex" 1775415801 8893 e851de2175338fdf7c17f3e091d94618 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex" 1775415801 11518 738408f795261b70ce8dd47459171309 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex" 1775415801 186859 0445d9a41a87648b4723e04765409541 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex" 1775415801 32995 ac577023e12c0e4bd8aa420b2e852d1a ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex" 1775415801 3063 8c415c68a0f3394e45cfeca0b65f6ee6 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex" 1775415801 949 cea70942e7b7eddabfb3186befada2e6 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex" 1775415801 13272 7777a64fbd07131a37d276b131c17ee2 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex" 1775415801 104717 9b2393fbf004a0ce7fa688dbce423848 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex" 1775415801 10165 cec5fa73d49da442e56efc2d605ef154 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex" 1775415801 28178 41c17713108e0795aac6fef3d275fbca ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex" 1775415801 9649 85779d3d8d573bfd2cd4137ba8202e60 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex" 1775415801 3865 ac538ab80c5cf82b345016e474786549 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex" 1775415801 3177 27d85c44fbfe09ff3b2cf2879e3ea434 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex" 1775415801 11024 0179538121bc2dba172013a3ef89519f ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex" 1775415801 7889 d0e193914ddc35444510f5b569e26b3d ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex" 1775415801 3379 781797a101f647bab82741a99944a229 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex" 1775415801 92405 f515f31275db273f97b9d8f52e1b0736 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex" 1775415801 37733 0fe471ac50324723cf6ab693e5c0916c ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex" 1775415801 8471 c2883569d03f69e8e1cabfef4999cfd7 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex" 1775415801 21211 1e73ec76bd73964d84197cc3d2685b01 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex" 1775415801 16218 98503859deba28f16813029fd927ed8e ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex" 1775415801 44792 c4a5a3feba777682c1d16420f2f01a5b ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex" 1775415801 116 760d50e6a16543bf6edb475635793673 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg" 1775415801 926 2963ea0dcf6cc6c0a770b69ec46a477b ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def" 1775415801 5542 32f75a31ea6c3a7e1148cd6d5e93dbb7 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def" 1775415801 12612 7774ba67bfd72e593c4436c2de6201e3 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex" 1775415801 61355 39904e7552da3800a6838d41440943a5 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex" 1775415801 1896 b8e0ca0ac371d74c0ca05583f6313c91 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex" 1775415801 7778 53c8b5623d80238f6a20aa1df1868e63 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex" 1775415801 24033 d8893a1ec4d1bfa101b172754743d340 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex" 1775415801 39784 414c54e866ebab4b801e2ad81d9b21d8 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.tex" 1775415801 37436 50ba7794827e363eec9ea3467c15c6d7 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex" 1775415801 4385 510565c2f07998c8a0e14f0ec07ff23c ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex" 1775415801 30029 c49ea8f95207c46731469c614daf4e33 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def" 1775415801 7067 11553488d1600cac6a0cfca012fca111 ""
|
||||
"/usr/share/texmf-dist/tex/generic/stringenc/stringenc.sty" 1775415801 21514 b7557edcee22835ef6b03ede1802dad4 ""
|
||||
"/usr/share/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty" 1775415801 7008 f92eaa0a3872ed622bbf538217cd2ab7 ""
|
||||
"/usr/share/texmf-dist/tex/latex/amsfonts/amsfonts.sty" 1775415801 5949 3f3fd50a8cc94c3d4cbf4fc66cd3df1c ""
|
||||
"/usr/share/texmf-dist/tex/latex/amsfonts/amssymb.sty" 1775415801 13829 94730e64147574077f8ecfea9bb69af4 ""
|
||||
"/usr/share/texmf-dist/tex/latex/amsfonts/umsa.fd" 1775415801 961 6518c6525a34feb5e8250ffa91731cff ""
|
||||
"/usr/share/texmf-dist/tex/latex/amsfonts/umsb.fd" 1775415801 961 d02606146ba5601b5645f987c92e6193 ""
|
||||
"/usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty" 1775415801 2222 27db7d52163edae53881b71ff62e754e ""
|
||||
"/usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty" 1775415801 4173 1b3e76addfb8afcb47db4811d66e1dc6 ""
|
||||
"/usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty" 1775415801 88471 b1bb09142edddebd46ba986341b867bd ""
|
||||
"/usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty" 1775415801 4474 c510a88aa5f51b8c773b50a7ee92befd ""
|
||||
"/usr/share/texmf-dist/tex/latex/amsmath/amstext.sty" 1775415801 2444 9983e1d0683f102e3b190c64a49313aa ""
|
||||
"/usr/share/texmf-dist/tex/latex/base/article.cls" 1775415801 20144 b966087dda3b194755eb460d32e2ef75 ""
|
||||
"/usr/share/texmf-dist/tex/latex/base/fontenc.sty" 1775415801 5275 6f9d359641b36842524cdb97716ab75f ""
|
||||
"/usr/share/texmf-dist/tex/latex/base/size10.clo" 1775415801 8448 686612a86f0e04f41ea577f5ec7e83d8 ""
|
||||
"/usr/share/texmf-dist/tex/latex/booktabs/booktabs.sty" 1775415801 6078 f1cb470c9199e7110a27851508ed7a5c ""
|
||||
"/usr/share/texmf-dist/tex/latex/cleveref/cleveref.sty" 1775415801 329481 7fc6b003158402a4c694bc0a1b729308 ""
|
||||
"/usr/share/texmf-dist/tex/latex/enumitem/enumitem.sty" 1775415801 52272 63d293bc0d496619edb57585740861a2 ""
|
||||
"/usr/share/texmf-dist/tex/latex/environ/environ.sty" 1775415801 4378 f429f0da968c278653359293040a8f52 ""
|
||||
"/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty" 1775415801 13886 d1306dcf79a944f6988e688c1785f9ce ""
|
||||
"/usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty" 1775415801 46885 8953c67ffba03252c6090aa19568b8ba ""
|
||||
"/usr/share/texmf-dist/tex/latex/geometry/geometry.sty" 1775415801 41601 9cf6c5257b1bc7af01a58859749dd37a ""
|
||||
"/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg" 1775415801 1213 620bba36b25224fa9b7e1ccb4ecb76fd ""
|
||||
"/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg" 1775415801 1224 978390e9c2234eab29404bc21b268d1e ""
|
||||
"/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def" 1775415801 19626 23e2822b9b2b5005f4c549ca98b9334d ""
|
||||
"/usr/share/texmf-dist/tex/latex/graphics/color.sty" 1775415801 7245 a7e8457a46cda4920df85d975267efb4 ""
|
||||
"/usr/share/texmf-dist/tex/latex/graphics/graphics.sty" 1775415801 18363 69bb4f5538964bfea50d1e6d89cbe69f ""
|
||||
"/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty" 1775415801 8118 43b99e52946c33a23f5f43b52d5cc5ec ""
|
||||
"/usr/share/texmf-dist/tex/latex/graphics/keyval.sty" 1775415801 2671 d9941f4bf4750e9b0603c9a2ec54693b ""
|
||||
"/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx" 1775415801 2885 9c645d672ae17285bba324998918efd8 ""
|
||||
"/usr/share/texmf-dist/tex/latex/graphics/trig.sty" 1775415801 4023 e66acf578d6b564c4670fb57ff336a7a ""
|
||||
"/usr/share/texmf-dist/tex/latex/grfext/grfext.sty" 1775415801 7133 b94bbacbee6e4fdccdc7f810b2aec370 ""
|
||||
"/usr/share/texmf-dist/tex/latex/hycolor/hycolor.sty" 1775415801 17914 4c28a13fc3d975e6e81c9bea1d697276 ""
|
||||
"/usr/share/texmf-dist/tex/latex/hyperref/hpdftex.def" 1775415801 48140 0d317d7fb0c7460a10b7b2713db57305 ""
|
||||
"/usr/share/texmf-dist/tex/latex/hyperref/hyperref.sty" 1775415801 223349 c7928c099a8656537a829ba316c95536 ""
|
||||
"/usr/share/texmf-dist/tex/latex/hyperref/nameref.sty" 1775415801 11459 697f11f6c439d25d39d2674b99566af4 ""
|
||||
"/usr/share/texmf-dist/tex/latex/hyperref/pd1enc.def" 1775415801 14249 b94983bbccc8d5739c16cc91d1fd1c3b ""
|
||||
"/usr/share/texmf-dist/tex/latex/hyperref/puenc.def" 1775415801 117118 2e3ba580751de5583beacf2e5fee69a9 ""
|
||||
"/usr/share/texmf-dist/tex/latex/kvoptions/kvoptions.sty" 1775415801 22555 6d8e155cfef6d82c3d5c742fea7c992e ""
|
||||
"/usr/share/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty" 1775415801 13815 760b0c02f691ea230f5359c4e1de23a7 ""
|
||||
"/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def" 1775415801 30662 bfd6e864f4ffc5018b0e2b6260c3181c ""
|
||||
"/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg" 1775415801 678 4792914a8f45be57bb98413425e4c7af ""
|
||||
"/usr/share/texmf-dist/tex/latex/lineno/lineno.sty" 1775415801 155535 edbc920f8c4825a66d507b1de69c9ae0 ""
|
||||
"/usr/share/texmf-dist/tex/latex/microtype/microtype-pdftex.def" 1775415801 49656 1c61dbb6f95479ba3d6c0033b53590e2 ""
|
||||
"/usr/share/texmf-dist/tex/latex/microtype/microtype.cfg" 1775415801 27642 f0cea12315babf4d40608f4eeb5c8458 ""
|
||||
"/usr/share/texmf-dist/tex/latex/microtype/microtype.sty" 1775415801 102845 043c56602c7d94c8a716319df1af5479 ""
|
||||
"/usr/share/texmf-dist/tex/latex/microtype/mt-cmr.cfg" 1775415801 22906 2122f73c0e7dc828f24240c2422dfe25 ""
|
||||
"/usr/share/texmf-dist/tex/latex/microtype/mt-msa.cfg" 1775415801 5929 2b35ae0f0fb46984dfffa2bc9d09de5c ""
|
||||
"/usr/share/texmf-dist/tex/latex/microtype/mt-msb.cfg" 1775415801 5594 992ef5c3f8fd1168bb7101a957333065 ""
|
||||
"/usr/share/texmf-dist/tex/latex/microtype/mt-ptm.cfg" 1775415801 12427 a6802929d6bd2a4ba6d4f5db602da2b4 ""
|
||||
"/usr/share/texmf-dist/tex/latex/multirow/multirow.sty" 1775415801 6696 886c9f3087d0b973ed2c19aa79cb3023 ""
|
||||
"/usr/share/texmf-dist/tex/latex/natbib/natbib.sty" 1775415801 45456 1c8843383c0bd05870c45fa0ebea6cc2 ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty" 1775415801 1090 bae35ef70b3168089ef166db3e66f5b2 ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty" 1775415801 373 00b204b1d7d095b892ad31a7494b0373 ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty" 1775415801 21013 f4ff83d25bb56552493b030f27c075ae ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty" 1775415801 989 c49c8ae06d96f8b15869da7428047b1e ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty" 1775415801 339 c2e180022e3afdb99c7d0ea5ce469b7d ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty" 1775415801 306 c56a323ca5bf9242f54474ced10fca71 ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty" 1775415801 443 8c872229db56122037e86bcda49e14f3 ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty" 1775415801 348 ee405e64380c11319f0e249fed57e6c5 ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty" 1775415801 274 5ae372b7df79135d240456a1c6f2cf9a ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty" 1775415801 325 f9f16d12354225b7dd52a3321f085955 ""
|
||||
"/usr/share/texmf-dist/tex/latex/psnfss/t1phv.fd" 1775415801 1483 47067fbe7c3ffed1ede7aaa7b8549d7a ""
|
||||
"/usr/share/texmf-dist/tex/latex/psnfss/t1ptm.fd" 1775415801 774 61d7da1e9f9e74989b196d147e623736 ""
|
||||
"/usr/share/texmf-dist/tex/latex/refcount/refcount.sty" 1775415801 9878 9e94e8fa600d95f9c7731bb21dfb67a4 ""
|
||||
"/usr/share/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty" 1775415801 9684 a33a14b82ce60d6e77cb9be689d79ee6 ""
|
||||
"/usr/share/texmf-dist/tex/latex/tcolorbox/tcolorbox.sty" 1775415801 108907 22d0f1983935b2026bb960e8244facba ""
|
||||
"/usr/share/texmf-dist/tex/latex/tools/verbatim.sty" 1775415801 7532 26d26e9d8f2ca784270d5da8ec7d102b ""
|
||||
"/usr/share/texmf-dist/tex/latex/trimspaces/trimspaces.sty" 1775415801 1380 971a51b00a14503ddf754cab24c3f209 ""
|
||||
"/usr/share/texmf-dist/tex/latex/url/url.sty" 1775415801 12796 8edb7d69a20b857904dd0ea757c14ec9 ""
|
||||
"/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty" 1775415801 55384 b454dec21c2d9f45ec0b793f0995b992 ""
|
||||
"/usr/share/texmf-dist/web2c/texmf.cnf" 1775415801 43569 fd570f2fa160877d211e859f687312ba ""
|
||||
"/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map" 1778740648 5398031 9ff4c9df8bd43dc57ad0660436b2232f ""
|
||||
"/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1778740615 2328330 42e60d011c56833d8cf99c1c1a8869a1 ""
|
||||
"corl_2026.sty" 1778915960.91905 14861 2509e8e2d8ee9fa6e5f4021973730f28 ""
|
||||
"paper.aux" 1778915961.88858 10768 2556dc9b99b49df6abac644723c92193 "pdflatex"
|
||||
"paper.bbl" 1778915961.50957 5480 640ad8c22e2df46df5b9776f80471b97 "bibtex paper"
|
||||
"paper.out" 1778915961.88858 2172 1cfee1f9ca74e31f8246b69f1b4736b1 "pdflatex"
|
||||
"paper.tex" 1778915791.17915 28181 86420d1a4e8e129459e1afa202a64339 ""
|
||||
(generated)
|
||||
"paper.aux"
|
||||
"paper.log"
|
||||
"paper.out"
|
||||
"paper.pdf"
|
||||
(rewritten before read)
|
||||
@@ -0,0 +1,356 @@
|
||||
PWD /home/droid/project/roboimi/workspace/final
|
||||
INPUT /usr/share/texmf-dist/web2c/texmf.cnf
|
||||
INPUT /var/lib/texmf/web2c/pdftex/pdflatex.fmt
|
||||
INPUT paper.tex
|
||||
OUTPUT paper.log
|
||||
INPUT /usr/share/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texmf-dist/tex/latex/base/size10.clo
|
||||
INPUT /usr/share/texmf-dist/tex/latex/base/size10.clo
|
||||
INPUT /usr/share/texmf-dist/tex/latex/base/size10.clo
|
||||
INPUT ./corl_2026.sty
|
||||
INPUT corl_2026.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/lineno/lineno.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/lineno/lineno.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/color.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/color.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx
|
||||
INPUT /usr/share/texmf-dist/tex/latex/natbib/natbib.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/natbib/natbib.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/stringenc/stringenc.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/stringenc/stringenc.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/pd1enc.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/pd1enc.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/pd1enc.def
|
||||
INPUT /usr/share/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/puenc.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/puenc.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/puenc.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/hpdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/hpdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/hpdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/base/fontenc.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/base/fontenc.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/psnfss/t1ptm.fd
|
||||
INPUT /usr/share/texmf-dist/tex/latex/psnfss/t1ptm.fd
|
||||
INPUT /usr/share/texmf-dist/tex/latex/psnfss/t1ptm.fd
|
||||
INPUT /usr/share/texmf-dist/fonts/map/fontname/texfonts.map
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmr8t.tfm
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/microtype-pdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/microtype-pdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/microtype-pdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/microtype.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/microtype.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/microtype.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/booktabs/booktabs.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/booktabs/booktabs.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/multirow/multirow.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/multirow/multirow.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amstext.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amstext.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsfonts/amssymb.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsfonts/amssymb.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsfonts/amsfonts.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsfonts/amsfonts.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/tcolorbox/tcolorbox.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/tcolorbox/tcolorbox.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/tools/verbatim.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/tools/verbatim.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/environ/environ.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/environ/environ.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/trimspaces/trimspaces.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/trimspaces/trimspaces.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/cleveref/cleveref.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/cleveref/cleveref.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||
INPUT ./paper.aux
|
||||
INPUT ./paper.aux
|
||||
INPUT paper.aux
|
||||
OUTPUT paper.aux
|
||||
INPUT /usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
INPUT /usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
INPUT /usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
INPUT /usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/grfext/grfext.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/grfext/grfext.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
||||
INPUT ./paper.out
|
||||
INPUT ./paper.out
|
||||
INPUT paper.out
|
||||
INPUT paper.out
|
||||
OUTPUT paper.pdf
|
||||
INPUT ./paper.out
|
||||
INPUT ./paper.out
|
||||
OUTPUT paper.out
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/mt-ptm.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/mt-ptm.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/mt-ptm.cfg
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmr8t.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmb8t.tfm
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/mt-cmr.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/mt-cmr.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/mt-cmr.cfg
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsfonts/umsa.fd
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsfonts/umsa.fd
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsfonts/umsa.fd
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/mt-msa.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/mt-msa.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/mt-msa.cfg
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam7.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam5.tfm
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsfonts/umsb.fd
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsfonts/umsb.fd
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsfonts/umsb.fd
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/mt-msb.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/mt-msb.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/microtype/mt-msb.cfg
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm7.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm5.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmb8t.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/jknappen/ec/ectt1000.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmr8t.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmr8t.tfm
|
||||
INPUT /usr/share/texmf-dist/tex/latex/psnfss/t1phv.fd
|
||||
INPUT /usr/share/texmf-dist/tex/latex/psnfss/t1phv.fd
|
||||
INPUT /usr/share/texmf-dist/tex/latex/psnfss/t1phv.fd
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvr8t.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmr8t.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmb8t.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/vf/adobe/times/ptmb8t.vf
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmb8r.tfm
|
||||
INPUT /var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map
|
||||
INPUT /usr/share/texmf-dist/fonts/enc/dvips/base/8r.enc
|
||||
INPUT /usr/share/texmf-dist/fonts/vf/adobe/times/ptmb8t.vf
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmb8r.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/vf/adobe/times/ptmr8t.vf
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmr8r.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/enc/dvips/cm-super/cm-super-t1.enc
|
||||
INPUT /usr/share/texmf-dist/fonts/vf/adobe/helvetic/phvr8t.vf
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvr8r.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/vf/adobe/times/ptmb8t.vf
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmb8r.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/vf/adobe/times/ptmr8t.vf
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmr8r.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmr9.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmr6.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmmi9.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmmi6.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmsy9.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmsy6.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex9.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam7.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm7.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmb8t.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/vf/adobe/times/ptmb8t.vf
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmb8r.tfm
|
||||
INPUT ./paper.bbl
|
||||
INPUT ./paper.bbl
|
||||
INPUT paper.bbl
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmri8t.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/vf/adobe/times/ptmri8t.vf
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/adobe/times/ptmri8r.tfm
|
||||
INPUT paper.aux
|
||||
INPUT ./paper.out
|
||||
INPUT ./paper.out
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi6.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi9.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr6.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr9.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy9.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/cm-super/sftt1000.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/urw/helvetic/uhvr8a.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/urw/times/utmb8a.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/urw/times/utmr8a.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/urw/times/utmri8a.pfb
|
||||
@@ -0,0 +1,14 @@
|
||||
\BOOKMARK [1][-]{section.1}{\376\377\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n}{}% 1
|
||||
\BOOKMARK [1][-]{section.2}{\376\377\000R\000e\000l\000a\000t\000e\000d\000\040\000W\000o\000r\000k}{}% 2
|
||||
\BOOKMARK [1][-]{section.3}{\376\377\000M\000e\000t\000h\000o\000d}{}% 3
|
||||
\BOOKMARK [2][-]{subsection.3.1}{\376\377\000P\000o\000l\000i\000c\000y\000\040\000f\000o\000r\000m\000u\000l\000a\000t\000i\000o\000n}{section.3}% 4
|
||||
\BOOKMARK [2][-]{subsection.3.2}{\376\377\000I\000m\000p\000r\000o\000v\000e\000d\000\040\000M\000e\000a\000n\000\040\000F\000l\000o\000w\000\040\000a\000c\000t\000i\000o\000n\000\040\000g\000e\000n\000e\000r\000a\000t\000i\000o\000n}{section.3}% 5
|
||||
\BOOKMARK [2][-]{subsection.3.3}{\376\377\000A\000t\000t\000e\000n\000t\000i\000o\000n\000\040\000R\000e\000s\000i\000d\000u\000a\000l\000\040\000p\000o\000l\000i\000c\000y\000\040\000t\000r\000a\000n\000s\000f\000o\000r\000m\000e\000r}{section.3}% 6
|
||||
\BOOKMARK [2][-]{subsection.3.4}{\376\377\000I\000n\000f\000e\000r\000e\000n\000c\000e\000\040\000a\000n\000d\000\040\000c\000o\000n\000t\000r\000o\000l\000\040\000l\000o\000o\000p}{section.3}% 7
|
||||
\BOOKMARK [1][-]{section.4}{\376\377\000E\000x\000p\000e\000r\000i\000m\000e\000n\000t\000s}{}% 8
|
||||
\BOOKMARK [2][-]{subsection.4.1}{\376\377\000S\000e\000t\000u\000p\000\040\000a\000n\000d\000\040\000m\000e\000t\000r\000i\000c\000s}{section.4}% 9
|
||||
\BOOKMARK [2][-]{subsection.4.2}{\376\377\000S\000o\000c\000k\000e\000t\000\040\000p\000e\000g\000\040\000i\000n\000s\000e\000r\000t\000i\000o\000n}{section.4}% 10
|
||||
\BOOKMARK [2][-]{subsection.4.3}{\376\377\000O\000b\000j\000e\000c\000t\000\040\000t\000r\000a\000n\000s\000f\000e\000r\000\040\000a\000n\000d\000\040\000a\000b\000l\000a\000t\000i\000o\000n\000s}{section.4}% 11
|
||||
\BOOKMARK [2][-]{subsection.4.4}{\376\377\000D\000e\000r\000i\000v\000e\000d\000\040\000s\000p\000e\000e\000d\000-\000q\000u\000a\000l\000i\000t\000y\000\040\000c\000o\000m\000p\000a\000r\000i\000s\000o\000n\000s}{section.4}% 12
|
||||
\BOOKMARK [1][-]{section.5}{\376\377\000L\000i\000m\000i\000t\000a\000t\000i\000o\000n\000s}{}% 13
|
||||
\BOOKMARK [1][-]{section.6}{\376\377\000C\000o\000n\000c\000l\000u\000s\000i\000o\000n}{}% 14
|
||||
Binary file not shown.
@@ -0,0 +1,306 @@
|
||||
|
||||
\documentclass{article}
|
||||
|
||||
\usepackage{corl_2026}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage{microtype}
|
||||
\usepackage{booktabs}
|
||||
\usepackage{multirow}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{amsmath,amssymb}
|
||||
\usepackage{enumitem}
|
||||
\usepackage{tcolorbox}
|
||||
\usepackage[capitalize]{cleveref}
|
||||
\usepackage{url}
|
||||
|
||||
\title{iMF-AttnRes: Fast Mean-Flow Action Generation with Attention Residuals for Simulated Robot Manipulation}
|
||||
|
||||
\author{Anonymous Authors}
|
||||
|
||||
\begin{document}
|
||||
\maketitle
|
||||
|
||||
\begin{abstract}
|
||||
Diffusion-style vision-language-action policies provide expressive action distributions, but iterative inference can be too slow for closed-loop manipulation. We study whether improved Mean Flow (iMF), originally motivated by fast-forward generative modeling, can be adapted to action generation so that a policy uses one to a few flow evaluations rather than long denoising chains. We combine iMF with Attention Residuals (AttnRes), which replace fixed residual accumulation in a deep policy transformer with learned depth-wise aggregation over previous layer outputs. In RoboIMI socket peg insertion, the best iMF-AttnRes policy reaches an average reward of 1513.56 and median reward of 1901.5 with 15.122 ms average inference time, compared with diffusion-style infer100 baselines at 861.53/338.291 ms and 1019.39/397.912 ms. In RoboIMI object transfer, the best iMF-AttnRes policy reaches average reward 526.22 and 44/100 success-like episodes, compared with a native diffusion-policy baseline at 319.2 and 29/100. These results suggest that average-flow action generation is a promising route to low-latency robot policies, while also revealing sensitivity to horizon choices, vision-token design, and simulation-to-real validation.
|
||||
\end{abstract}
|
||||
|
||||
\keywords{Robot learning, imitation learning, flow matching, vision-language-action models}
|
||||
|
||||
\section{Introduction}
|
||||
\label{sec:introduction}
|
||||
|
||||
Learning-based robot manipulation policies increasingly use expressive generative action models. Diffusion Policy showed that action diffusion can be an effective visuomotor policy class for manipulation~\citep{black2024pi0,chi2023diffusion}, inheriting the representational flexibility of denoising diffusion models~\citep{ho2020denoising} and transformer-based diffusion backbones~\citep{peebles2023scalable}. However, this expressivity often comes with a deployment cost: the policy must be evaluated repeatedly during sampling. In the RoboIMI socket peg experiments studied here, two diffusion-style VLA baselines use infer100 sampling and require 338.291 ms and 397.912 ms per inference on their recorded rollouts. Such latencies are undesirable when the robot must repeatedly close the perception-action loop.
|
||||
|
||||
This paper asks a direct question: can a robot action generator retain the quality benefits of generative policies while reducing inference to one or a few evaluations? We explore this question by adapting improved Mean Flow (iMF) to VLA-style imitation learning. Flow matching and rectified flow formulate generation through continuous vector fields~\citep{lipman2023flow,liu2022flow}. Mean Flow reframes generation around average velocity, enabling one-step generation~\citep{geng2025mean}; iMF further addresses instability caused by substituting conditional velocities into nonlinear mean-flow relations~\citep{geng2025improved}. For robot control, this distinction matters because fewer evaluations directly increase control responsiveness.
|
||||
|
||||
We pair iMF with Attention Residuals (AttnRes). Residual connections are essential for deep visual and transformer networks~\citep{he2016deep,vaswani2017attention}, but standard residual accumulation adds all layer outputs with fixed unit weight. The motivation in our notes is to rewrite residual networks as a sum over layer increments, then replace the uniform sum with a learned softmax aggregation. AttnRes implements this view by letting each layer attend over preceding residual outputs~\citep{kimi2026attention}. We use this mechanism in the policy transformer to reduce depth-wise feature dilution while keeping the action generator fast.
|
||||
|
||||
Our contributions are:
|
||||
\begin{enumerate}[leftmargin=*]
|
||||
\item We formulate an iMF-AttnRes VLA policy for simulated robot imitation learning, combining one-to-few-step average-flow action generation with learned residual aggregation.
|
||||
\item We provide 100-rollout evaluations on two RoboIMI manipulation environments, socket peg insertion and object transfer, comparing against diffusion-style VLA baselines, a native Diffusion Policy baseline, ACT-style action chunking, and SmolVLA-style compact VLA inference~\citep{zhao2023learning,shukor2025smolvla}.
|
||||
\item We report both task quality and deployment speed. On socket insertion, the strongest iMF-AttnRes run improves average reward over the ph16 diffusion-style baseline by 1.76$\times$ and inference FPS by 22.97$\times$; on object transfer, the strongest iMF-AttnRes run improves average reward over the native diffusion-policy baseline by 1.65$\times$.
|
||||
\end{enumerate}
|
||||
We deliberately keep the claims scoped to simulation: hardware varies across runs, and real-robot transfer remains future work.
|
||||
|
||||
\section{Related Work}
|
||||
\label{sec:related_work}
|
||||
|
||||
\paragraph{Diffusion and flow policies for robot action generation.}
|
||||
Diffusion Policy introduced action diffusion as a visuomotor policy learning framework~\citep{black2024pi0,chi2023diffusion}, building on denoising diffusion objectives~\citep{ho2020denoising}. Diffusion transformers further show that transformer backbones can scale generative modeling~\citep{peebles2023scalable}. These models are expressive because they iteratively refine samples, but iterative refinement is also a latency source. Flow matching provides an alternative continuous generative formulation by learning vector fields that transport probability paths~\citep{lipman2023flow}. Rectified flow emphasizes straighter transport paths and faster sampling~\citep{liu2022flow}. Our method follows this fast-generation lineage but uses the improved mean-flow relation to target one-to-few-step action generation.
|
||||
|
||||
\paragraph{Vision-language-action models and action chunking.}
|
||||
Transformer robot policies such as RT-1 and RT-2 show how large sequence models can map observations and task context to robot actions~\citep{brohan2022rt,brohan2023rt}. OpenVLA studies open VLA modeling at scale~\citep{kim2024openvla}, while compact or efficient VLA models such as SmolVLA and FAST reduce deployment cost through smaller backbones or efficient action tokenization~\citep{shukor2025smolvla,pertsch2025fast}. Action Chunking with Transformers (ACT) predicts chunks of future actions to improve temporal consistency and execution efficiency~\citep{zhao2023learning}. The iMF-AttnRes policy is complementary: it retains chunked execution but changes the generative action sampler so that each chunk can be produced with one to a few evaluations.
|
||||
|
||||
|
||||
\paragraph{Residual aggregation and attention residuals.}
|
||||
Standard residual networks update $x_t=x_{t-1}+y_t$, so recursively $x_t=y_0+y_1+\cdots+y_t$. Equivalently, the next layer receives a uniform aggregation of all previous residual increments. A natural generalization is
|
||||
\begin{equation}
|
||||
y_{t+1}=f_{t+1}\left(\sum_{s=0}^t a_{t+1,s}y_s\right),\qquad a_{t+1,s}\ge0,\quad \sum_{s=0}^t a_{t+1,s}=1.
|
||||
\end{equation}
|
||||
AttnRes instantiates the weights with an attention distribution over previous residual outputs,
|
||||
\begin{equation}
|
||||
a_{t+1,s}\propto\exp\left(w_{t+1}^{\top}\mathrm{RMSNorm}(y_s)\right).
|
||||
\end{equation}
|
||||
This preserves the residual pathway while allowing each layer to select useful earlier representations instead of uniformly accumulating all of them~\citep{kimi2026attention}. We use this mechanism in the policy transformer; our ablations suggest that applying AttnRes too broadly inside the vision stack is not automatically beneficial.
|
||||
|
||||
\section{Method}
|
||||
\label{sec:method}
|
||||
|
||||
\subsection{Policy formulation}
|
||||
\label{sec:policy_formulation}
|
||||
|
||||
We consider simulated imitation learning in RoboIMI. At each control step, the policy receives visual observations, robot state, and a task context, and predicts an action chunk of length \texttt{exec}. The main iMF-AttnRes socket and object-transfer policies use ph32/exec16 or related horizon-execution settings. The rollout evaluator records cumulative reward, median reward, mean maximum reward, nonzero-reward episode count, task-specific success-like threshold count, inference FPS, control FPS, and inference latency.
|
||||
|
||||
The policy contains three conceptual parts. First, an observation encoder maps visual and state inputs into policy tokens. Second, a transformer policy core uses AttnRes in place of fixed residual accumulation. Third, the action generator uses iMF to predict an average flow over action noise-to-data paths, enabling one-to-few inference evaluations. In the strongest socket variants, the generator uses infer2 or infer3; in the strongest object-transfer run, it uses infer1.
|
||||
|
||||
\subsection{Improved Mean Flow action generation}
|
||||
\label{sec:imf_action_generation}
|
||||
|
||||
Classical flow matching trains an instantaneous velocity field. Let $x_t$ denote a sample at time $t$ and let the instantaneous flow satisfy
|
||||
\begin{equation}
|
||||
\frac{d x_t}{dt} = v(x_t,t).
|
||||
\end{equation}
|
||||
If a policy takes very few integration or denoising steps, using only this local instantaneous velocity can cause large path errors when the learned trajectory is curved. Mean Flow addresses this by training an average velocity over an interval. For two times $r<t$, define
|
||||
\begin{equation}
|
||||
\bar{v}(z_t,r,t) = \frac{1}{t-r}\int_r^t v(z_\tau,\tau)d\tau.
|
||||
\end{equation}
|
||||
The model receives $(z_t,r,t)$ and predicts $u_\theta(z_t,r,t)$, an approximation to $\bar{v}(z_t,r,t)$. At inference, this average velocity is used to move directly across a larger interval, replacing a long sequence of small denoising or ODE steps.
|
||||
|
||||
The useful training identity comes from differentiating $(t-r)\bar{v}$ with respect to $t$:
|
||||
\begin{equation}
|
||||
\bar{v}(z_t,r,t)=v(z_t,t) - (t-r)\frac{d}{dt}\bar{v}(z_t,r,t).
|
||||
\end{equation}
|
||||
The total derivative contains the dependence of $\bar{v}$ on the current state and time, and can be written as a Jacobian-vector product,
|
||||
\begin{equation}
|
||||
\frac{d}{dt}\bar{v}(z_t,r,t)
|
||||
= \mathrm{jvp}\big(\bar{v},(z,r,t),(v,0,1)\big).
|
||||
\end{equation}
|
||||
Mean Flow uses this relation to train an average-velocity predictor for one-step generation~\citep{geng2025mean}. In our setting, the target action sample and noise sample provide a conditional straight-path velocity, but the nonlinear JVP expression should conceptually depend on the marginal velocity field. Directly substituting the conditional velocity inside the nonlinear term can destabilize training. We therefore use the improved Mean Flow correction~\citep{geng2025improved}:
|
||||
\begin{equation}
|
||||
V_\theta(z_t,r,t) = u_\theta(z_t,r,t) + (t-r)\mathrm{JVP}_{\mathrm{sg}}\big(u_\theta; v_\theta\big).
|
||||
\end{equation}
|
||||
Here $v_\theta$ is obtained from the same network at the instantaneous case, and the stop-gradient JVP direction prevents the nonlinear term from destabilizing the target. The supervised target remains the conditional straight-path velocity available from the imitation action sample and noise sample, but the learned branch used at deployment is the average-flow predictor $u_\theta$. This is the mechanism that allows infer1, infer2, and infer3 policies to compete with infer100 diffusion-style baselines.
|
||||
|
||||
\subsection{Attention Residual policy transformer}
|
||||
\label{sec:attnres_policy}
|
||||
|
||||
We spell out AttnRes by first rewriting an ordinary residual stack. Let $x_l$ be the hidden state entering layer $l$, and let the layer output increment be
|
||||
\begin{equation}
|
||||
y_l = f_l(x_{l-1}), \qquad x_l = x_{l-1}+y_l .
|
||||
\end{equation}
|
||||
With the convention $y_0=x_0$, recursively expanding the residual updates gives
|
||||
\begin{equation}
|
||||
x_l = y_0+y_1+\cdots+y_l = \sum_{s=0}^{l} y_s .
|
||||
\end{equation}
|
||||
Therefore, the next residual block can be written as
|
||||
\begin{equation}
|
||||
y_{l+1}=f_{l+1}(x_l)
|
||||
= f_{l+1}\left(\sum_{s=0}^{l} y_s\right).
|
||||
\label{eq:standard_residual_sum}
|
||||
\end{equation}
|
||||
This makes the implicit assumption clear: a standard residual network gives every previous increment a fixed coefficient of one before layer $l+1$ computes the next increment. If we normalize the coefficients only to emphasize their relative importance, this is equivalent to uniform depth aggregation,
|
||||
\begin{equation}
|
||||
y_{l+1}=f_{l+1}\left((l+1)\sum_{s=0}^{l}\frac{1}{l+1}y_s\right),
|
||||
\end{equation}
|
||||
so the layer cannot choose which earlier residual features are most useful.
|
||||
|
||||
AttnRes replaces this fixed aggregation with learned, layer-dependent weights. Instead of feeding $f_{l+1}$ the unweighted residual sum, we form
|
||||
\begin{equation}
|
||||
\tilde{x}_l = \sum_{s=0}^{l} a_{l+1,s} y_s,
|
||||
\qquad
|
||||
a_{l+1,s}\ge 0,
|
||||
\qquad
|
||||
\sum_{s=0}^{l} a_{l+1,s}=1,
|
||||
\label{eq:weighted_residual_sum}
|
||||
\end{equation}
|
||||
then compute
|
||||
\begin{equation}
|
||||
y_{l+1}=f_{l+1}(\tilde{x}_l),
|
||||
\qquad
|
||||
x_{l+1}=x_l+y_{l+1}.
|
||||
\end{equation}
|
||||
The attention weights are obtained by scoring each previous residual increment with a learned query vector for the current layer:
|
||||
\begin{equation}
|
||||
e_{l+1,s}=w_{l+1}^{\top}\mathrm{RMSNorm}(y_s),
|
||||
\qquad
|
||||
a_{l+1,s}=\frac{\exp(e_{l+1,s})}{\sum_{j=0}^{l}\exp(e_{l+1,j})}.
|
||||
\label{eq:attnres_weights}
|
||||
\end{equation}
|
||||
Equations~\eqref{eq:standard_residual_sum}--\eqref{eq:attnres_weights} show the difference in one line: standard residuals use a fixed sum $\sum_s y_s$, whereas AttnRes uses an attention-weighted sum $\sum_s a_{l+1,s}y_s$ whose coefficients depend on the current layer. This keeps the residual pathway but lets each policy layer select earlier visual-state-action features rather than uniformly accumulating all previous increments. In our object-transfer ablations, the best settings apply AttnRes in the policy transformer; replacing residuals throughout the vision encoder underperforms, suggesting that the placement of learned residual aggregation is important.
|
||||
|
||||
\subsection{Inference and control loop}
|
||||
\label{sec:inference_loop}
|
||||
|
||||
At deployment, the iMF-AttnRes policy samples an action chunk with one to a few average-flow evaluations and then executes the chunk for \texttt{exec} control steps. This contrasts with diffusion-style baselines whose run names include infer100. For socket insertion, the strongest iMF-AttnRes policies use ph32/exec16 and infer2 or infer3. For object transfer, the strongest iMF-AttnRes run uses ph32/exec16 and infer1. The resulting control loop is simple: encode observations, run the AttnRes transformer, evaluate the iMF action generator a small number of times, execute the predicted chunk, and replan on the next observation window.
|
||||
|
||||
\begin{figure}[t]
|
||||
\centering
|
||||
\begin{tcolorbox}[width=0.96\linewidth,colback=white,colframe=black!35,title={Placeholder for \texttt{fig-method-overview}}]
|
||||
\small Paper Banana prompt: create a clean 16:9 academic system diagram for iMF-AttnRes VLA. Show multi-view images, robot state, and optional language/task conditioning entering a VLA encoder; a policy transformer with AttnRes depth-wise residual aggregation; an improved Mean Flow action generator predicting average flow with one-to-few evaluations; and an exec-length action chunk controlling RoboIMI socket-insert and sim\_transfer robots. Use muted conference-paper colors, clear arrows, no decorative 3D, and labels for iMF, AttnRes, infer1/infer2/infer3, and exec16.
|
||||
\end{tcolorbox}
|
||||
\caption{Planned method overview figure. The current draft intentionally stores the Paper Banana generation prompt as a placeholder instead of generating an image.}
|
||||
\label{fig:method_overview}
|
||||
\end{figure}
|
||||
|
||||
\begin{figure}[t]
|
||||
\centering
|
||||
\begin{tcolorbox}[width=0.96\linewidth,colback=white,colframe=black!35,title={Placeholder for \texttt{fig-imf-attnres-components}}]
|
||||
\small Paper Banana prompt: create a 16:9 technical diagram contrasting classical flow matching instantaneous velocity $dx_t/dt=v(x_t,t)$; Mean Flow average velocity over $[r,t]$ with the JVP correction term; improved Mean Flow training relation $V_\theta(z_t)=u_\theta(z_t)+(t-r)\mathrm{JVP}_{\mathrm{sg}}(u_\theta;v_\theta)$; and AttnRes weighted residual aggregation $a_{t+1,s}$ proportional to $\exp(w_{t+1}\cdot\mathrm{RMSNorm}(y_s))$. Use equation callouts, minimal arrows, and a final callout saying one-to-few-step action generation for robot control.
|
||||
\end{tcolorbox}
|
||||
\caption{Planned technical component figure. The prompt is retained as a placeholder for later Paper Banana rendering.}
|
||||
\label{fig:imf_attnres_components}
|
||||
\end{figure}
|
||||
|
||||
\section{Experiments}
|
||||
\label{sec:experiments}
|
||||
|
||||
\subsection{Setup and metrics}
|
||||
\label{sec:setup_metrics}
|
||||
|
||||
We evaluate in two RoboIMI simulation environments. The socket peg task measures progress toward inserting a peg-like object into a socket. The sim\_transfer task measures object-transfer manipulation. Each reported row uses 100 rollouts. Metrics are copied directly from the rollout logs: average cumulative reward, median reward, mean maximum reward, maximum cumulative reward, count of nonzero-reward episodes, count of success-like episodes, inference FPS, control FPS, and average inference time when available. For socket insertion, the recorded success-like threshold is \texttt{max\_reward > 4}; for sim\_transfer, it is \texttt{max\_reward >= 4}. Hardware differs across runs, so speed comparisons are practical deployment measurements rather than perfectly normalized throughput benchmarks.
|
||||
|
||||
\subsection{Socket peg insertion}
|
||||
\label{sec:socket_results}
|
||||
|
||||
\Cref{tab:socket_results} summarizes the socket peg insertion results. The best iMF-AttnRes policy by average reward is the infer3 model, with average reward 1513.56 and median reward 1901.5. It exceeds both diffusion-style infer100 baselines: the ph16 baseline obtains average reward 861.53 and median reward 668.0, while the ph32/exec16 baseline obtains average reward 1019.39 and median reward 804.0. The latency gap is large. The iMF-AttnRes infer2 and infer3 policies require 14.409 ms and 15.122 ms per inference, while the two infer100 baselines require 338.291 ms and 397.912 ms.
|
||||
|
||||
\begin{table*}[t]
|
||||
\centering
|
||||
\small
|
||||
\setlength{\tabcolsep}{3.5pt}
|
||||
\caption{Socket peg insertion over 100 rollouts. Success-like uses the recorded \texttt{max\_reward > 4} count.}
|
||||
\label{tab:socket_results}
|
||||
\begin{tabular}{llrrrrrr}
|
||||
\toprule
|
||||
Method & Setting & Avg. reward & Median & Avg. max & Nonzero & Success-like & Latency ms \\
|
||||
\midrule
|
||||
iMF-AttnRes & infer1, ph32, exec16, 50k & 1275.22 & 1490.5 & 3.12 & 84/100 & 0/100 & 16.186 \\
|
||||
Diffusion-style VLA & infer100, ph16, 150k & 861.53 & 668.0 & 2.58 & 97/100 & 2/100 & 338.291 \\
|
||||
Diffusion-style VLA & infer100, ph32, exec16, 150k & 1019.39 & 804.0 & 2.47 & 92/100 & 4/100 & 397.912 \\
|
||||
iMF-AttnRes & infer2, ph32, exec16, 150k & 1472.62 & 1825.0 & 3.29 & 83/100 & 5/100 & 14.409 \\
|
||||
iMF-AttnRes & infer3, ph32, exec16, 150k & \textbf{1513.56} & \textbf{1901.5} & 3.28 & 83/100 & 3/100 & 15.122 \\
|
||||
ACT & action chunking & 289.60 & 13.0 & 1.29 & 55/100 & 1/100 & 100.212 \\
|
||||
SmolVLA & 100k & 466.16 & 106.0 & 1.72 & 89/100 & 0/100 & \textbf{2.614} \\
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
\end{table*}
|
||||
|
||||
The nonzero-reward count reveals an important caveat. The ph16 diffusion-style baseline has 97/100 nonzero episodes, higher than the iMF-AttnRes infer2 and infer3 policies at 83/100. Yet its average and median rewards are much lower. Thus, in this task, nonzero contact or partial progress is not sufficient; the iMF-AttnRes policies more often produce high-reward trajectories when they engage the task successfully. SmolVLA is the fastest method in raw latency and control FPS, but its reward is lower than iMF-AttnRes. ACT underperforms both iMF-AttnRes and the diffusion-style VLA baselines in this setup.
|
||||
|
||||
\begin{figure}[t]
|
||||
\centering
|
||||
\begin{tcolorbox}[width=0.96\linewidth,colback=white,colframe=black!35,title={Placeholder for \texttt{fig-socket-reward-latency}}]
|
||||
\small Paper Banana prompt: create a 4:3 publication-quality reward-latency comparison for socket peg insertion. Plot methods from the socket table with average reward on the y-axis and average inference time or inverse latency on the x-axis. Highlight iMF-AttnRes infer2/infer3 at 1472.62/1513.56 average reward and 14.409/15.122 ms, diffusion-style infer100 baselines at 861.53/1019.39 average reward and 338.291/397.912 ms, ACT at 289.6 and 100.2116 ms, and SmolVLA at 466.16 and 2.614 ms. Use log-scale latency if helpful and label the speed-quality Pareto frontier.
|
||||
\end{tcolorbox}
|
||||
\caption{Planned socket reward-latency figure. The current draft contains the Paper Banana prompt placeholder instead of a rendered image.}
|
||||
\label{fig:socket_reward_latency}
|
||||
\end{figure}
|
||||
|
||||
\subsection{Object transfer and ablations}
|
||||
\label{sec:sim_transfer_results}
|
||||
|
||||
\Cref{tab:sim_transfer_results} reports the object-transfer results. The strongest iMF-AttnRes run reaches average reward 526.22 and 44/100 success-like episodes, exceeding the native diffusion-policy DiT/DDPM/ResNet baseline at average reward 319.2 and 29/100 success-like episodes. This is the clearest sim\_transfer evidence that iMF-AttnRes can improve both reward and success-like threshold count.
|
||||
|
||||
\begin{table*}[t]
|
||||
\centering
|
||||
\small
|
||||
\setlength{\tabcolsep}{3.2pt}
|
||||
\caption{Object transfer / sim\_transfer over 100 rollouts. Success-like uses the recorded \texttt{max\_reward >= 4} count.}
|
||||
\label{tab:sim_transfer_results}
|
||||
\begin{tabular}{llrrrrrr}
|
||||
\toprule
|
||||
Method & Setting & Avg. reward & Median & Avg. max & Nonzero & Success-like & Inf. FPS \\
|
||||
\midrule
|
||||
Native Diffusion Policy & DiT + DDPM + ResNet & 319.20 & 6.0 & 1.68 & 55/100 & 29/100 & 32.09 \\
|
||||
Diffusion-style VLA & emb384, layer18 & 233.52 & 0.0 & 1.12 & 39/100 & 17/100 & 1.859 \\
|
||||
iMF multi-token ResNet18 & step34999, ph16, exec08 & 260.66 & 0.0 & 1.12 & 33/100 & 23/100 & \textbf{441.80} \\
|
||||
iMF full AttnRes vision & ph16, exec08, 50k & 228.42 & 0.0 & 0.94 & 31/100 & 16/100 & 55.997 \\
|
||||
iMF-AttnRes DiT only & ph16, exec16, 50k & 240.64 & 0.0 & 1.02 & 32/100 & 19/100 & 137.996 \\
|
||||
iMF-AttnRes DiT only & ph32, exec08, 50k & 163.28 & 0.0 & 0.76 & 26/100 & 12/100 & 85.638 \\
|
||||
iMF-AttnRes DiT only & ph32, exec32, 50k & 260.72 & 0.0 & 1.18 & 38/100 & 21/100 & 9.557 \\
|
||||
iMF-AttnRes DiT only & ph16, exec08, 50k & 229.56 & 0.0 & 1.18 & 41/100 & 18/100 & 69.984 \\
|
||||
iMF-AttnRes DiT only & ph08, exec08, 50k & 237.02 & 0.0 & 1.32 & 48/100 & 18/100 & 69.192 \\
|
||||
iMF-AttnRes DiT only & ph32, exec16, 50k & 49.88 & 0.0 & 0.32 & 13/100 & 4/100 & 138.903 \\
|
||||
iMF-AttnRes & infer1, ph32, exec16, 50k & \textbf{526.22} & \textbf{86.0} & \textbf{2.14} & \textbf{63/100} & \textbf{44/100} & 8.911 \\
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
\end{table*}
|
||||
|
||||
The ablations are mixed and therefore useful. The ResNet18 multi-token iMF model is extremely fast at 441.80 inference FPS, but its average reward is 260.66, below the native diffusion-policy baseline. The full-AttnRes vision model reaches 228.42 average reward, suggesting that replacing residuals inside the vision encoder is not automatically helpful. Horizon and execution length are also sensitive: the ph32/exec16 DiT-only iMF variant reaches only 49.88 average reward despite high inference FPS. The strongest object-transfer run therefore combines iMF-AttnRes with the right horizon and execution setting rather than showing a universally dominant architectural change.
|
||||
|
||||
\begin{figure}[t]
|
||||
\centering
|
||||
\begin{tcolorbox}[width=0.96\linewidth,colback=white,colframe=black!35,title={Placeholder for \texttt{fig-sim-transfer-ablation}}]
|
||||
\small Paper Banana prompt: create a 4:3 grouped bar chart for sim\_transfer ablations. Show average reward and success-like episode count for native diffusion policy, best sim-transfer iMF-AttnRes infer1, ResNet18 multi-token iMF, full-AttnRes vision, and selected horizon/execution variants. Emphasize that best iMF-AttnRes reaches 526.22 average reward and 44/100 success-like episodes versus native diffusion policy at 319.2 and 29/100, while several ablations underperform.
|
||||
\end{tcolorbox}
|
||||
\caption{Planned sim\_transfer ablation figure. The prompt is retained for later Paper Banana rendering.}
|
||||
\label{fig:sim_transfer_ablation}
|
||||
\end{figure}
|
||||
|
||||
\subsection{Derived speed-quality comparisons}
|
||||
\label{sec:derived_comparisons}
|
||||
|
||||
\Cref{tab:derived_comparisons} lists the derived comparisons used to summarize the tradeoff. On socket insertion, iMF-AttnRes infer3 improves average reward by 1.76$\times$ over the ph16 diffusion-style baseline and by 1.48$\times$ over the ph32 diffusion-style baseline. The same infer3 run improves inference FPS by 22.97$\times$ over the ph16 diffusion-style baseline. The infer2 run is 23.48$\times$ lower latency than the ph16 diffusion-style baseline and 28.45$\times$ higher inference FPS than the ph32 diffusion-style baseline. On object transfer, best iMF-AttnRes improves average reward by 1.65$\times$ and success-like episodes by +15 over native Diffusion Policy.
|
||||
|
||||
\begin{table}[t]
|
||||
\centering
|
||||
\small
|
||||
\caption{Derived comparisons from the 100-rollout logs.}
|
||||
\label{tab:derived_comparisons}
|
||||
\begin{tabular}{llr}
|
||||
\toprule
|
||||
Comparison & Metric & Result \\
|
||||
\midrule
|
||||
Socket iMF infer3 vs ph16 diffusion & Avg. reward & 1.76$\times$ \\
|
||||
Socket iMF infer3 vs ph32 diffusion & Avg. reward & 1.48$\times$ \\
|
||||
Socket iMF infer3 vs ACT & Avg. reward & 5.23$\times$ \\
|
||||
Socket iMF infer3 vs SmolVLA & Avg. reward & 3.25$\times$ \\
|
||||
Socket iMF infer2 vs ph16 diffusion & Latency reduction & 23.48$\times$ \\
|
||||
Socket iMF infer3 vs ph16 diffusion & Inference FPS & 22.97$\times$ \\
|
||||
Socket iMF infer2 vs ph32 diffusion & Inference FPS & 28.45$\times$ \\
|
||||
Sim transfer iMF vs native diffusion & Avg. reward & 1.65$\times$ \\
|
||||
Sim transfer iMF vs native diffusion & Success-like episodes & +15 \\
|
||||
ResNet18 iMF vs layer18 baseline & Inference FPS & 237.65$\times$ \\
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
\end{table}
|
||||
|
||||
\section{Limitations}
|
||||
\label{sec:limitations}
|
||||
|
||||
All experiments are simulation rollouts. The data do not establish real-robot transfer, robustness to sensing changes, or safety under hardware execution. CoRL submissions should provide convincing robotics evidence; the present draft should therefore be viewed as a simulation-first manuscript that still needs real-robot or stronger transfer evidence before formal submission.
|
||||
|
||||
The speed measurements are also not perfectly hardware-normalized. Runs were collected on RTX 5880 Ada, L20, and RTX 5090 machines as encoded by their run names. Large latency differences between infer100 diffusion-style policies and infer1--3 iMF-AttnRes policies are meaningful because they reflect algorithmic sampling cost, but exact FPS ratios may include hardware and implementation effects. Future experiments should rerun all main policies on the same GPU, with identical rollout parallelism and identical observation preprocessing.
|
||||
|
||||
Finally, iMF-AttnRes is sensitive to design choices. In sim\_transfer, several iMF variants underperform the native diffusion-policy baseline, and full AttnRes in the vision encoder performs worse than more conservative policy-transformer AttnRes. This suggests that average-flow training is not a plug-in guarantee; horizon, execution length, visual tokenization, and residual placement must be tuned carefully.
|
||||
|
||||
\section{Conclusion}
|
||||
\label{sec:conclusion}
|
||||
|
||||
We presented a first simulation study of iMF-AttnRes for fast robot action generation. The method adapts improved Mean Flow to VLA imitation learning and uses Attention Residuals to replace fixed residual accumulation in the policy transformer. In socket peg insertion, iMF-AttnRes achieves higher average and median reward than diffusion-style infer100 baselines while reducing inference latency from hundreds of milliseconds to roughly 15 ms. In object transfer, the best iMF-AttnRes run improves average reward and success-like episode count over the native diffusion-policy baseline. At the same time, ablations show that the method is sensitive to horizon/execution settings and residual placement. The next step is controlled, hardware-normalized evaluation with real-robot transfer.
|
||||
|
||||
\clearpage
|
||||
\bibliography{refs}
|
||||
|
||||
\end{document}
|
||||
@@ -0,0 +1,140 @@
|
||||
@article{chi2023diffusion,
|
||||
title = {Diffusion Policy: Visuomotor Policy Learning via Action Diffusion},
|
||||
author = {Chi, Cheng and Xu, Zhenjia and Feng, Siyuan and Cousineau, Eric and Du, Yilun and Burchfiel, Benjamin and Tedrake, Russ and Song, Shuran},
|
||||
year = {2023},
|
||||
journal = {arXiv preprint arXiv:2303.04137},
|
||||
eprint = {2303.04137},
|
||||
archivePrefix = {arXiv}
|
||||
}
|
||||
|
||||
@inproceedings{ho2020denoising,
|
||||
title = {Denoising Diffusion Probabilistic Models},
|
||||
author = {Ho, Jonathan and Jain, Ajay and Abbeel, Pieter},
|
||||
year = {2020},
|
||||
booktitle = {Advances in Neural Information Processing Systems}
|
||||
}
|
||||
|
||||
@inproceedings{peebles2023scalable,
|
||||
title = {Scalable Diffusion Models with Transformers},
|
||||
author = {Peebles, William and Xie, Saining},
|
||||
year = {2023},
|
||||
booktitle = {IEEE/CVF International Conference on Computer Vision}
|
||||
}
|
||||
|
||||
@inproceedings{lipman2023flow,
|
||||
title = {Flow Matching for Generative Modeling},
|
||||
author = {Lipman, Yaron and Chen, Ricky T. Q. and Ben-Hamu, Heli and Nickel, Maximilian and Le, Matt},
|
||||
year = {2023},
|
||||
booktitle = {International Conference on Learning Representations}
|
||||
}
|
||||
|
||||
@article{liu2022flow,
|
||||
title = {Flow Straight and Fast: Learning to Generate and Transfer Data with Rectified Flow},
|
||||
author = {Liu, Xingchao and Gong, Chengyue and Liu, Qiang},
|
||||
year = {2022},
|
||||
journal = {arXiv preprint arXiv:2209.03003},
|
||||
eprint = {2209.03003},
|
||||
archivePrefix = {arXiv}
|
||||
}
|
||||
|
||||
@article{geng2025mean,
|
||||
title = {Mean Flows for One-step Generative Modeling},
|
||||
author = {Geng, Zhengyang and Deng, Mingyang and Bai, Xingjian and Kolter, J. Zico and He, Kaiming},
|
||||
year = {2025},
|
||||
journal = {arXiv preprint arXiv:2505.13447},
|
||||
eprint = {2505.13447},
|
||||
archivePrefix = {arXiv}
|
||||
}
|
||||
|
||||
@article{geng2025improved,
|
||||
title = {Improved Mean Flows: On the Challenges of Fastforward Generative Models},
|
||||
author = {Geng, Zhengyang and Lu, Yiyang and Wu, Zongze and Shechtman, Eli and Kolter, J. Zico and He, Kaiming},
|
||||
year = {2025},
|
||||
journal = {arXiv preprint arXiv:2512.02012},
|
||||
eprint = {2512.02012},
|
||||
archivePrefix = {arXiv}
|
||||
}
|
||||
|
||||
@article{brohan2022rt,
|
||||
title = {RT-1: Robotics Transformer for Real-World Control at Scale},
|
||||
author = {Brohan, Anthony and Brown, Noah and Carbajal, Justice and Chebotar, Yevgen and Dabis, Joseph and Finn, Chelsea and Gopalakrishnan, Keerthana and Hausman, Karol and Herzog, Alexander and Hsu, Jasmine and others},
|
||||
year = {2022},
|
||||
journal = {arXiv preprint arXiv:2212.06817},
|
||||
eprint = {2212.06817},
|
||||
archivePrefix = {arXiv}
|
||||
}
|
||||
|
||||
@inproceedings{brohan2023rt,
|
||||
title = {RT-2: Vision-Language-Action Models Transfer Web Knowledge to Robotic Control},
|
||||
author = {Brohan, Anthony and Brown, Noah and Carbajal, Justice and Chebotar, Yevgen and Chen, Xi and Choromanski, Krzysztof and Ding, Tianli and Driess, Danny and Dubey, Avinava and Finn, Chelsea and others},
|
||||
year = {2023},
|
||||
booktitle = {Conference on Robot Learning}
|
||||
}
|
||||
|
||||
@article{kim2024openvla,
|
||||
title = {OpenVLA: An Open-Source Vision-Language-Action Model},
|
||||
author = {Kim, Moo Jin and Pertsch, Karl and Karamcheti, Siddharth and Xiao, Ted and Balakrishna, Ashwin and Nair, Suraj and Rafailov, Rafael and Foster, Ethan and Lam, Grace and Sanketi, Pannag and others},
|
||||
year = {2024},
|
||||
journal = {arXiv preprint arXiv:2406.09246},
|
||||
eprint = {2406.09246},
|
||||
archivePrefix = {arXiv}
|
||||
}
|
||||
|
||||
@article{shukor2025smolvla,
|
||||
title = {SmolVLA: A Vision-Language-Action Model for Affordable and Efficient Robotics},
|
||||
author = {Shukor, Mustafa and Aubakirova, Dana and Capuano, Francesco and Kooijmans, Pepijn and Palma, Steven and Zouitine, Adil and Aractingi, Michel and Pascal, Caroline and Russi, Martino and Marafioti, Andres and others},
|
||||
year = {2025},
|
||||
journal = {arXiv preprint arXiv:2506.01844},
|
||||
eprint = {2506.01844},
|
||||
archivePrefix = {arXiv}
|
||||
}
|
||||
|
||||
@article{black2024pi0,
|
||||
title = {{$\pi_0$}: A Vision-Language-Action Flow Model for General Robot Control},
|
||||
author = {Black, Kevin and Brown, Noah and Driess, Danny and Esmail, Adnan and Equi, Michael and Finn, Chelsea and Fusai, Niccolo and Groom, Lachy and Hausman, Karol and Ichter, Brian and others},
|
||||
year = {2024},
|
||||
journal = {arXiv preprint arXiv:2410.24164},
|
||||
eprint = {2410.24164},
|
||||
archivePrefix = {arXiv}
|
||||
}
|
||||
|
||||
@article{pertsch2025fast,
|
||||
title = {FAST: Efficient Action Tokenization for Vision-Language-Action Models},
|
||||
author = {Pertsch, Karl and Stachowicz, Kyle and Ichter, Brian and Driess, Danny and Nair, Suraj and Vuong, Quan and Mees, Oier and Finn, Chelsea and Levine, Sergey},
|
||||
year = {2025},
|
||||
journal = {arXiv preprint arXiv:2501.09747},
|
||||
eprint = {2501.09747},
|
||||
archivePrefix = {arXiv}
|
||||
}
|
||||
|
||||
@article{zhao2023learning,
|
||||
title = {Learning Fine-Grained Bimanual Manipulation with Low-Cost Hardware},
|
||||
author = {Zhao, Tony Z. and Kumar, Vikash and Levine, Sergey and Finn, Chelsea},
|
||||
year = {2023},
|
||||
journal = {arXiv preprint arXiv:2304.13705},
|
||||
eprint = {2304.13705},
|
||||
archivePrefix = {arXiv}
|
||||
}
|
||||
|
||||
@inproceedings{he2016deep,
|
||||
title = {Deep Residual Learning for Image Recognition},
|
||||
author = {He, Kaiming and Zhang, Xiangyu and Ren, Shaoqing and Sun, Jian},
|
||||
year = {2016},
|
||||
booktitle = {IEEE Conference on Computer Vision and Pattern Recognition}
|
||||
}
|
||||
|
||||
@inproceedings{vaswani2017attention,
|
||||
title = {Attention Is All You Need},
|
||||
author = {Vaswani, Ashish and Shazeer, Noam and Parmar, Niki and Uszkoreit, Jakob and Jones, Llion and Gomez, Aidan N. and Kaiser, Lukasz and Polosukhin, Illia},
|
||||
year = {2017},
|
||||
booktitle = {Advances in Neural Information Processing Systems}
|
||||
}
|
||||
|
||||
@article{kimi2026attention,
|
||||
title = {Attention Residuals},
|
||||
author = {{Kimi Team}},
|
||||
year = {2026},
|
||||
journal = {arXiv preprint arXiv:2603.15031},
|
||||
eprint = {2603.15031},
|
||||
archivePrefix = {arXiv}
|
||||
}
|
||||
Reference in New Issue
Block a user