Searched defs:Complexity (Results 1 – 2 of 2) sorted by relevance
21 struct Complexity struct23 constexpr static int value = 0;601 struct Complexity<_Expr<DerivedOp>> struct603 constexpr static int value = Complexity<DerivedOp>::value;613 struct Complexity<_Binary<LHS,RHS,DerivedOp>> struct615 constexpr static int lhsv = Complexity<LHS>::value;616 constexpr static int rhsv = Complexity<RHS>::value;617 constexpr static int value = lhsv + rhsv + 1;814 struct Complexity<_Unary<LHS,DerivedOp>> struct816 constexpr static int value = 1 + Complexity<LHS>::value;
660 struct Complexity<_Outer<LHS,RHS,DerivedOp>> struct662 constexpr static int lhsv = Complexity<LHS>::value;663 constexpr static int rhsv = Complexity<RHS>::value;664 constexpr static int value = lhsv + rhsv + 1;