(state_data, a, size, replace, p)
| 825 | |
| 826 | |
| 827 | def _choice_rs(state_data, a, size, replace, p): |
| 828 | state = array_creation_dispatch.RandomState(state_data) |
| 829 | return state.choice(a, size=size, replace=replace, p=p) |
| 830 | |
| 831 | |
| 832 | def _choice_validate_params(state, a, size, replace, p, axis, chunks): |
nothing calls this directly
no test coverage detected