All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.kit.ifv.mobitopp.simulation.modeChoice.ModeChoiceModel Maven / Gradle / Ivy

Go to download

mobiTopp (http://mobitopp.ifv.kit.edu/) is an agent-based travel demand model developed at the Institute for transport studies at the Karlsruhe Institute of Technology (http://www.ifv.kit.edu/english/index.php). Publications about mobiTopp can be found on the project site (http://mobitopp.ifv.kit.edu/28.php).

There is a newer version: 0.3.580
Show newest version
package edu.kit.ifv.mobitopp.simulation.modeChoice;

import java.util.Set;

import edu.kit.ifv.mobitopp.data.Zone;
import edu.kit.ifv.mobitopp.simulation.Mode;
import edu.kit.ifv.mobitopp.simulation.Person;
import edu.kit.ifv.mobitopp.simulation.activityschedule.ActivityIfc;

public interface ModeChoiceModel {

	public Mode selectMode(
		Person person,
		Zone origin,
		Zone destination,
		ActivityIfc previousActivity,
		ActivityIfc nextActivity,
		Set choiceSet,
		double randomNumber
	);

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy