Skip to content

Commit

Permalink
add errata
Browse files Browse the repository at this point in the history
  • Loading branch information
Kei18 committed Mar 19, 2024
1 parent 9f34035 commit 1a18df7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
4 changes: 4 additions & 0 deletions data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ demoDescription: |
slides: https://speakerdeck.com/player/7eff96d075984b7dbb75d249d9bc67fa

errata:
- |
Figure 1: The colors of the two agents in the last column at "low-level" and configuration generator" need to be swapped.
citation: |-
@inproceedings{okumura2023lacam,
title={LaCAM: Search-Based Algorithm for Quick Multi-Agent Pathfinding},
Expand Down
14 changes: 14 additions & 0 deletions src/ts/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,20 @@ const App: React.SFC<{}> = () => {
""
)}

{data.errata ? (
<div className="mx-auto mt-5">
<p className="h5">Errata</p>
<ul>
{data.errata.map((item, i) => (
<li key={i}>{item}</li>
))}
</ul>
</div>
) : (
""
)}


{data.citation ? (
<div className="mx-auto mt-5">
<p className="h5">Citation</p>
Expand Down

0 comments on commit 1a18df7

Please sign in to comment.