Home
last modified time | relevance | path

Searched refs:getMinGapLat (Results 1 – 15 of 15) sorted by relevance

/dports/cad/sumo/sumo-1.2.0/src/libsumo/
H A DVehicleType.cpp168 VehicleType::getMinGapLat(const std::string& typeID) { in getMinGapLat() function in libsumo::VehicleType
169 return getVType(typeID)->getMinGapLat(); in getMinGapLat()
405 return wrapper->wrapDouble(objID, variable, getMinGapLat(objID)); in handleVariable()
H A DVehicleType.h49 static double getMinGapLat(const std::string& typeID); \
H A DPerson.cpp284 Person::getMinGapLat(const std::string& personID) { in getMinGapLat() function in libsumo::Person
285 return getPerson(personID)->getVehicleType().getMinGapLat(); in getMinGapLat()
H A DVehicle.cpp833 Vehicle::getMinGapLat(const std::string& vehicleID) {
834 return getVehicleType(vehicleID).getMinGapLat();
/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSVehicleType.h133 double getMinGapLat() const { in getMinGapLat() function
H A DMSVehicleType.cpp124 myParameter.minGapLat = myOriginalType->getMinGapLat(); in setMinGapLat()
/dports/cad/sumo/sumo-1.2.0/tools/traci/
H A D_vehicletype.py194 def getMinGapLat(self, vehID): member in VehicleTypeDomain
H A D_vehicle.py451 def getMinGapLat(self, vehID): member in VehicleDomain
/dports/cad/sumo/sumo-1.2.0/tools/contributed/traas/src/de/tudresden/sumo/cmd/
H A DVehicletype.java121 public static SumoCommand getMinGapLat(String typeID){ in getMinGapLat() method in Vehicletype
H A DVehicle.java117 public static SumoCommand getMinGapLat(String vehID){ in getMinGapLat() method in Vehicle
/dports/cad/sumo/sumo-1.2.0/src/utils/traci/
H A DTraCIAPI.h615 double getMinGapLat(const std::string& typeID) const;
744 double getMinGapLat(const std::string& vehicleID) const;
H A DTraCIAPI.cpp2051 TraCIAPI::VehicleTypeScope::getMinGapLat(const std::string& typeID) const { in getMinGapLat() function in TraCIAPI::VehicleTypeScope
2663 TraCIAPI::VehicleScope::getMinGapLat(const std::string& vehicleID) const { in getMinGapLat() function in TraCIAPI::VehicleScope
/dports/cad/sumo/sumo-1.2.0/src/microsim/lcmodels/
H A DMSLCM_SL2015.cpp138 MAX2(NUMERICAL_EPS, v.getVehicleType().getMinGapLat())) / in MSLCM_SL2015()
139 MAX2(NUMERICAL_EPS, v.getVehicleType().getMinGapLat())))), in MSLCM_SL2015()
2887 const double baseMinGap = myVehicle.getVehicleType().getMinGapLat();
/dports/cad/sumo/sumo-1.2.0/src/guisim/
H A DGUIVehicle.cpp220 ret->mkItem("minGapLat", false, myType->getMinGapLat()); in getTypeParameterWindow()
/dports/cad/sumo/sumo-1.2.0/src/traci_testclient/
H A DTraCITestClient.cpp747 answerLog << " setMinGapLat: " << vehicletype.getMinGapLat("t1") << "\n"; in testAPI()