MATSIM
ConflictResolver.java
Go to the documentation of this file.
1 package org.matsim.core.replanning.conflicts;
2 
3 import org.matsim.api.core.v01.IdSet;
7 
17 public interface ConflictResolver {
18  IdSet<Person> resolve(Population population, int iteration);
19 
20  boolean isPotentiallyConflicting(Plan plan);
21 
22  String getName();
23 }
IdSet< Person > resolve(Population population, int iteration)