Skip to content

Commit

Permalink
Switch to author version
Browse files Browse the repository at this point in the history
  • Loading branch information
snowleopard committed Jul 25, 2017
1 parent 2f4a0ce commit 968daf9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
10 changes: 6 additions & 4 deletions alga.tex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
\documentclass[sigplan,screen,9pt]{acmart}
% \documentclass[sigplan,screen,9pt]{acmart}
\documentclass[sigplan,screen,authorversion,9pt]{acmart}
\usepackage{booktabs}
\usepackage{subcaption}

Expand Down Expand Up @@ -38,7 +39,7 @@
}

\begin{abstract}
\vspace{-0.5mm}
% \vspace{-0.5mm}
The paper presents a minimalistic and elegant approach to working
with graphs in Haskell. It is built on a rigorous
mathematical foundation --- an algebra of graphs --- that allows us to apply
Expand All @@ -52,7 +53,7 @@
and transitive graphs, as well as hypergraphs, by appropriately choosing
the set of underlying axioms. The flexibility of the approach is
demonstrated by developing a library for constructing
and transforming polymorphic graphs.\vspace{-1mm}
and transforming polymorphic graphs.%\vspace{-1mm}
\end{abstract}

%% 2012 ACM Computing Classification System (CSS) concepts
Expand All @@ -68,7 +69,8 @@
\end{CCSXML}

\ccsdesc[500]{Mathematics of computing}
\keywords{\vspace{-2mm}Haskell, algebra, graph theory}
% \keywords{\vspace{-2mm}Haskell, algebra, graph theory}
\keywords{Haskell, algebra, graph theory}

\maketitle

Expand Down
6 changes: 3 additions & 3 deletions intro.tex
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ \section{Introduction}\label{sec-intro}
Algebraic graphs have a safe and minimalistic core of four graph construction primitives,
as captured by the following data type:

\vspace{-0.59mm}
% \vspace{-0.59mm}
\begin{minted}{haskell}
data Graph a = Empty
| Vertex a
| Overlay (Graph a) (Graph a)
| Connect (Graph a) (Graph a)
\end{minted}
\vspace{-0.59mm}
% \vspace{-0.59mm}

\noindent
Here \hs{Empty} and \hs{Vertex} construct the \emph{empty} and \emph{single-vertex} graphs,
Expand Down Expand Up @@ -102,7 +102,7 @@ \section{Introduction}\label{sec-intro}
% with graphs comprising billions of edges in the matter of
% seconds, which is sufficiently fast for many applications.
\end{itemize}
\vspace{-2mm}
% \vspace{-2mm}

\begin{figure*}
\begin{subfigure}[b]{0.2\linewidth}
Expand Down

0 comments on commit 968daf9

Please sign in to comment.