コード例 #1
0
ファイル: UnaryOp.cs プロジェクト: ptucker/WhitStream
 private void Init()
 {
     algorithm = new UnaryAlgorithm(algoHash = new HashAlgorithm());
 }
コード例 #2
0
ファイル: UnaryOp.cs プロジェクト: ptucker/WhitStream
 private void Init(IComparer<DataItem> c, int[] a)
 {
     algoSort = new SortedInput(c, a);
     algorithm = new UnaryAlgorithm(algoSort);
 }
コード例 #3
0
ファイル: UnaryOp.cs プロジェクト: ptucker/WhitStream
        private void Init(string pred)
        {
            stExpr = pred;

            algorithm = new UnaryAlgorithm(algoNaive = new Naive(pred));
        }
コード例 #4
0
ファイル: UnaryOp.cs プロジェクト: ptucker/WhitStream
        private void Init(Map m, int[] a)
        {
            attrsOrig = new int[a.Length];
            a.CopyTo(attrsOrig, 0);

            algorithm = new UnaryAlgorithm(algoNaive = new Naive(m, a));
        }
コード例 #5
0
ファイル: UnaryOp.cs プロジェクト: ptucker/WhitStream
 private void Init()
 {
     algorithm = new UnaryAlgorithm(new HashAlgorithmSum(attrs, val));
 }
コード例 #6
0
ファイル: UnaryOp.cs プロジェクト: ptucker/WhitStream
 private void Init()
 {
     algorithm = new UnaryAlgorithm(algoHash = new HashAlgorithmCount(attrs));
 }