mirror of
https://github.com/graphhopper/jsprit.git
synced 2020-01-24 07:45:05 +01:00
Merge branch 'master' into relaxAPI
This commit is contained in:
commit
b641a3b22d
9 changed files with 28 additions and 15 deletions
21
CHANGELOG.md
Normal file
21
CHANGELOG.md
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
Change-log
|
||||
==========
|
||||
**v0.0.4** @ 2013-10-17
|
||||
|
||||
- A number of internal improvements
|
||||
- License change from GPLv2 to LGPLv3
|
||||
- Add premature algorithm termination: PrematureAlgorithmBreaker.java and its implementations
|
||||
- SearchStrategy.java: public SearchStrategy(SolutionSelector,SolutionAcceptor) --> public SearchStratgy(SolutionSelector,SolutionAcceptor,SolutionCostCalculator)
|
||||
- SearchStrategy.java: public boolean run(...) --> public DiscoveredSolution run(...)
|
||||
- VehicleImpl.VehicleType.Builder --> VehicleTypeImpl.Builder
|
||||
- VehicleImpl.VehicleBuilder --> VehicleImpl.Builder
|
||||
|
||||
**v0.0.3** @ 2013-06-04
|
||||
|
||||
- Bug fix - access resources in jar
|
||||
|
||||
**v0.0.2** @ 2013-06-03
|
||||
|
||||
- Bug fix - access resources in jar
|
||||
|
||||
**v0.0.1** @ 2013-06-02
|
||||
|
|
@ -21,7 +21,6 @@ can be used, and a dynamic and interactive visualiser greatly enhances the analy
|
|||
- continues improvement of code, handling and performance
|
||||
- relaxed API to easily build algorithms from scratch
|
||||
- VRP with pickups and deliveries
|
||||
- release 1.0.0
|
||||
|
||||
##Documentation
|
||||
|
||||
|
|
@ -36,6 +35,8 @@ This software is released under [LGPL](http://opensource.org/licenses/LGPL-3.0).
|
|||
|
||||
[Add the latest snapshot to your pom](https://github.com/jsprit/jsprit/wiki/Add-latest-snapshot-to-your-pom).
|
||||
|
||||
[Add the latest release to your pom](https://github.com/jsprit/jsprit/wiki/Add-latest-release-to-your-pom).
|
||||
|
||||
##About
|
||||
The jsprit-project is created and maintained by Stefan Schröder. It is motivated by two issues.
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
<parent>
|
||||
<groupId>jsprit</groupId>
|
||||
<artifactId>jsprit</artifactId>
|
||||
<version>0.0.4-SNAPSHOT</version>
|
||||
<version>0.0.5-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>jsprit-analysis</artifactId>
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
<parent>
|
||||
<groupId>jsprit</groupId>
|
||||
<artifactId>jsprit</artifactId>
|
||||
<version>0.0.4-SNAPSHOT</version>
|
||||
<version>0.0.5-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>jsprit-core</artifactId>
|
||||
|
|
|
|||
|
|
@ -151,12 +151,6 @@ public class TourActivities {
|
|||
activityRemoved = true;
|
||||
}
|
||||
}
|
||||
else if(c instanceof ServiceActivity){
|
||||
if(job.equals(((ServiceActivity) c).getJob())){
|
||||
tourActivities.remove(c);
|
||||
activityRemoved = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
assert jobRemoved == activityRemoved : "job removed, but belonging activity not.";
|
||||
return activityRemoved;
|
||||
|
|
@ -203,9 +197,6 @@ public class TourActivities {
|
|||
Job job = ((JobActivity) act).getJob();
|
||||
jobs.add(job);
|
||||
}
|
||||
else if(act instanceof ServiceActivity){
|
||||
jobs.add(((ServiceActivity) act).getJob());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
<parent>
|
||||
<groupId>jsprit</groupId>
|
||||
<artifactId>jsprit</artifactId>
|
||||
<version>0.0.4-SNAPSHOT</version>
|
||||
<version>0.0.5-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
<parent>
|
||||
<groupId>jsprit</groupId>
|
||||
<artifactId>jsprit</artifactId>
|
||||
<version>0.0.4-SNAPSHOT</version>
|
||||
<version>0.0.5-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
|
|
|||
2
pom.xml
2
pom.xml
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
<groupId>jsprit</groupId>
|
||||
<artifactId>jsprit</artifactId>
|
||||
<version>0.0.4-SNAPSHOT</version>
|
||||
<version>0.0.5-SNAPSHOT</version>
|
||||
|
||||
<packaging>pom</packaging>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue