| 125 | //------------------------------------------------------------------------------ |
| 126 | |
| 127 | GrB_Info GrB_Matrix_select_Scalar |
| 128 | ( |
| 129 | GrB_Matrix C, // input/output matrix for results |
| 130 | const GrB_Matrix M, // optional mask for C, or NULL |
| 131 | const GrB_BinaryOp accum, // optional accum for Z=accum(C,T) |
| 132 | const GrB_IndexUnaryOp op, // operator to select the entries |
| 133 | const GrB_Matrix A, // first input: matrix A |
| 134 | const GrB_Scalar Thunk, // optional input for select operator |
| 135 | const GrB_Descriptor desc // descriptor for C, M, and A |
| 136 | ) |
| 137 | { |
| 138 | GB_WHERE (C, "GrB_Matrix_select_Scalar (C, M, accum, op, A, thunk, desc)") ; |
| 139 | return (GB_sel (C, M, accum, op, A, Thunk, desc, Context)) ; |
| 140 | } |
| 141 |
no test coverage detected