﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
250	"The function ""While"" is aproximately 4 times slower than the function ""For"" or ""Eval"""	maalamo	danirus	"Real SecIni = Copy(Time);
Real j = 0;
Real t = 100000;
Real While(j<t,
{
  Real j := j+1;
  Copy(False)
});
WriteLn(""Segundos Trascurridos While: ""<< (Copy(Time)-SecIni));
Real SecIni2 = Copy(Time);
Set a = For(1, t, Real(Real n)
{
  Copy(False)
});
WriteLn(""Segundos Trascurridos For: ""<< (Copy(Time)-SecIni2));
Set a := Copy(Empty);
Real SecIni3 = Copy(Time);
Set a := Copy(Range(1, t, 1));
WriteLn(""Segundos Trascurridos C: ""<< (Copy(Time)-SecIni3));
Real SecIni4 = Copy(Time);
Set EvalSet(a, Real(Real n)
{
  Copy(False)
});
WriteLn(""Segundos Trascurridos EvalSet: ""<< (Copy(Time)-SecIni4));"	defect	closed	lowest		SetAlgebra	head	major	remind		
