-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.html
More file actions
128 lines (110 loc) · 5.63 KB
/
test.html
File metadata and controls
128 lines (110 loc) · 5.63 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>jsprit | java toolkit for rich VRPs and TSPs</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="jsprit is a java based, open source toolkit for solving rich traveling salesman (TSP) and vehicle routing problems (VRP)">
<meta name="keywords" content="vrp, tsp, vehicle routing, vehicle routing algorithm, open source, optimization"/>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="Stefan Schröder">
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/jumbotron-narrow.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link href="css/carousel.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o), m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js',
'ga');
ga('create', 'UA-41587266-1', 'jsprit.github.io');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="container">
<div class="header">
<ul class="nav nav-pills">
<li><a href="index.html"><span class="glyphicon glyphicon-home"></span> Home</a></li>
<li><a href="references.html"> References</a></li>
<li><a href="contact.html"><i class="fa fa-envelope"></i> Contact</a></li>
<li class="active"><a href="about.html"><span class="glyphicon glyphicon-user"></span> About</a></li>
<li><a href="https://github.com/jsprit/jsprit"><i class="fa fa-github"></i> View on GitHub</a></li>
</ul>
<!--<div class="container-fluid">-->
<!--<a class="brand" href="index.html"> <img height="30" width="30" src="img/tsp_new.png"> jsprit</a>-->
<!--</div>-->
<!--<h3 class="text-muted"><span class="glyphicon glyphicon-home"></span>jsprit</h3>-->
</div>
<div class="page-header">
<h1>About</h1>
</div>
<p>
The jsprit-project has been created and is maintained by Stefan Schröder.
</p>
<p></p>
1
<div id="myCarousel" class="carousel slide" data-ride="carousel" data-interval="false">
<!--<div id="myCarousel" class="carousel slide" data-ride="carousel">-->
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<!--<img src="img/tsp_new.png" alt="First slide">-->
<div class="container">
<div class="carousel-caption">
<iframe src="//player.vimeo.com/video/112062207?byline=0&portrait=0&color=ff9933" width="600" height="400" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>
</div>
<div class="item">
<!--<img src="img/tsp_new.png" alt="Second slide">-->
<div class="container">
<div class="carousel-caption">
<iframe src="//player.vimeo.com/video/112062207?byline=0&portrait=0&color=ff9933" width="600" height="400" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>
</div>
<div class="item">
<!--<img src="img/tsp_new.png" alt="Third slide">-->
<div class="container">
<div class="carousel-caption">
<iframe src="//player.vimeo.com/video/112062207?byline=0&portrait=0&color=ff9933" width="600" height="400" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div><!-- /.carousel -->
<div class="footer">
<p>© jsprit 2014</p>
</div>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
</body>
</html>