Skip to content

Commit

Permalink
Publish results (#124)
Browse files Browse the repository at this point in the history
* Fix unsat core pretty name.

* Remove TODO.

* Publish results.

* Remove sorting in competition wide scores.
  • Loading branch information
martinjonas authored Jul 22, 2024
1 parent 27ae0ec commit dd9d55b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion web/data/pretty_names.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"track": {
"track_single_query": "Single Query Track",
"track_incremental": "Incremental Track",
"track_unsatcore": "Unsat Core Track",
"track_unsat_core": "Unsat Core Track",
"track_model_validation": "Model Validation Track",
"track_cloud": "Cloud Track",
"track_parallel": "Parallel Track",
Expand Down
8 changes: 4 additions & 4 deletions web/hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ theme = 'smtcomp'
pageRef = 'previous'
weight = 30

# [[menu.year]]
# name = 'Results'
# pageRef = 'results'
# weight = 10
[[menu.year]]
name = 'Results'
pageRef = 'results'
weight = 10

[[menu.year]]
name = 'Rules'
Expand Down
2 changes: 1 addition & 1 deletion web/themes/smtcomp/layouts/_default/result.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ <h3>{{ index $category_names $cat }} Performance</h3>
{{ range $solver := . }}
<tr {{ if eq $solver.competing "no" }}class = "non-competing" {{ end }}>
<td>
<a href="TODO">{{ $solver.name }}</a>{{ if eq $solver.competing "no" }}<sup><a href="#nc">n</a></sup>{{ end }}
{{ $solver.name }} {{ if eq $solver.competing "no" }}<sup><a href="#nc">n</a></sup>{{ end }}
</td>
<td class="right">{{ $solver.errorScore }}
{{ if $solver.errorFootnote }}
Expand Down
2 changes: 1 addition & 1 deletion web/themes/smtcomp/layouts/_default/result_comp.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ <h3>{{ index $category_names $cat }}</h3>
<th class="center">Time Score</th>
</tr>
</thead>
{{ range $solver := (sort . "division" "asc") }}
{{ range $solver := . }}
<tr {{ if eq $solver.competing "no" }}class = "non-competing" {{ end }}>
<td><a href="../{{ $solver.division | lower }}-{{ replace ($.Params.track | strings.TrimPrefix "track_") "_" "-" }}">{{ $solver.division }}</a></td>
<td>
Expand Down

0 comments on commit dd9d55b

Please sign in to comment.