Home
last modified time | relevance | path

Searched refs:resetActionOffset (Results 1 – 13 of 13) sorted by relevance

/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSVehicleType.cpp201 MSVehicleType::setActionStepLength(const SUMOTime actionStepLength, bool resetActionOffset) { in setActionStepLength() argument
226 if (resetActionOffset) { in setActionStepLength()
227 veh->resetActionOffset(); in setActionStepLength()
H A DMSVehicleType.h466 void setActionStepLength(const SUMOTime actionStepLength, bool resetActionOffset);
H A DMSVehicle.h336 void resetActionOffset(const SUMOTime timeUntilNextAction = 0);
711 void setActionStepLength(double actionStepLength, bool resetActionOffset = true);
H A DMSVehicle.cpp1446 resetActionOffset();
2100 MSVehicle::resetActionOffset(const SUMOTime timeUntilNextAction) {
2118 resetActionOffset(timeUntilNextAction);
/dports/cad/sumo/sumo-1.2.0/tools/traci/
H A D_vehicletype.py329 def setActionStepLength(self, typeID, actionStepLength, resetActionOffset=True): argument
341 if not resetActionOffset:
H A D_vehicle.py1425 def setActionStepLength(self, vehID, actionStepLength, resetActionOffset=True): argument
1436 if not resetActionOffset:
/dports/cad/sumo/sumo-1.2.0/src/libsumo/
H A DVehicleType.cpp204 …:setActionStepLength(const std::string& typeID, double actionStepLength, bool resetActionOffset) { in setActionStepLength() argument
205 …nStepLength(SUMOVehicleParserHelper::processActionStepLength(actionStepLength), resetActionOffset); in setActionStepLength()
H A DVehicleType.h73 …id setActionStepLength(const std::string& typeID, double actionStepLength, bool resetActionOffset);
H A DPerson.cpp795 …setActionStepLength(const std::string& personID, double actionStepLength, bool resetActionOffset) { in setActionStepLength() argument
796 …nStepLength(SUMOVehicleParserHelper::processActionStepLength(actionStepLength), resetActionOffset); in setActionStepLength()
H A DVehicle.cpp1460 …etActionStepLength(const std::string& vehicleID, double actionStepLength, bool resetActionOffset) {
1467 veh->resetActionOffset();
1469 veh->setActionStepLength(actionStepLength, resetActionOffset);
/dports/cad/sumo/sumo-1.2.0/src/traci-server/
H A DTraCIServerAPI_VehicleType.cpp325 bool resetActionOffset = value >= 0.0; in setVariable() local
326 libsumo::VehicleType::setActionStepLength(id, fabs(value), resetActionOffset); in setVariable()
H A DTraCIServerAPI_Vehicle.cpp1057 bool resetActionOffset = value >= 0.0; in processSet() local
1058 libsumo::Vehicle::setActionStepLength(id, fabs(value), resetActionOffset); in processSet()
/dports/cad/sumo/sumo-1.2.0/tools/contributed/traas/src/de/tudresden/sumo/cmd/
H A DVehicle.java1245 … SumoCommand setActionStepLength(String vehID, double actionStepLength, boolean resetActionOffset){ in setActionStepLength() argument
1247 if(!resetActionOffset) {actionStepLength *= -1;} in setActionStepLength()