HomeSort by relevance Sort by last modified time
    Searched refs:min_weight (Results 1 - 3 of 3) sorted by null

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
infoflow.py 34 def __init__(self, policy, perm_map, min_weight=1, exclude=None):
48 self.min_weight = min_weight
58 def min_weight(self): member in class:InfoFlowAnalysis
61 @min_weight.setter
62 def min_weight(self, weight): member in class:InfoFlowAnalysis
336 self.log.debug("Min weight {0}".format(self.min_weight))
345 if self.min_weight > 1:
349 if edge.weight < self.min_weight:
permmap.py 30 min_weight = 1 variable
157 if not min_weight <= weight <= max_weight:
161 min_weight, max_weight))
203 assert min_weight <= weight <= max_weight, \
403 if not min_weight <= weight <= max_weight:
  /external/opencv/cv/src/
cvstereogc.cpp 169 int e0 = -1, ei = 0, ej = 0, min_weight, weight; local
224 min_weight = edges[e0].weight;
225 assert( min_weight > 0 );
234 min_weight = MIN(min_weight, weight);
235 assert( min_weight > 0 );
238 min_weight = MIN(min_weight, weight);
239 assert( min_weight > 0 );
243 edges[e0].weight -= min_weight;
    [all...]

Completed in 112 milliseconds