-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
75 lines (57 loc) · 3.34 KB
/
about.html
File metadata and controls
75 lines (57 loc) · 3.34 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
<!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">
</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>
It is motivated by two issues.
<p>
First, you can find vehicle routing problems <strong>everywhere</strong> in the world of distributing and moving things and people.
This probably explains why there is an almost endless list of papers and algorithms to tackle these problems.
However there are only <a href="https://github.com/jsprit/jsprit/wiki/Other-Projects">very few open source implementations</a>
and even fewer projects that can deal with real world problems that usually have many side-constraints.
<p>Second, it is motivated by my PhD-project at <a href="http://www.kit.edu/english/index.php">KIT</a> where I apply vehicle routing algorithms to model behaviour of freight agents to assess (freight) transport policy measures.
<p>It is mainly inspired by my research group at <a href="http://netze.econ.kit.edu/21.php">KIT-ECON</a>, and a great open-source project called
<a href="http://www.matsim.org">MATSim</a> and its developers.
<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>