Skip to content

Commit 77a0d14

Browse files
committed
doc(README): Use of yellow and orange cards
1 parent a1cc212 commit 77a0d14

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,16 +154,16 @@ These are the results from running all entries into the challenge on my personal
154154

155155
| # | Result (m:s.ms) | Compiler | Submitter | Notes | Certificates |
156156
|--:|----------------:|---------:|:----------|:------|:-------------|
157-
| 1 | 0:1.697 | lazarus-3.99, fpc-3.3.1 | O Coddo | Using `SCL`, 32 threads | |
158157
| 2 | 0:1.784 | lazarus-3.0, fpc-3.2.2 | Arnaud Bouchez | Using `mORMot2`, 32 threads | |
159158
| 3 | 0:9.817 | lazarus-3.99, fpc-3.3.1 | G Klark | Using 32 threads | |
160159
| 4 | 0:21.463 | lazarus-3.0, fpc-3.2.2 | Székely Balázs | Using 32 threads | |
161160
| 5 | 1:13.492 | lazarus-3.0, fpc-3.2.2 | Hartmut Grosser | Using 1 threads | |
162161
| 6 | 1:16.844 | lazarus-3.0, fpc-3.2.2 | Richard Lawson | Using 1 thread | |
163162
| 7 | 3:59.917 | lazarus-3.0, fpc-3.2.2 | Iwan Kelaiah | Using 1 thread | |
164163
| 8 | 7:2.726 | delphi 12.1 | David Cornelius | Using 1 threads | |
165-
| 9 | 7:9.974 | delphi 12.1 | Brian Fire | Using 1 threads | |
166-
| - | 0:19.699 | lazarus-3.0, fpc-3.2.2 | Lurendrejer Aksen | Using 32 threads **(failed hash)** | |
164+
| 9 | 7:9.974 | delphi 12.1 | Brian Fire | Using 1 threads | |
165+
| 🟨 | 0:1.697 | lazarus-3.99, fpc-3.3.1 | O Coddo | Yellow Card: use of `C/C++` libs | |
166+
| 🟠 | 0:19.699 | lazarus-3.0, fpc-3.2.2 | Lurendrejer Aksen | Using 32 threads **(failed hash)** | |
167167

168168
> **NOTE**
169169
>

utilities/results_generator/Common/resultsgenerator.common.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ procedure TResults.Generate;
194194
content:= '';
195195
for index:= 0 to FList.Count - 1 do
196196
begin
197-
if not FList[index].GoodHash then FList[index].Notes:= FList[index].Notes + ' (**failed hash)**';
197+
if not FList[index].GoodHash then FList[index].Notes:= FList[index].Notes + ' **(failed hash)**';
198198
content:= content + Format('| %d | %s | %s | %s | %s | |'+LineEnding, [
199199
index + 1,
200200
FormatTime(FList[index].Result),

0 commit comments

Comments
 (0)