| 244 | } |
| 245 | |
| 246 | function_spec py_function_spec2 ( |
| 247 | py::list a, |
| 248 | py::list b, |
| 249 | py::list c |
| 250 | ) |
| 251 | { |
| 252 | return function_spec(list_to_mat(a), list_to_mat(b), list_to_bool_vector(c)); |
| 253 | } |
| 254 | |
| 255 | std::shared_ptr<global_function_search> py_global_function_search1 ( |
| 256 | py::list functions |
nothing calls this directly
no test coverage detected