-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate database implementation from benchmarks
- Loading branch information
Showing
4 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
\chapter{Benchmark} | ||
This chapter will outline the results of and corresponding design decisions | ||
of an implementation of the algorithms outlined in | ||
\cite{RelationalAlgebraByWayOfAdjunctions}. | ||
\input{project/benchmark/implementation} | ||
This chapter will outline the design decisions and results in benchmarking | ||
the database outlined in \fref{chap:database}. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
\chapter{Database implementation}\label{chap:database} | ||
This chapter will outline the results of and corresponding design decisions | ||
of an implementation of the algorithms outlined in | ||
\cite{RelationalAlgebraByWayOfAdjunctions}. | ||
\input{project/database/implementation} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
\begin{comment} | ||
The central part of the report usually consists of three or four chapters detailing the technical work undertaken during the project. The structure of these chapters is highly project dependent. They can reflect the chronological development of the project, e.g. requirements, design, implementation, experimentation, optimisation, evaluation etc. although this is not always the best approach. However you choose to structure this part of the report, you should make it clear how you arrived at your chosen approach in preference to the other alternatives documented in the background. If you have built a new piece of software you should describe and justify your design and details any interesting problems with, or features of, your implementation. Integration and testing are also important to discuss in some cases. You need to discuss the content of these sections thoroughly with your supervisor. | ||
\end{comment} | ||
\input{project/database/database} | ||
\input{project/benchmark/benchmark} |