diff options
| author | mithe24 <mithe24@student.sdu.dk> | 2025-10-29 08:21:52 +0100 |
|---|---|---|
| committer | mithe24 <mithe24@student.sdu.dk> | 2025-10-29 13:49:57 +0100 |
| commit | 0bf10fbb9dd5c26b605321014324a47549cb7b4c (patch) | |
| tree | d020606f28a1647543712c33c64be5a12c51b159 | |
| parent | 4f32bac5784b7f4676115e07693d64139080c287 (diff) | |
| download | sorter-0bf10fbb9dd5c26b605321014324a47549cb7b4c.tar.gz sorter-0bf10fbb9dd5c26b605321014324a47549cb7b4c.zip | |
report(Evaluation) replaced 'builtin function sort'
builtin function sounds like you're referring to builtin shell commands
like 'cd'. Sort is a program provided by Linux GNU Core Utilities
Diffstat (limited to '')
| -rw-r--r-- | report/report.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/report/report.tex b/report/report.tex index 83eee63..0a36f9a 100644 --- a/report/report.tex +++ b/report/report.tex @@ -270,7 +270,7 @@ one where it is reversely sorted. This way we can see both the average case, and worst case of any algorithm we decide to use. Now we can use our \textit{test.sh} script, which runs the program with each of the generated test files for all sorting algorithms of the program, and compares the output with -the output from the \textit{builtin} function \textit{sort}. +the output from the GNU Core Utilities program \textit{sort}. Given all of the tests pass, we can then run \textit{benchmark.sh}, which times how long it takes for our program to run with each test file for each algorithm, |