The result set
Inheritance: Result
Ejemplo n.º 1
0
 /// <summary>
 /// Search by range
 /// </summary>
 public virtual IResult SearchRange(object q, double radius)
 {
     var res = new ResultRange (radius, this.DB.Count);
     this.SearchKNN (q, this.DB.Count, res);
     return res;
 }
Ejemplo n.º 2
0
 public override IResult SearchRange(object q, double radius)
 {
     var res = new ResultRange (radius, this.DB.Count);
     return this.SearchKNN(q, this.DB.Count, res);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Search the specified q with radius qrad.
 /// </summary>
 public override IResult SearchRange(object q, double qrad)
 {
     var res = new ResultRange (qrad, this.DB.Count);
     this.SearchKNN (q, this.DB.Count, res);
     return res;
 }