You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jsprit is a java based, open source toolkit for solving rich <ahref="http://en.wikipedia.org/wiki/Travelling_salesman_problem"target="_blank">traveling salesman</a> (TSP) and <ahref="http://neo.lcc.uma.es/vrp/vehicle-routing-problem/"target="_blank">vehicle routing problems</a> (VRP).
6
-
It is lightweight, flexible and easy-to-use, and based on a single all-purpose <ahref="https://github.com/jsprit/jsprit/wiki/Meta-Heuristic"target="_blank">meta-heuristic</a> currently solving
5
+
jsprit is a java based, open source toolkit for solving rich [Traveling Salesman Problems(TSP)](http://en.wikipedia.org/wiki/Travelling_salesman_problem") and [Vehicle Routing Problems(VRP)](http://neo.lcc.uma.es/vrp/vehicle-routing-problem/).
6
+
It is lightweight, flexible and easy-to-use, and based on a single all-purpose [meta-heuristic](../docs/Meta-Heuristic.md) currently solving
7
7
- Capacitated VRP
8
8
- Multiple Depot VRP
9
9
- VRP with Time Windows
@@ -16,10 +16,10 @@ It is lightweight, flexible and easy-to-use, and based on a single all-purpose <
16
16
- Various combination of these types
17
17
18
18
Setting up the problem, defining additional constraints, modifying the algorithms and visualising the discovered solutions is as easy and handy as
19
-
reading classical VRP instances to benchmark your algorithm. It is fit for change and extension due to a modular design and a comprehensive set of unit and integration-tests. [More features ...](https://github.com/jsprit/jsprit/wiki/features)
19
+
reading classical VRP instances to benchmark your algorithm. It is fit for change and extension due to a modular design and a comprehensive set of unit and integration-tests. [More features ...](../docs/Features.textile)
20
20
21
-
## Getting Started and Documentation
22
-
Please visit [docs](https://github.com/graphhopper/jsprit/blob/master/docs/Home.md) to learn more. For older versions (<v1.7) use [old-docs](https://github.com/graphhopper/jsprit/blob/%3C1.7/docs/Home.md). The best way to get to know jsprit is by looking at [code examples](https://github.com/graphhopper/jsprit/tree/master/jsprit-examples/src/main/java/com/graphhopper/jsprit/examples).
21
+
## Getting Started with Documentation
22
+
Please visit [docs](https://github.com/graphhopper/jsprit/blob/master/docs/Home.md) to learn more.The best way to get to know jsprit is by looking at [code examples](https://github.com/graphhopper/jsprit/tree/master/jsprit-examples/src/main/java/com/graphhopper/jsprit/examples).
23
23
24
24
## Modules and Dependencies
25
25
Please read [Notice.md](https://github.com/graphhopper/jsprit/blob/master/NOTICE.md) to get to know the direct dependencies of each module.
@@ -42,7 +42,7 @@ Developing this would be much more difficult without the help of [these companie
42
42
## Contact
43
43
44
44
#### Mailing List:
45
-
In the [mailing list](https://discuss.graphhopper.com/) ([old mailing list](https://groups.google.com/group/jsprit-mailing-list)) you can discuss jsprit related issues and you will probably get answers to your questions.
45
+
In the [Graphhopper Forum ](https://discuss.graphhopper.com/) ([Also you can see the old mailing list](https://groups.google.com/group/jsprit-mailing-list)) you can discuss jsprit related issues and you will probably get answers to your questions.
46
46
47
47
#### Stackoverflow:
48
48
You can also use [stackoverflow](http://stackoverflow.com/questions/tagged/jsprit) to discuss your issues. Tag it with <em>jsprit</em> then it is easier to keep track of your topic.
@@ -51,7 +51,7 @@ You can also use [stackoverflow](http://stackoverflow.com/questions/tagged/jspri
51
51
For bugs, feature requests or similar use the [issue tracker](https://github.com/jsprit/jsprit/issues).
52
52
53
53
#### Email:
54
-
If you cannot get help in the mailing list or you just do not want to discuss your topic publicly, contact us via https://graphhopper.com/#contact
54
+
If you cannot get help in the mailing list or you just do not want to discuss your topic publicly, [contact us via mail](https://graphhopper.com/#contact)
You model a dial-a-ride problem much like a vehicle routing problem with pickups and deliveries. The capacity of vehicles can be interpreted as number of seats available. A shipment is here understood as a ride from one location to another (probably you want the shipment to have a capacity-demand of 1). See [VRP with pickups and deliveries](https://github.com/jsprit/jsprit/wiki/VRP-with-pickups-and-deliveries).
1
+
You model a dial-a-ride problem much like a vehicle routing problem with pickups and deliveries. The capacity of vehicles can be interpreted as number of seats available. A shipment is here understood as a ride from one location to another (probably you want the shipment to have a capacity-demand of 1). See [VRP with pickups and deliveries](../docs/Vrp-with-pickups-and-deliveries.md).
Copy file name to clipboardexpand all lines: docs/Getting-Started.md
+6-5
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,15 @@
1
-
####Requirements
1
+
####Requirements
2
2
jsprit requires Java 1.7.0 or later.
3
3
4
-
####Modules
4
+
####Modules
5
5
jsprit is a multi-module project and consists of:
6
6
- jsprit-core
7
7
- jsprit-analysis
8
8
- jsprit-instances
9
9
- jsprit-examples
10
10
- jsprit-io
11
11
12
-
####Maven way
12
+
####Maven way
13
13
If you want to use the latest release of jsprit-core, add the following lines to your pom:
14
14
15
15
<pre><code><dependency>
@@ -21,7 +21,7 @@ If you want to use the latest release of jsprit-core, add the following lines to
21
21
22
22
Find the latest versions here: [mvn repository](https://mvnrepository.com/artifact/com.graphhopper/jsprit-core).
23
23
24
-
####Build yourself
24
+
####Build yourself
25
25
If you want to build the master branch yourself, do this:
26
26
27
27
```
@@ -30,7 +30,7 @@ cd jsprit
30
30
mvn clean install
31
31
```
32
32
33
-
####If you do not have an IDE and you want to use Maven
33
+
####If you do not have an IDE and you want to use Maven
34
34
35
35
the following documentation is recommended:
36
36
@@ -39,6 +39,7 @@ the following documentation is recommended:
39
39
Here you learn to setup the Java environment and an Integrated Development Environment (IDE). In the subsection <em>Adding Jars to your Project</em> you learn to integrate external libraries in your project. Just copy/paste the above jsprit releases/snapshots to your pom.xml instead of the GeoTools-artifacts.
40
40
41
41
#### If you do not want Maven
42
+
42
43
to manage your dependencies, go to [maven central](https://search.maven.org/), search for jsprit and download the latest binaries to put them into your classpath.
43
44
44
45
Go ahead and show me a [simple example](Simple-Example.md) of how to setup and solve a vehicle routing problem.
0 commit comments