-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
194 lines (179 loc) · 7.66 KB
/
index.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<html>
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>ENGRI 1101 Lab Links</title>
</head>
<style>
figure {
border: 1px white solid;
padding: 1px;
height: 400px;
}
figcaption {
padding: 10px;
text-align: center;
font-size: 25;
line-height: 1.3;
font-family: sans-serif;
color: #8E8D8B;
}
/* Three image containers (use 25% for four, and 50% for two, etc) */
.column {
float: left;
width: 30%;
padding: 5px;
}
/* Clear floats after image containers */
.row::after {
content: "";
clear: both;
display: table;
}
/* unvisited link */
a:link {
color: #8E8D8B;
text-decoration: none;
}
/* visited link */
a:visited {
color: #8E8D8B;
text-decoration: none;
}
/* mouse over link */
a:hover {
color: #DC8578;
text-decoration: none;
}
.container{
text-align: center;
}
.category{
display: inline-block;
width: 33%;
height: 400px;
line-height: 100px;
margin: 0px;
}
img {
vertical-align: middle;
}
</style>
<body class="vsc-initialized">
<div class="container">
<div class="category">
<figure>
<img src="./tsp_source/tsp_cover.png" alt="Travelling Salesman Problem", style="width:400px;height:400px;">
<figcaption><a href = "./tsp_source/tsp.html" >Travelling Salesman Problem</a></figcaption>
</figure>
</div>
<div class="category">
<figure>
<img src="./shortest_path_source/dsp_cover.png" alt="Dijkstra's Shortest Path", style="width:500px;height:250px;">
<figcaption><a href = "./shortest_path_source/dsp.html" >Dijkstra's Shortest Path</a></figcaption>
</figure>
</div>
<div class="category">
<figure>
<img src="./mst_source/mst_cover.png" alt="Minimum Spanning Tree", style="width:450px;height:300px;">
<figcaption><a href = "./mst_source/mst.html" >Minimum Spanning Tree</a></figcaption>
</figure>
</div>
<div class="category">
<figure>
<img src="./tsp_demo_source/radio_telescope_demo_optimal.png" alt="Radio Telescope Demo - Optimal Tour", style="width:480;height:218px;">
<figcaption><a href = "./tsp_demo_source/radio_telescope_demo_optimal.html" >Radio Telescope Demo<br>(Optimal Tour)</a></figcaption>
</figure>
</div>
<div class="category">
<figure>
<img src="./tsp_demo_source/radio_telescope_demo_feasible.png" alt="Radio Telescope Demo - Feasible Telescope Tour", style="width:480;height:218px;">
<figcaption><a href = "./tsp_demo_source/radio_telescope_demo_feasible.html" >Radio Telescope Demo<br>(Feasible Telescope Tour)</a></figcaption>
</figure>
</div>
<div class="category">
<figure>
<img src="./tsp_demo_source/radio_telescope_demo_improved.png" alt="Radio Telescope Demo - Improved Feasible Telescope Tour", style="width:480;height:218px;">
<figcaption><a href = "./tsp_demo_source/radio_telescope_demo_improved.html" >Radio Telescope Demo<br>(Improved Feasible Telescope Tour)</a></figcaption>
</figure>
</div>
<div class="category">
<figure>
<img src="./CAR/CAR_cover.png" alt="CAR: Computer Aided Routing", style="width:400;height:300px;">
<figcaption><a href = "./CAR/public/index.html" >CAR: Computer Aided Routing</a></figcaption>
</figure>
</div>
<div class="category">
<figure>
<img src="./penalty_kick_source/penalty_kick_cover.png" alt="Penalty Kick Game Theory", style="width:300;height:263px;">
<figcaption><a href = "./penalty_kick_source/penalty_kick_game.html" >Penalty Kick Game Theory</a></figcaption>
</figure>
</div>
<div class="category">
<figure>
<img src="./2d_lp_example/2d_lp_example_cover.png" alt="2D LP Example", style="width:500;height:250px;">
<figcaption><a href = "./2d_lp_example/2d_lp_example.html">2D LP Example</a></figcaption>
</figure>
</div>
<div class="category">
<figure>
<img src="./3d_lp_example/3d_lp_example_cover.png" alt="3D LP Example", style="width:500;height:250px;">
<figcaption><a href = "./3d_lp_example/3d_lp_example.html">3D LP Example</a></figcaption>
</figure>
</div>
<div class="category">
<figure>
<img src="./2d_ip_example/2d_ip_cover.png" alt="2D Branch and Bound Example", style="width:500;height:250px;">
<figcaption><a href = "./2d_ip_example/index.html">2D Branch and Bound Example</a></figcaption>
</figure>
</div>
<div class="category">
<figure>
<img src="./cutting_plane_example_hw7/before_cut_cover.png" alt="Cutting Plane Example", style="width:200;height:250px;">
<img src="./cutting_plane_example_hw7/after_cut_cover.png" alt="Cutting Plane Example", style="width:200;height:250px;">
<figcaption><a href = "./cutting_plane_example_hw7/index.html">Cutting Plane Example (HW7)</a></figcaption>
</figure>
</div>
<div class="category">
<figure>
<img src="./cutting_plane_example_hw8/before_cut_cover.png" alt="Cutting Plane Example", style="width:200;height:250px;">
<img src="./cutting_plane_example_hw8/after_cut_cover.png" alt="Cutting Plane Example", style="width:200;height:250px;">
<figcaption><a href = "./cutting_plane_example_hw8/index.html">Cutting Plane Example (HW8)</a></figcaption>
</figure>
</div>
<div class="category">
<figure>
<img src="./cutting_plane_example_hw8'/before_cut_cover.png" alt="Cutting Plane Example", style="width:200;height:250px;">
<img src="./cutting_plane_example_hw8'/after_cut_cover.png" alt="Cutting Plane Example", style="width:200;height:250px;">
<figcaption><a href = "./cutting_plane_example_hw8'/index.html">Cutting Plane Example (HW8')</a></figcaption>
</figure>
</div>
<div class="category">
<figure>
<img src="./branch_and_bound_ex/tree_5.png" alt="Branch and Bound Example", style="width:550;height:275px;">
<figcaption><a href = "./branch_and_bound_ex/index.html">Branch and Bound Example</a></figcaption>
</figure>
</div>
</div>
<!--
<div class="row">
<div class="column">
<figure>
<img src="tsp_cover.png" alt="Italian Trulli", style="width:400px;height:400px;">
<figcaption><a href = "./tsp_lab/tsp.html" >Travelling Salesman Problem</a></figcaption>
</figure>
</div>
<div class="column">
<figure>
<img src="dsp_cover.png" alt="Italian Trulli", style="width:500px;height:250px;">
<figcaption><a href = "./dijkstra_shortest_path_lab/dsp.html" >Dijkstra's Shortest Path</a></figcaption>
</figure>
</div>
<div class="column">
<figure>
<img src="mst_cover.png" alt="Italian Trulli", style="width:450px;height:300px;">
<figcaption><a href = "./min_spanning_tree_lab/mst.html" >Minimum Spanning Tree</a></figcaption>
</figure>
</div>
-->
<div id="canvas_container"></div>
</body>
</html>