<p>Moe lives in the following directory structure:
<ul>
-<li><code>bin/</code> – all programs (usually shell scripts)
-<li><code>box/</code> – temporary files used by the sandbox module
-<li><code>doc</code> – this documentation
-<li><code>examples</code> – example problems
-<li><code>misc</code> – various currently undocumented stuff
-<li><code>problems/</code> – definitions of problems (tasks)
-<li><code>public</code> – data available publicly to the contestants
-<li><code>solutions</code> – solutions of problems (both by contestants and authors)
-<li><code>src</code> – source of parts of the evaluator written in C
-<li><code>template</code> – templates of contestants' home directories
-<li><code>testing</code> – results of testing of solutions
-<li><code>tmp</code> – various temporary files
-<li><code>Makefile</code> – as usually
-<li><code>config</code> – the main configuration file
+<li><code>box/</code> – the sandbox module
+<li><code>build/</code> – scripts used for compilatuon
+<li><code>doc/</code> – this documentation
+<li><code>eval/</code> – the evaluator (grader)
+<li><code>examples/</code> – example problems
+<li><code>judge/</code> – judging helpers
+<li><code>maint/</code> – scripts used by Moe's maintainers
+<li><code>mop/</code> – various stuff for the MO-P contest
+<li><code>sherlock/</code> – libsherlock, used by the submit server
+<li><code>submit/</code> – the submit server
+<li><code>ucw/</code> – libucw, used by the submit server
+<li><code>utils/</code> – various utilities
</ul>
<p>When installed, it will create the following hierarchy:
<li><code>users</code> – home directories of the contestants
</ul>
-<p>We have tried to make the whole system as flexible as possible, which has lead to writing
-almost everything as simple shell scripts, building on a library of shell functions contained
-in <code>bin/lib</code>. The config files are also shell scripts, making it possible to do lots
-of fancy (and also confusing, to be honest :) ) things there, the most useful being variable
-substitutions.
-
</body></html>