Ejemplo n.º 1
0
		public Subset(double begin=0.0, double end=1.0)
		{
			this.Domain = new RationalRange(begin: begin, end: end);
			this.Values = new Dictionary<double, double>();
			this.Norm = new naive();
		}
Ejemplo n.º 2
0
		public Subset(IDomain domain)
		{
			this.Domain = domain;
			this.Values = new Dictionary<double, double>();
			this.Norm = new naive();
		}