mirror of
https://github.com/graphhopper/jsprit.git
synced 2020-01-24 07:45:05 +01:00
modify javadoc
This commit is contained in:
parent
fa8d97b7e9
commit
05dc00814e
1 changed files with 2 additions and 2 deletions
|
|
@ -106,7 +106,7 @@ public class SearchStrategy {
|
|||
}
|
||||
|
||||
/**
|
||||
* Runs the search-strategy and its according modules, and returns true if a new solution has been accepted.
|
||||
* Runs the search-strategy and its according modules, and returns DiscoveredSolution.
|
||||
*
|
||||
* <p>This involves three basic steps: 1) Selecting a solution from solutions (input parameter) according to {@link SolutionSelector}, 2) running the modules
|
||||
* ({@link SearchStrategyModule}) on the selectedSolution and 3) accepting the new solution according to {@link SolutionAcceptor}.
|
||||
|
|
@ -115,7 +115,7 @@ public class SearchStrategy {
|
|||
*
|
||||
* @param vrp
|
||||
* @param solutions which will be modified
|
||||
* @return boolean true if solution has been accepted, false otherwise
|
||||
* @return discoveredSolutin
|
||||
* @see SolutionSelector, SearchStrategyModule, SolutionAcceptor
|
||||
*/
|
||||
public DiscoveredSolution run(VehicleRoutingProblem vrp, Collection<VehicleRoutingProblemSolution> solutions){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue