paper-BagRelationalPDBsAreHard/main.tex

152 lines
4.2 KiB
TeX
Raw Normal View History

2021-03-06 20:34:18 -05:00
\documentclass[a4paper]{lipics-v2021}
2019-05-14 13:46:35 -04:00
2021-06-30 11:12:47 -04:00
%cell spacing for figure with circuit representation in table; currently did not work
%\usepackage{cellspace}
%\setlength\cellspacetoplimit{50pt}
%\setlength\cellspacebottomlimit{50pt}
\usepackage{caption}%caption for table
\usepackage{booktabs}
\usepackage{bm}%for math mode bold font
\usepackage{relsize}%\mathlarger
2021-06-30 11:12:47 -04:00
\usepackage{algpseudocode}
\usepackage{algorithm}
\usepackage{tikz}
2020-09-11 21:48:28 -04:00
\usepackage{tikz-qtree}
2019-07-15 15:37:20 -04:00
2019-05-14 13:46:35 -04:00
\usepackage{comment}
\usepackage{amsmath}
2021-03-06 20:34:18 -05:00
2020-04-17 14:12:31 -04:00
2020-04-16 10:39:52 -04:00
\let\endproof\relax
2019-05-14 13:46:35 -04:00
\usepackage{amsthm}
\usepackage{mathtools}
\usepackage{etoolbox}
2019-06-07 15:38:01 -04:00
\usepackage{xstring} %for conditionals in \newcommand
2019-05-14 13:46:35 -04:00
\usepackage{stmaryrd}
\usepackage[normalem]{ulem}
\usepackage{subcaption}
\usepackage{booktabs}
2021-06-11 11:22:58 -04:00
\usepackage{todonotes}
2019-05-14 13:46:35 -04:00
\usepackage{graphicx}
\usepackage{listings}
%%%%%%%%%% SQL + proveannce listing settings
\lstdefinestyle{psql}
{
tabsize=2,
basicstyle=\small\upshape\ttfamily,
language=SQL,
morekeywords={PROVENANCE,BASERELATION,INFLUENCE,COPY,ON,TRANSPROV,TRANSSQL,TRANSXML,CONTRIBUTION,COMPLETE,TRANSITIVE,NONTRANSITIVE,EXPLAIN,SQLTEXT,GRAPH,IS,ANNOT,THIS,XSLT,MAPPROV,cxpath,OF,TRANSACTION,SERIALIZABLE,COMMITTED,INSERT,INTO,WITH,SCN,UPDATED,LENS,SCHEMA_MATCHING,string,WINDOW,max,OVER,PARTITION,FIRST_VALUE,WITH},
extendedchars=false,
keywordstyle=\bfseries,
mathescape=true,
escapechar=@,
sensitive=true
}
\lstset{style=psql}
%%%%%%%%%%%%%%%%%%BORROWED FROM UADB paper^-----
2019-05-14 13:46:35 -04:00
\usepackage{fancyvrb}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{braket}
\usepackage[inline]{enumitem}
\usepackage{xspace}
\usepackage{hyperref}
\usepackage{url}
\usepackage{cleveref}
\usepackage{color}
2019-05-14 13:46:35 -04:00
\graphicspath{ {figures/} }
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{outlines}%For outline capabilities as we map out a new Introduction
\usepackage{enumitem}%used in tandem with outlines package
2019-05-14 13:46:35 -04:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2021-03-06 20:34:18 -05:00
\input{macros}
2019-05-14 13:46:35 -04:00
2021-04-10 09:40:43 -04:00
% reference names
\crefname{example}{ex.}{ex.}
\Crefname{example}{Ex.}{Ex.}
\Crefname{figure}{Fig.}{Fig.}
\Crefname{section}{Sec.}{Sec.}
\Crefname{definition}{Def.}{Def.}
\Crefname{theorem}{Thm.}{Thm.}
\Crefname{lemma}{Lem.}{Lem.}
\crefname{equation}{eq.}{eq.}
\Crefname{equation}{Eq.}{Eq.}
2021-03-06 20:34:18 -05:00
%%%%%%%%%%%%%%%%%%%%
2019-05-14 13:46:35 -04:00
2021-04-09 00:07:33 -04:00
\title{Standard Operating Procedure in Bag PDB Queries Considered Harmful}
2021-03-06 20:34:18 -05:00
\titlerunning{Bag PDB Queries}
2019-05-14 13:46:35 -04:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2021-03-06 20:34:18 -05:00
\author{Su Feng}{Illinois Institute of Technology, Chicago, USA}{sfeng14@hawk.iit.edu}{}{}{}
2021-03-31 23:02:13 -04:00
\author{Boris Glavic}{Illinois Institute of Technology, USA}{bglavic@iit.edu}{}{}{}
2021-03-06 20:34:18 -05:00
\author{Aaron Huber}{University at Buffalo, USA}{ahuber@buffalo.edu}{}{}{}
\author{Oliver Kennedy}{University at Buffalo, USA}{okennedy@buffalo.edu}{}{}{}
\author{Atri Rudra}{University at Buffalo, USA}{atri@buffalo.edu}{}{}{}
\authorrunning{S. Feng, B. Glavic, A. Huber, O. Kennedy, A. Rudra}
\Copyright{Aaron Huber, Oliver Kennedy, Atri Rudra, Su Feng, Boris Glavic}
\ccsdesc{Information systems~Incomplete data}
2021-03-06 20:34:18 -05:00
\keywords{PDB, bags, polynomial, boolean formula, etc.}
%\acknowledgements{We thank Virginia Williams for showing us \Cref{eq:3p-3tri}, which greatly simplified our earlier proof of Lemma 3.8, and for graciously allowing us to use it.}
2021-03-06 20:34:18 -05:00
\EventEditors{John Q. Open and Joan R. Access}
\EventNoEds{2}
\EventLongTitle{42nd Conference on Very Important Topics (CVIT 2016)}
\EventShortTitle{CVIT 2016}
\EventAcronym{CVIT}
\EventYear{2016}
\EventDate{December 24--27, 2016}
\EventLocation{Little Whinging, United Kingdom}
\EventLogo{}
\SeriesVolume{42}
\ArticleNo{23}
2019-05-14 13:46:35 -04:00
2019-05-14 13:46:35 -04:00
\begin{document}
\lstset{language=sql}
\maketitle
2021-03-06 20:34:18 -05:00
\input{abstract}
\input{intro-rewrite-070921}
2021-06-25 10:38:59 -04:00
\input{intro-rewrite2}%ICDT 2nd Round submission
%\input{outline-intro-new}
2021-06-25 10:38:59 -04:00
%\input{intro-new}%ICDT 1st Round submission
% \input{intro}--PODS submission
\input{ra-to-poly}
\input{poly-form}
\input{prob-def}
2020-12-04 13:14:12 -05:00
\input{mult_distinct_p}
\input{single_p}
\input{approx_alg}
2020-12-14 23:21:03 -05:00
\input{circuits-model-runtime}
2020-12-11 20:29:15 -05:00
\input{related-work}
\input{conclusions}
2019-05-14 13:46:35 -04:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2021-03-06 20:34:18 -05:00
\bibliographystyle{plainurl}
2020-12-19 01:19:27 -05:00
\bibliography{main}
\input{acknowledgements}
2019-05-14 13:46:35 -04:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% APPENDIX
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2020-12-13 21:53:22 -05:00
\clearpage
\appendix
\normalsize
2021-04-06 11:43:34 -04:00
\input{appendix}
2020-12-19 09:32:58 -05:00
\input{related-work-extra}
2019-05-14 13:46:35 -04:00
\end{document}