Skip to content

Commit

Permalink
Table shows if a generator passed all verifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
ounsworth authored Jul 22, 2024
1 parent 6be9400 commit 4a3e1d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pqc_report_writer_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def main():


md_file.new_header(level=1, title=f'Algorithms Submitted')
md_file.new_paragraph(text="✅ = passing on all verifiers\n◒ = passing on some verifiers\n = not passing any verifiers")
md_file.new_paragraph(text="✅ = passing all verifiers<br>◒ = passing some verifiers<br>⚪︎ = not passing any verifiers")
_submittedAlgsList.sort()

submittedAlgsCells = ['-'] + generators
Expand All @@ -245,7 +245,7 @@ def main():
if (no == -1):
submittedAlgsCells.append('')
elif (no == 0):
submittedAlgsCells.append('')
submittedAlgsCells.append('⚪︎')
elif (no == 1):
submittedAlgsCells.append('◒')
else:
Expand Down

0 comments on commit 4a3e1d9

Please sign in to comment.