diff options
-rw-r--r-- | report/bib/combox.bib | 9 | ||||
-rw-r--r-- | report/chapters/4-arch-d.tex | 35 | ||||
-rw-r--r-- | report/combox-report.pdf | bin | 209114 -> 234874 bytes | |||
-rw-r--r-- | report/combox.tex | 8 |
4 files changed, 51 insertions, 1 deletions
diff --git a/report/bib/combox.bib b/report/bib/combox.bib index df95d14..0d5dce8 100644 --- a/report/bib/combox.bib +++ b/report/bib/combox.bib @@ -1,3 +1,12 @@ +%4 +@book{sicp, +author = "Harold Abelson and Gerald Jay Sussman and Julie Sussman", +title = "Structure and Interpretation of Computer Programs", +edition = "Second", +publisher = "MIT Press", +year = "1996", +} + % 5 @techreport{dijkstra69, diff --git a/report/chapters/4-arch-d.tex b/report/chapters/4-arch-d.tex new file mode 100644 index 0000000..3a81f12 --- /dev/null +++ b/report/chapters/4-arch-d.tex @@ -0,0 +1,35 @@ +\chapter{Structure and Design} + +\epigraph{In general, when modeling phenomena in science and + engineering, we begin with simplified, incomplete models. As we + examine things in greater detail, these simple models become + inadequate and must be replaced by more refined + models.}{\textit{Structure and Interpretation of Computer Programs, + Section 1.1.5}\cite{sicp}} + +\section{Structure of combox} + + +\begin{figure}[h] +\includegraphics[scale=0.6]{4-combox-structure} +\caption{High level view of combox on two computers.} +\label{fig:4-combox-structure} +\end{figure} + +\subsection{combox configuration} + +\subsection{combox directory monitor} + +\subsection{Node directory monitor} + +\subsection{Database structure} + +\section{combox modules overview} + +\section{Language choice and DRY} + +\section{Operating system compatibility} + +\section{combox as a python package} + +\section{With the benefit of hindsight}
\ No newline at end of file diff --git a/report/combox-report.pdf b/report/combox-report.pdf Binary files differindex f065a89..3644184 100644 --- a/report/combox-report.pdf +++ b/report/combox-report.pdf diff --git a/report/combox.tex b/report/combox.tex index 649b8f4..a90396a 100644 --- a/report/combox.tex +++ b/report/combox.tex @@ -3,6 +3,11 @@ \usepackage{hyperref}
\usepackage{epigraph}
+\usepackage[dvips]{graphicx}
+\graphicspath{{images/}}
+\DeclareGraphicsExtensions{.eps}
+
+
\begin{document} %---> %---> %---> %---> DO NOT ALTER THIS COMMAND
%--------+----------------------------------------------------------+
@@ -351,7 +356,8 @@ \chapter{Literature Review}
%% 4
-\chapter{Architecture and Design}
+\include{chapters/4-arch-d}
+
%% 5
\include{chapters/5-testing}
|