Exemplo n.º 1
0
        public static double Correr()
        {
            Resetear();
            Inicializar();

            /*
             * for (var i = 1 ; i <= 100 ; i++) {
             *  warmupAuxen();
             *  warmupRates();
             *  tock();
             *  }
             */

            while (!Reloj.Finalizado)
            {
                Reloj.PasoTemporal();
            }
            return(Reloj.TiempoActual);
        }
Exemplo n.º 2
0
 public static void Crear(string Nombre, double DT)
 {
     Modelo.Nombre = Nombre;
     Reloj.Establecer_DT(1);
     _auxiliares.Inicializar();
 }
Exemplo n.º 3
0
 public static double UnPaso()
 {
     Reloj.PasoTemporal();
     return(Reloj.TiempoActual);
 }