Lines Matching refs:constraints
41 # Given a list of objects, reorder them so that the constraints specified by
54 local constraints = [ eliminate-unused-constraits $(objects) ] ;
65 if [ has-no-dependents $(obj) : $(constraints) ]
85 # Remove all constraints where 'obj' comes first, since they are
87 constraints = [ remove-satisfied $(constraints) : $(obj) ] ;
99 # Eliminate constraints which mention objects not in 'objects'. In
105 for local c in $(.constraints)
118 rule has-no-dependents ( obj : constraints * )
121 while $(constraints) && ! $(failed)
123 local c = $(constraints[1]) ;
129 constraints = $(constraints[2-]) ;
137 rule remove-satisfied ( constraints * : obj )
140 for local c in $(constraints)