changed default simulation delay to 0
This commit is contained in:
parent
3774395c82
commit
b98c18e616
1 changed files with 3 additions and 3 deletions
|
@ -24,7 +24,7 @@
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $Id: Simulation.java,v 1.42 2009/02/24 15:08:20 fros4943 Exp $
|
* $Id: Simulation.java,v 1.43 2009/03/02 09:46:19 fros4943 Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package se.sics.cooja;
|
package se.sics.cooja;
|
||||||
|
@ -44,7 +44,7 @@ import se.sics.cooja.dialogs.*;
|
||||||
* changed simulation state, added or deleted motes etc are observed.
|
* changed simulation state, added or deleted motes etc are observed.
|
||||||
* To track mote changes, observe the mote (interfaces) itself.
|
* To track mote changes, observe the mote (interfaces) itself.
|
||||||
*
|
*
|
||||||
* @author Fredrik Österlind
|
* @author Fredrik Osterlind
|
||||||
*/
|
*/
|
||||||
public class Simulation extends Observable implements Runnable {
|
public class Simulation extends Observable implements Runnable {
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ public class Simulation extends Observable implements Runnable {
|
||||||
|
|
||||||
private Vector<MoteType> moteTypes = new Vector<MoteType>();
|
private Vector<MoteType> moteTypes = new Vector<MoteType>();
|
||||||
|
|
||||||
private int delayTime = 5;
|
private int delayTime = 0;
|
||||||
|
|
||||||
private long currentSimulationTime = 0;
|
private long currentSimulationTime = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue