(x)
| 2863 | # want to know whether to put label on positive or negative direction |
| 2864 | # cannot use np.sign here because it will return 0 if x == 0 |
| 2865 | def sign(x): |
| 2866 | return 1 if x >= 0 else -1 |
| 2867 | |
| 2868 | _api.check_in_list(['edge', 'center'], label_type=label_type) |
| 2869 |
no outgoing calls