-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a help screen that is displayed instead of the Graph if the "help" button is pressed. It explains the idea of the tool and links to paper and GitHub.
- Loading branch information
Showing
3 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import styles from './style.module.css' | ||
|
||
const InfoScreen: React.FC = () => { | ||
return ( | ||
<div className={styles.canvas + " " + styles.infoCanvas}> | ||
<h1>MQT QUBOMaker: Pathfinder</h1> | ||
<p>This web app is a supporting GUI for the MQT QUBOMaker framework. It allows users to define pathfinding problems using a set of constraints that can be converted into a QUBO formulation by the framework.</p> | ||
<p>Further details are given in the following paper: D. Rovara, N. Quetschlich, and R. Wille <a href="">"A Framework to Formulate Pathfinding Problems for Quantum Computing"</a>, arXiv, 2024</p> | ||
<p>The corresponding code can be found in the framework's <a href="">GitHub repository</a>.</p> | ||
<p>MQT QUBOMaker is part of the <a href="https://mqt.readthedocs.io/">Munich Quantum Toolkit</a> (MQT) developed by the <a href="https://www.cda.cit.tum.de/">Chair for Design Automation</a> at the <a href="https://www.tum.de/">Technical University of Munich</a>.</p> | ||
</div> | ||
); | ||
} | ||
|
||
export default InfoScreen; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters