returns a new filter that is the intersection of the two input filters
Definition at line 17 of file FilterOperations.h. Referenced by Impala::Core::Feature::SplitSet(). 00018 { 00019 bool* result = new bool[size]; 00020 for(int i=0 ; i<size ; ++i) 00021 result[i] = set1[i] && set2[i]; 00022 return result; 00023 }
|