| 149 | |
| 150 | template<class View> |
| 151 | PropCost |
| 152 | NaryEq<View>::cost(const Space&, const ModEventDelta& med) const { |
| 153 | if (View::me(med) == ME_FLOAT_VAL) |
| 154 | return PropCost::unary(PropCost::LO); |
| 155 | else |
| 156 | return PropCost::linear(PropCost::LO, x.size()); |
| 157 | } |
| 158 | |
| 159 | template<class View> |
| 160 | ExecStatus |