﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
10	TimeSet global & TimeSet no global	rcsoto	danirus	"When working with TimeSet not global, an error when acceding to the created 
object.

To see the following example:

// TimeSet global. It works correctly. 
Serie   ser = Gaussian(0,1,Monthly)+Gaussian(1,0.5,Monthly);
TimeSet fec = Dating(ser);
Serie fun( Serie ser)
{ 
  Set   s = MatSerSet(Row(1,2,3,4,5,6,7,8,9,10) ,fec , y2000);
  Serie b = s[1] ;
  b
};

Serie c=fun(ser);

//TimeSet not global. Error when operating with Serie c. 

Serie   ser = Gaussian(0,1,Monthly)+Gaussian(1,0.5,Monthly);
Serie fun( Serie ser)
{ 
  TimeSet fec = Dating(ser);
  Set   s = MatSerSet(Row(1,2,3,4,5,6,7,8,9,10) ,fec , y2000);
  Serie b = s[1] ;
  b
};

Serie c = fun(ser);"	defect	closed	high		Kernel	head	major	fixed		jimarin
