forked from kameshb96/Max-Flow-Vis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·36 lines (34 loc) · 1.84 KB
/
index.html
File metadata and controls
executable file
·36 lines (34 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Cytoscape</title>
<!-- A minified UMD build with all dependencies included in the bundle. This file is useful for small pages, supplementary material for an academic paper for example. -->
<!-- sweet alert -->
<!-- https://sweetalert2.github.io/#examples -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>
<script src="js/cytoscape/cytoscape.min.js"></script>
<script src="js/Classes.js"></script>
<script src="js/test.js"></script>
<script src="js/visualization.js"></script>
<script src="js/algorithm.js"></script>
<script src="js/networkData.js"></script>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<div class = "workspace">
<div id="cy1"></div>
<div id="cy2"></div>
<h3 id="finalStateMessage" style = "visibility: hidden; position: absolute; left: 50%; top: 5%;">Final Residual Network. No more augmenting paths.</h3>
<button onclick="finalizeGraph()" class="finalizestyle">Finalize Graph</button>
<button onclick="resetGraph()" class="resetstyle">Clear Graph</button>
<button onclick="displayInstructions()" class="instructionsStyle">Instructions</button>
<div class="cy2buttons">
<button id="algoStateButton" onclick="nextStep()" class="nextstepstyle">Show Aug Path</button>
<button id="finalStepButton" onclick="finalState()" class="finalstepstyle">Final State</button>
</div>
</div>
</body>
</html>