aboutsummaryrefslogtreecommitdiff
path: root/thesis/parts/conclusion.tex
diff options
context:
space:
mode:
authorAria Shrimpton <me@aria.rip>2024-03-29 22:22:28 +0000
committerAria Shrimpton <me@aria.rip>2024-03-29 22:22:28 +0000
commite091c37926281dbd5bf58b249d2d8d1b370897f2 (patch)
treeeed9e8ce82e59aa7b414d4bafd8845c78ffbf0bf /thesis/parts/conclusion.tex
parent7924e466d32cf93b7e455d1360bc22fa86340100 (diff)
introduction, conclusion, and minor cleanup
Diffstat (limited to 'thesis/parts/conclusion.tex')
-rw-r--r--thesis/parts/conclusion.tex16
1 files changed, 15 insertions, 1 deletions
diff --git a/thesis/parts/conclusion.tex b/thesis/parts/conclusion.tex
index a00234d..e018efa 100644
--- a/thesis/parts/conclusion.tex
+++ b/thesis/parts/conclusion.tex
@@ -1 +1,15 @@
-\todo{Summarise, etc.}
+%% Presented a system accounting for functional and non-functional requirements
+We have presented an integrated system for container implementation selection, which can take into account the functional and non-functional requirements of the program it is working on.
+
+%% Ease of extending / flexibility
+Our system is extremely flexible, and can be easily extended with new container types and new functionality on those types, as we showed by adding associative collections and several new data types.
+
+%% Demonstrated predictive power of profiling and benchmarking, although limited testing
+We demonstrated that benchmarking of container implementations and profiling of target applications can be done separately and then combined to suggest the fastest container implementation for a particular program.
+We prove that this approach has merit, although our testing had notable limitations that future work should improve on.
+We also found that while linear regression is powerful enough for many cases, more research is required on how best to gather and preprocess data in order to best capture an implementation's performance characteristics.
+
+%% Researched feasibility of adaptive containers, found issues with overhead and threshold detection
+We test the effectiveness of switching container implementation as the n value changes, and in doing so find several important factors to consider.
+%% Future work should focus on minimising overhead and finding the ideal threshold
+Future work should focus on minimising the overhead applied to every operation, as well as finding the correct threshold at which to switch implementation.