Example #1
0
 public ApproxGraphHSP(ApproxGraph ag, int sample_size)
     : base(ag)
 {
     this.SampleSize = sample_size;
 }
Example #2
0
 public ApproxGraphNearExpand(ApproxGraph ag, int sample_size)
     : base(ag, sample_size)
 {
 }
Example #3
0
 // sisap 2012 version
 public static string ExecuteApproxGraph(IndexArgumentSetup setup, string nick, int neighbors, int restarts)
 {
     var idxname = String.Format ("{0}/Index.ApproxGraph.neighbors={1}-restarts={2}", nick, neighbors, restarts);
     return Execute (setup, nick, idxname, (db) => {
         var IDX = new ApproxGraph ();
         IDX.Build (db, (short)neighbors, (short)restarts);
         return IDX;
     });
 }
 public ApproxGraphLocalBeamOrig(ApproxGraph ag, int beamsize)
     : base(ag)
 {
     this.BeamSize = beamsize;
 }
Example #5
0
 public ApproxGraphSeq(ApproxGraph a)
     : base(a)
 {
 }
Example #6
0
 public ApproxGraphCK(ApproxGraph ag, int sample_size)
     : base(ag, sample_size)
 {
 }