/************************************************************************************ * Copyright (C) 2008 by Politehnica University of Bucharest and Rutgers University * All rights reserved. * Refer to LICENSE for terms and conditions of use. ***********************************************************************************/ package vnsim.vehicular.simulator; public class NotMovingPersonality extends CalmPersonality { public double getAccelerationFreeDriving() { return 0.0; } public double getWantedSpeed(int roadIndex) { return 0.0; } public double getLaneChangeSafetyDistance(double mySpeed, double folSpeed) { //TO DO BETTER return 1000.0; } }