scikit-learn/sklearn/ball_tree.c

12616 lines
565 KiB
C

/* Generated by Cython 0.13 on Fri Sep 2 11:24:58 2011 */
#define PY_SSIZE_T_CLEAN
#include "Python.h"
#ifndef Py_PYTHON_H
#error Python headers needed to compile C extensions, please install development version of Python.
#else
#include <stddef.h> /* For offsetof */
#ifndef offsetof
#define offsetof(type, member) ( (size_t) & ((type*)0) -> member )
#endif
#if !defined(WIN32) && !defined(MS_WINDOWS)
#ifndef __stdcall
#define __stdcall
#endif
#ifndef __cdecl
#define __cdecl
#endif
#ifndef __fastcall
#define __fastcall
#endif
#endif
#ifndef DL_IMPORT
#define DL_IMPORT(t) t
#endif
#ifndef DL_EXPORT
#define DL_EXPORT(t) t
#endif
#ifndef PY_LONG_LONG
#define PY_LONG_LONG LONG_LONG
#endif
#if PY_VERSION_HEX < 0x02040000
#define METH_COEXIST 0
#define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type)
#define PyDict_Contains(d,o) PySequence_Contains(d,o)
#endif
#if PY_VERSION_HEX < 0x02050000
typedef int Py_ssize_t;
#define PY_SSIZE_T_MAX INT_MAX
#define PY_SSIZE_T_MIN INT_MIN
#define PY_FORMAT_SIZE_T ""
#define PyInt_FromSsize_t(z) PyInt_FromLong(z)
#define PyInt_AsSsize_t(o) PyInt_AsLong(o)
#define PyNumber_Index(o) PyNumber_Int(o)
#define PyIndex_Check(o) PyNumber_Check(o)
#define PyErr_WarnEx(category, message, stacklevel) PyErr_Warn(category, message)
#endif
#if PY_VERSION_HEX < 0x02060000
#define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt)
#define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
#define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size)
#define PyVarObject_HEAD_INIT(type, size) \
PyObject_HEAD_INIT(type) size,
#define PyType_Modified(t)
typedef struct {
void *buf;
PyObject *obj;
Py_ssize_t len;
Py_ssize_t itemsize;
int readonly;
int ndim;
char *format;
Py_ssize_t *shape;
Py_ssize_t *strides;
Py_ssize_t *suboffsets;
void *internal;
} Py_buffer;
#define PyBUF_SIMPLE 0
#define PyBUF_WRITABLE 0x0001
#define PyBUF_FORMAT 0x0004
#define PyBUF_ND 0x0008
#define PyBUF_STRIDES (0x0010 | PyBUF_ND)
#define PyBUF_C_CONTIGUOUS (0x0020 | PyBUF_STRIDES)
#define PyBUF_F_CONTIGUOUS (0x0040 | PyBUF_STRIDES)
#define PyBUF_ANY_CONTIGUOUS (0x0080 | PyBUF_STRIDES)
#define PyBUF_INDIRECT (0x0100 | PyBUF_STRIDES)
#endif
#if PY_MAJOR_VERSION < 3
#define __Pyx_BUILTIN_MODULE_NAME "__builtin__"
#else
#define __Pyx_BUILTIN_MODULE_NAME "builtins"
#endif
#if PY_MAJOR_VERSION >= 3
#define Py_TPFLAGS_CHECKTYPES 0
#define Py_TPFLAGS_HAVE_INDEX 0
#endif
#if (PY_VERSION_HEX < 0x02060000) || (PY_MAJOR_VERSION >= 3)
#define Py_TPFLAGS_HAVE_NEWBUFFER 0
#endif
#if PY_MAJOR_VERSION >= 3
#define PyBaseString_Type PyUnicode_Type
#define PyStringObject PyUnicodeObject
#define PyString_Type PyUnicode_Type
#define PyString_Check PyUnicode_Check
#define PyString_CheckExact PyUnicode_CheckExact
#endif
#if PY_VERSION_HEX < 0x02060000
#define PyBytesObject PyStringObject
#define PyBytes_Type PyString_Type
#define PyBytes_Check PyString_Check
#define PyBytes_CheckExact PyString_CheckExact
#define PyBytes_FromString PyString_FromString
#define PyBytes_FromStringAndSize PyString_FromStringAndSize
#define PyBytes_FromFormat PyString_FromFormat
#define PyBytes_DecodeEscape PyString_DecodeEscape
#define PyBytes_AsString PyString_AsString
#define PyBytes_AsStringAndSize PyString_AsStringAndSize
#define PyBytes_Size PyString_Size
#define PyBytes_AS_STRING PyString_AS_STRING
#define PyBytes_GET_SIZE PyString_GET_SIZE
#define PyBytes_Repr PyString_Repr
#define PyBytes_Concat PyString_Concat
#define PyBytes_ConcatAndDel PyString_ConcatAndDel
#define PySet_Check(obj) PyObject_TypeCheck(obj, &PySet_Type)
#define PyFrozenSet_Check(obj) PyObject_TypeCheck(obj, &PyFrozenSet_Type)
#endif
#ifndef PySet_CheckExact
# define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type)
#endif
#if PY_MAJOR_VERSION >= 3
#define PyInt_Type PyLong_Type
#define PyInt_Check(op) PyLong_Check(op)
#define PyInt_CheckExact(op) PyLong_CheckExact(op)
#define PyInt_FromString PyLong_FromString
#define PyInt_FromUnicode PyLong_FromUnicode
#define PyInt_FromLong PyLong_FromLong
#define PyInt_FromSize_t PyLong_FromSize_t
#define PyInt_FromSsize_t PyLong_FromSsize_t
#define PyInt_AsLong PyLong_AsLong
#define PyInt_AS_LONG PyLong_AS_LONG
#define PyInt_AsSsize_t PyLong_AsSsize_t
#define PyInt_AsUnsignedLongMask PyLong_AsUnsignedLongMask
#define PyInt_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask
#endif
#if PY_MAJOR_VERSION >= 3
#define PyBoolObject PyLongObject
#endif
#if PY_MAJOR_VERSION >= 3
#define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y)
#define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y)
#else
#define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y)
#define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y)
#endif
#if PY_MAJOR_VERSION >= 3
#define PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : PyInstanceMethod_New(func))
#endif
#if PY_VERSION_HEX < 0x02050000
#define __Pyx_GetAttrString(o,n) PyObject_GetAttrString((o),((char *)(n)))
#define __Pyx_SetAttrString(o,n,a) PyObject_SetAttrString((o),((char *)(n)),(a))
#define __Pyx_DelAttrString(o,n) PyObject_DelAttrString((o),((char *)(n)))
#else
#define __Pyx_GetAttrString(o,n) PyObject_GetAttrString((o),(n))
#define __Pyx_SetAttrString(o,n,a) PyObject_SetAttrString((o),(n),(a))
#define __Pyx_DelAttrString(o,n) PyObject_DelAttrString((o),(n))
#endif
#if PY_VERSION_HEX < 0x02050000
#define __Pyx_NAMESTR(n) ((char *)(n))
#define __Pyx_DOCSTR(n) ((char *)(n))
#else
#define __Pyx_NAMESTR(n) (n)
#define __Pyx_DOCSTR(n) (n)
#endif
#ifdef __cplusplus
#define __PYX_EXTERN_C extern "C"
#else
#define __PYX_EXTERN_C extern
#endif
#if defined(WIN32) || defined(MS_WINDOWS)
#define _USE_MATH_DEFINES
#endif
#include <math.h>
#define __PYX_HAVE_API__sklearn__ball_tree
#include "stdio.h"
#include "stdlib.h"
#include "numpy/arrayobject.h"
#include "numpy/ufuncobject.h"
/* inline attribute */
#ifndef CYTHON_INLINE
#if defined(__GNUC__)
#define CYTHON_INLINE __inline__
#elif defined(_MSC_VER)
#define CYTHON_INLINE __inline
#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
#define CYTHON_INLINE inline
#else
#define CYTHON_INLINE
#endif
#endif
/* unused attribute */
#ifndef CYTHON_UNUSED
# if defined(__GNUC__)
# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
# define CYTHON_UNUSED __attribute__ ((__unused__))
# else
# define CYTHON_UNUSED
# endif
# elif defined(__ICC) || defined(__INTEL_COMPILER)
# define CYTHON_UNUSED __attribute__ ((__unused__))
# else
# define CYTHON_UNUSED
# endif
#endif
typedef struct {PyObject **p; char *s; const long n; const char* encoding; const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry; /*proto*/
/* Type Conversion Predeclarations */
#define __Pyx_PyBytes_FromUString(s) PyBytes_FromString((char*)s)
#define __Pyx_PyBytes_AsUString(s) ((unsigned char*) PyBytes_AsString(s))
#define __Pyx_PyBool_FromLong(b) ((b) ? (Py_INCREF(Py_True), Py_True) : (Py_INCREF(Py_False), Py_False))
static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*);
static CYTHON_INLINE PyObject* __Pyx_PyNumber_Int(PyObject* x);
static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*);
static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t);
static CYTHON_INLINE size_t __Pyx_PyInt_AsSize_t(PyObject*);
#define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x))
#ifdef __GNUC__
/* Test for GCC > 2.95 */
#if __GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95))
#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
#else /* __GNUC__ > 2 ... */
#define likely(x) (x)
#define unlikely(x) (x)
#endif /* __GNUC__ > 2 ... */
#else /* __GNUC__ */
#define likely(x) (x)
#define unlikely(x) (x)
#endif /* __GNUC__ */
static PyObject *__pyx_m;
static PyObject *__pyx_b;
static PyObject *__pyx_empty_tuple;
static PyObject *__pyx_empty_bytes;
static int __pyx_lineno;
static int __pyx_clineno = 0;
static const char * __pyx_cfilenm= __FILE__;
static const char *__pyx_filename;
#if !defined(CYTHON_CCOMPLEX)
#if defined(__cplusplus)
#define CYTHON_CCOMPLEX 1
#elif defined(_Complex_I)
#define CYTHON_CCOMPLEX 1
#else
#define CYTHON_CCOMPLEX 0
#endif
#endif
#if CYTHON_CCOMPLEX
#ifdef __cplusplus
#include <complex>
#else
#include <complex.h>
#endif
#endif
#if CYTHON_CCOMPLEX && !defined(__cplusplus) && defined(__sun__) && defined(__GNUC__)
#undef _Complex_I
#define _Complex_I 1.0fj
#endif
static const char *__pyx_f[] = {
"ball_tree.pyx",
"numpy.pxd",
};
typedef npy_int8 __pyx_t_5numpy_int8_t;
typedef npy_int16 __pyx_t_5numpy_int16_t;
typedef npy_int32 __pyx_t_5numpy_int32_t;
typedef npy_int64 __pyx_t_5numpy_int64_t;
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
typedef npy_float32 __pyx_t_5numpy_float32_t;
typedef npy_float64 __pyx_t_5numpy_float64_t;
typedef npy_long __pyx_t_5numpy_int_t;
typedef npy_longlong __pyx_t_5numpy_long_t;
typedef npy_intp __pyx_t_5numpy_intp_t;
typedef npy_uintp __pyx_t_5numpy_uintp_t;
typedef npy_ulong __pyx_t_5numpy_uint_t;
typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
typedef npy_double __pyx_t_5numpy_float_t;
typedef npy_double __pyx_t_5numpy_double_t;
typedef npy_longdouble __pyx_t_5numpy_longdouble_t;
typedef __pyx_t_5numpy_float64_t __pyx_t_7sklearn_9ball_tree_DTYPE_t;
typedef __pyx_t_5numpy_int32_t __pyx_t_7sklearn_9ball_tree_ITYPE_t;
#if CYTHON_CCOMPLEX
#ifdef __cplusplus
typedef ::std::complex< float > __pyx_t_float_complex;
#else
typedef float _Complex __pyx_t_float_complex;
#endif
#else
typedef struct { float real, imag; } __pyx_t_float_complex;
#endif
#if CYTHON_CCOMPLEX
#ifdef __cplusplus
typedef ::std::complex< double > __pyx_t_double_complex;
#else
typedef double _Complex __pyx_t_double_complex;
#endif
#else
typedef struct { double real, imag; } __pyx_t_double_complex;
#endif
/* Type declarations */
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
typedef npy_cdouble __pyx_t_5numpy_complex_t;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":323
* # array for efficiency. This is a hybrid of the "Array of Structures"
* # and "Structure of Arrays" styles.
* cdef struct NodeInfo: # <<<<<<<<<<<<<<
* ITYPE_t idx_start
* ITYPE_t idx_end
*/
struct __pyx_t_7sklearn_9ball_tree_NodeInfo {
__pyx_t_7sklearn_9ball_tree_ITYPE_t idx_start;
__pyx_t_7sklearn_9ball_tree_ITYPE_t idx_end;
__pyx_t_7sklearn_9ball_tree_ITYPE_t is_leaf;
__pyx_t_7sklearn_9ball_tree_DTYPE_t radius;
};
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":333
* # stack struct
* # This is used to keep track of the recursion stack in Node_query
* cdef struct stack_item: # <<<<<<<<<<<<<<
* ITYPE_t i_node
* DTYPE_t dist_p_LB
*/
struct __pyx_t_7sklearn_9ball_tree_stack_item {
__pyx_t_7sklearn_9ball_tree_ITYPE_t i_node;
__pyx_t_7sklearn_9ball_tree_DTYPE_t dist_p_LB;
};
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":338
*
*
* cdef struct stack: # <<<<<<<<<<<<<<
* int n
* stack_item* heap
*/
struct __pyx_t_7sklearn_9ball_tree_stack {
int n;
struct __pyx_t_7sklearn_9ball_tree_stack_item *heap;
int size;
};
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":395
* # BallTree class
* #
* cdef class BallTree(object): # <<<<<<<<<<<<<<
* """
* Ball Tree for fast nearest-neighbor searches :
*/
struct __pyx_obj_7sklearn_9ball_tree_BallTree {
PyObject_HEAD
struct __pyx_vtabstruct_7sklearn_9ball_tree_BallTree *__pyx_vtab;
PyArrayObject *data;
PyArrayObject *idx_array;
PyArrayObject *node_centroid_arr;
PyArrayObject *node_info_arr;
__pyx_t_7sklearn_9ball_tree_DTYPE_t p;
__pyx_t_7sklearn_9ball_tree_ITYPE_t leaf_size;
__pyx_t_7sklearn_9ball_tree_ITYPE_t n_levels;
__pyx_t_7sklearn_9ball_tree_ITYPE_t n_nodes;
};
struct __pyx_vtabstruct_7sklearn_9ball_tree_BallTree {
void (*build_tree_)(struct __pyx_obj_7sklearn_9ball_tree_BallTree *);
void (*query_one_)(struct __pyx_obj_7sklearn_9ball_tree_BallTree *, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t *, struct __pyx_t_7sklearn_9ball_tree_stack *, __pyx_t_7sklearn_9ball_tree_ITYPE_t);
__pyx_t_7sklearn_9ball_tree_ITYPE_t (*query_radius_count_)(struct __pyx_obj_7sklearn_9ball_tree_BallTree *, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_DTYPE_t, struct __pyx_t_7sklearn_9ball_tree_stack *);
__pyx_t_7sklearn_9ball_tree_ITYPE_t (*query_radius_idx_only_)(struct __pyx_obj_7sklearn_9ball_tree_BallTree *, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_DTYPE_t, __pyx_t_7sklearn_9ball_tree_ITYPE_t *, struct __pyx_t_7sklearn_9ball_tree_stack *);
__pyx_t_7sklearn_9ball_tree_ITYPE_t (*query_radius_distances_)(struct __pyx_obj_7sklearn_9ball_tree_BallTree *, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_DTYPE_t, __pyx_t_7sklearn_9ball_tree_ITYPE_t *, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, struct __pyx_t_7sklearn_9ball_tree_stack *);
};
static struct __pyx_vtabstruct_7sklearn_9ball_tree_BallTree *__pyx_vtabptr_7sklearn_9ball_tree_BallTree;
#ifndef CYTHON_REFNANNY
#define CYTHON_REFNANNY 0
#endif
#if CYTHON_REFNANNY
typedef struct {
void (*INCREF)(void*, PyObject*, int);
void (*DECREF)(void*, PyObject*, int);
void (*GOTREF)(void*, PyObject*, int);
void (*GIVEREF)(void*, PyObject*, int);
void* (*SetupContext)(const char*, int, const char*);
void (*FinishContext)(void**);
} __Pyx_RefNannyAPIStruct;
static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL;
static __Pyx_RefNannyAPIStruct * __Pyx_RefNannyImportAPI(const char *modname) {
PyObject *m = NULL, *p = NULL;
void *r = NULL;
m = PyImport_ImportModule((char *)modname);
if (!m) goto end;
p = PyObject_GetAttrString(m, (char *)"RefNannyAPI");
if (!p) goto end;
r = PyLong_AsVoidPtr(p);
end:
Py_XDECREF(p);
Py_XDECREF(m);
return (__Pyx_RefNannyAPIStruct *)r;
}
#define __Pyx_RefNannySetupContext(name) void *__pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__)
#define __Pyx_RefNannyFinishContext() __Pyx_RefNanny->FinishContext(&__pyx_refnanny)
#define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), __LINE__)
#define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), __LINE__)
#define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), __LINE__)
#define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), __LINE__)
#define __Pyx_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r);} } while(0)
#else
#define __Pyx_RefNannySetupContext(name)
#define __Pyx_RefNannyFinishContext()
#define __Pyx_INCREF(r) Py_INCREF(r)
#define __Pyx_DECREF(r) Py_DECREF(r)
#define __Pyx_GOTREF(r)
#define __Pyx_GIVEREF(r)
#define __Pyx_XDECREF(r) Py_XDECREF(r)
#endif /* CYTHON_REFNANNY */
#define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);} } while(0)
#define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r);} } while(0)
static PyObject *__Pyx_GetName(PyObject *dict, PyObject *name); /*proto*/
static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact,
Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); /*proto*/
static CYTHON_INLINE int __Pyx_CheckKeywordStrings(PyObject *kwdict,
const char* function_name, int kw_allowed); /*proto*/
static CYTHON_INLINE int __Pyx_TypeTest(PyObject *obj, PyTypeObject *type); /*proto*/
static void __Pyx_RaiseDoubleKeywordsError(
const char* func_name, PyObject* kw_name); /*proto*/
static int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[], PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args, const char* function_name); /*proto*/
static CYTHON_INLINE long __Pyx_div_long(long, long); /* proto */
#define UNARY_NEG_WOULD_OVERFLOW(x) (((x) < 0) & ((unsigned long)(x) == 0-(unsigned long)(x)))
static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j) {
PyObject *r;
if (!j) return NULL;
r = PyObject_GetItem(o, j);
Py_DECREF(j);
return r;
}
#define __Pyx_GetItemInt_List(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \
__Pyx_GetItemInt_List_Fast(o, i) : \
__Pyx_GetItemInt_Generic(o, to_py_func(i)))
static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i) {
if (likely(o != Py_None)) {
if (likely((0 <= i) & (i < PyList_GET_SIZE(o)))) {
PyObject *r = PyList_GET_ITEM(o, i);
Py_INCREF(r);
return r;
}
else if ((-PyList_GET_SIZE(o) <= i) & (i < 0)) {
PyObject *r = PyList_GET_ITEM(o, PyList_GET_SIZE(o) + i);
Py_INCREF(r);
return r;
}
}
return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i));
}
#define __Pyx_GetItemInt_Tuple(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \
__Pyx_GetItemInt_Tuple_Fast(o, i) : \
__Pyx_GetItemInt_Generic(o, to_py_func(i)))
static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i) {
if (likely(o != Py_None)) {
if (likely((0 <= i) & (i < PyTuple_GET_SIZE(o)))) {
PyObject *r = PyTuple_GET_ITEM(o, i);
Py_INCREF(r);
return r;
}
else if ((-PyTuple_GET_SIZE(o) <= i) & (i < 0)) {
PyObject *r = PyTuple_GET_ITEM(o, PyTuple_GET_SIZE(o) + i);
Py_INCREF(r);
return r;
}
}
return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i));
}
#define __Pyx_GetItemInt(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \
__Pyx_GetItemInt_Fast(o, i) : \
__Pyx_GetItemInt_Generic(o, to_py_func(i)))
static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i) {
PyObject *r;
if (PyList_CheckExact(o) && ((0 <= i) & (i < PyList_GET_SIZE(o)))) {
r = PyList_GET_ITEM(o, i);
Py_INCREF(r);
}
else if (PyTuple_CheckExact(o) && ((0 <= i) & (i < PyTuple_GET_SIZE(o)))) {
r = PyTuple_GET_ITEM(o, i);
Py_INCREF(r);
}
else if (Py_TYPE(o)->tp_as_sequence && Py_TYPE(o)->tp_as_sequence->sq_item && (likely(i >= 0))) {
r = PySequence_GetItem(o, i);
}
else {
r = __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i));
}
return r;
}
static CYTHON_INLINE void __Pyx_RaiseNoneNotIterableError(void);
static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index);
static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected);
static void __Pyx_UnpackTupleError(PyObject *, Py_ssize_t index); /*proto*/
static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list); /*proto*/
static CYTHON_INLINE void __Pyx_ErrRestore(PyObject *type, PyObject *value, PyObject *tb); /*proto*/
static CYTHON_INLINE void __Pyx_ErrFetch(PyObject **type, PyObject **value, PyObject **tb); /*proto*/
static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb); /*proto*/
static CYTHON_INLINE npy_int32 __Pyx_PyInt_from_py_npy_int32(PyObject *);
static CYTHON_INLINE long __Pyx_pow_long(long, long); /* proto */
static CYTHON_INLINE PyObject *__Pyx_PyInt_to_py_npy_int32(npy_int32);
static CYTHON_INLINE PyObject *__Pyx_PyInt_to_py_Py_intptr_t(Py_intptr_t);
#if CYTHON_CCOMPLEX
#ifdef __cplusplus
#define __Pyx_CREAL(z) ((z).real())
#define __Pyx_CIMAG(z) ((z).imag())
#else
#define __Pyx_CREAL(z) (__real__(z))
#define __Pyx_CIMAG(z) (__imag__(z))
#endif
#else
#define __Pyx_CREAL(z) ((z).real)
#define __Pyx_CIMAG(z) ((z).imag)
#endif
#if defined(_WIN32) && defined(__cplusplus) && CYTHON_CCOMPLEX
#define __Pyx_SET_CREAL(z,x) ((z).real(x))
#define __Pyx_SET_CIMAG(z,y) ((z).imag(y))
#else
#define __Pyx_SET_CREAL(z,x) __Pyx_CREAL(z) = (x)
#define __Pyx_SET_CIMAG(z,y) __Pyx_CIMAG(z) = (y)
#endif
static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float, float);
#if CYTHON_CCOMPLEX
#define __Pyx_c_eqf(a, b) ((a)==(b))
#define __Pyx_c_sumf(a, b) ((a)+(b))
#define __Pyx_c_difff(a, b) ((a)-(b))
#define __Pyx_c_prodf(a, b) ((a)*(b))
#define __Pyx_c_quotf(a, b) ((a)/(b))
#define __Pyx_c_negf(a) (-(a))
#ifdef __cplusplus
#define __Pyx_c_is_zerof(z) ((z)==(float)0)
#define __Pyx_c_conjf(z) (::std::conj(z))
/*#define __Pyx_c_absf(z) (::std::abs(z))*/
#else
#define __Pyx_c_is_zerof(z) ((z)==0)
#define __Pyx_c_conjf(z) (conjf(z))
/*#define __Pyx_c_absf(z) (cabsf(z))*/
#endif
#else
static CYTHON_INLINE int __Pyx_c_eqf(__pyx_t_float_complex, __pyx_t_float_complex);
static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_sumf(__pyx_t_float_complex, __pyx_t_float_complex);
static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_difff(__pyx_t_float_complex, __pyx_t_float_complex);
static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_prodf(__pyx_t_float_complex, __pyx_t_float_complex);
static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_quotf(__pyx_t_float_complex, __pyx_t_float_complex);
static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_negf(__pyx_t_float_complex);
static CYTHON_INLINE int __Pyx_c_is_zerof(__pyx_t_float_complex);
static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_conjf(__pyx_t_float_complex);
/*static CYTHON_INLINE float __Pyx_c_absf(__pyx_t_float_complex);*/
#endif
static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double, double);
#if CYTHON_CCOMPLEX
#define __Pyx_c_eq(a, b) ((a)==(b))
#define __Pyx_c_sum(a, b) ((a)+(b))
#define __Pyx_c_diff(a, b) ((a)-(b))
#define __Pyx_c_prod(a, b) ((a)*(b))
#define __Pyx_c_quot(a, b) ((a)/(b))
#define __Pyx_c_neg(a) (-(a))
#ifdef __cplusplus
#define __Pyx_c_is_zero(z) ((z)==(double)0)
#define __Pyx_c_conj(z) (::std::conj(z))
/*#define __Pyx_c_abs(z) (::std::abs(z))*/
#else
#define __Pyx_c_is_zero(z) ((z)==0)
#define __Pyx_c_conj(z) (conj(z))
/*#define __Pyx_c_abs(z) (cabs(z))*/
#endif
#else
static CYTHON_INLINE int __Pyx_c_eq(__pyx_t_double_complex, __pyx_t_double_complex);
static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_sum(__pyx_t_double_complex, __pyx_t_double_complex);
static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_diff(__pyx_t_double_complex, __pyx_t_double_complex);
static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_prod(__pyx_t_double_complex, __pyx_t_double_complex);
static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_quot(__pyx_t_double_complex, __pyx_t_double_complex);
static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_neg(__pyx_t_double_complex);
static CYTHON_INLINE int __Pyx_c_is_zero(__pyx_t_double_complex);
static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_conj(__pyx_t_double_complex);
/*static CYTHON_INLINE double __Pyx_c_abs(__pyx_t_double_complex);*/
#endif
static CYTHON_INLINE unsigned char __Pyx_PyInt_AsUnsignedChar(PyObject *);
static CYTHON_INLINE unsigned short __Pyx_PyInt_AsUnsignedShort(PyObject *);
static CYTHON_INLINE unsigned int __Pyx_PyInt_AsUnsignedInt(PyObject *);
static CYTHON_INLINE char __Pyx_PyInt_AsChar(PyObject *);
static CYTHON_INLINE short __Pyx_PyInt_AsShort(PyObject *);
static CYTHON_INLINE int __Pyx_PyInt_AsInt(PyObject *);
static CYTHON_INLINE signed char __Pyx_PyInt_AsSignedChar(PyObject *);
static CYTHON_INLINE signed short __Pyx_PyInt_AsSignedShort(PyObject *);
static CYTHON_INLINE signed int __Pyx_PyInt_AsSignedInt(PyObject *);
static CYTHON_INLINE int __Pyx_PyInt_AsLongDouble(PyObject *);
static CYTHON_INLINE unsigned long __Pyx_PyInt_AsUnsignedLong(PyObject *);
static CYTHON_INLINE unsigned PY_LONG_LONG __Pyx_PyInt_AsUnsignedLongLong(PyObject *);
static CYTHON_INLINE long __Pyx_PyInt_AsLong(PyObject *);
static CYTHON_INLINE PY_LONG_LONG __Pyx_PyInt_AsLongLong(PyObject *);
static CYTHON_INLINE signed long __Pyx_PyInt_AsSignedLong(PyObject *);
static CYTHON_INLINE signed PY_LONG_LONG __Pyx_PyInt_AsSignedLongLong(PyObject *);
static void __Pyx_WriteUnraisable(const char *name); /*proto*/
static int __Pyx_SetVtable(PyObject *dict, void *vtable); /*proto*/
static PyTypeObject *__Pyx_ImportType(const char *module_name, const char *class_name, long size, int strict); /*proto*/
static PyObject *__Pyx_ImportModule(const char *name); /*proto*/
static void __Pyx_AddTraceback(const char *funcname); /*proto*/
static int __Pyx_InitStrings(__Pyx_StringTabEntry *t); /*proto*/
/* Module declarations from cpython.buffer */
/* Module declarations from cpython.ref */
/* Module declarations from libc.stdio */
/* Module declarations from cpython.object */
/* Module declarations from libc.stdlib */
/* Module declarations from numpy */
/* Module declarations from numpy */
static PyTypeObject *__pyx_ptype_5numpy_dtype = 0;
static PyTypeObject *__pyx_ptype_5numpy_flatiter = 0;
static PyTypeObject *__pyx_ptype_5numpy_broadcast = 0;
static PyTypeObject *__pyx_ptype_5numpy_ndarray = 0;
static PyTypeObject *__pyx_ptype_5numpy_ufunc = 0;
static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *); /*proto*/
static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *, PyObject *); /*proto*/
static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *, PyObject *, PyObject *); /*proto*/
static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *, PyObject *, PyObject *, PyObject *); /*proto*/
static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *, PyObject *, PyObject *, PyObject *, PyObject *); /*proto*/
static CYTHON_INLINE char *__pyx_f_5numpy__util_dtypestring(PyArray_Descr *, char *, char *, int *); /*proto*/
static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *, PyObject *); /*proto*/
static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *); /*proto*/
/* Module declarations from cython */
/* Module declarations from libc */
/* Module declarations from sklearn.ball_tree */
static PyTypeObject *__pyx_ptype_7sklearn_9ball_tree_BallTree = 0;
static __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_7sklearn_9ball_tree_infinity;
static CYTHON_INLINE __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_dmax(__pyx_t_7sklearn_9ball_tree_DTYPE_t, __pyx_t_7sklearn_9ball_tree_DTYPE_t); /*proto*/
static CYTHON_INLINE __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_dmin(__pyx_t_7sklearn_9ball_tree_DTYPE_t, __pyx_t_7sklearn_9ball_tree_DTYPE_t); /*proto*/
static CYTHON_INLINE __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_dabs(__pyx_t_7sklearn_9ball_tree_DTYPE_t); /*proto*/
static __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_dist(__pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t, __pyx_t_7sklearn_9ball_tree_DTYPE_t); /*proto*/
static __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_dist_p(__pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t, __pyx_t_7sklearn_9ball_tree_DTYPE_t); /*proto*/
static __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_dist_from_dist_p(__pyx_t_7sklearn_9ball_tree_DTYPE_t, __pyx_t_7sklearn_9ball_tree_DTYPE_t); /*proto*/
static __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_dist_p_from_dist(__pyx_t_7sklearn_9ball_tree_DTYPE_t, __pyx_t_7sklearn_9ball_tree_DTYPE_t); /*proto*/
static CYTHON_INLINE void __pyx_f_7sklearn_9ball_tree_stack_create(struct __pyx_t_7sklearn_9ball_tree_stack *, int); /*proto*/
static CYTHON_INLINE void __pyx_f_7sklearn_9ball_tree_stack_destroy(struct __pyx_t_7sklearn_9ball_tree_stack *); /*proto*/
static CYTHON_INLINE void __pyx_f_7sklearn_9ball_tree_stack_resize(struct __pyx_t_7sklearn_9ball_tree_stack *, int); /*proto*/
static CYTHON_INLINE void __pyx_f_7sklearn_9ball_tree_stack_push(struct __pyx_t_7sklearn_9ball_tree_stack *, struct __pyx_t_7sklearn_9ball_tree_stack_item); /*proto*/
static CYTHON_INLINE struct __pyx_t_7sklearn_9ball_tree_stack_item __pyx_f_7sklearn_9ball_tree_stack_pop(struct __pyx_t_7sklearn_9ball_tree_stack *); /*proto*/
static CYTHON_INLINE void __pyx_f_7sklearn_9ball_tree_copy_array(__pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t); /*proto*/
static void __pyx_f_7sklearn_9ball_tree_compute_centroid(__pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t, __pyx_t_7sklearn_9ball_tree_ITYPE_t); /*proto*/
static __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_f_7sklearn_9ball_tree_find_split_dim(__pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t, __pyx_t_7sklearn_9ball_tree_ITYPE_t); /*proto*/
static CYTHON_INLINE void __pyx_f_7sklearn_9ball_tree_iswap(__pyx_t_7sklearn_9ball_tree_ITYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t, __pyx_t_7sklearn_9ball_tree_ITYPE_t); /*proto*/
static CYTHON_INLINE void __pyx_f_7sklearn_9ball_tree_dswap(__pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t, __pyx_t_7sklearn_9ball_tree_ITYPE_t); /*proto*/
static void __pyx_f_7sklearn_9ball_tree_partition_indices(__pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t, __pyx_t_7sklearn_9ball_tree_ITYPE_t, __pyx_t_7sklearn_9ball_tree_ITYPE_t, __pyx_t_7sklearn_9ball_tree_ITYPE_t); /*proto*/
static CYTHON_INLINE __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_calc_dist_LB(__pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_DTYPE_t, __pyx_t_7sklearn_9ball_tree_ITYPE_t, __pyx_t_7sklearn_9ball_tree_DTYPE_t); /*proto*/
static CYTHON_INLINE __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_calc_dist_p_LB(__pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_DTYPE_t, __pyx_t_7sklearn_9ball_tree_ITYPE_t, __pyx_t_7sklearn_9ball_tree_DTYPE_t); /*proto*/
static CYTHON_INLINE __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_pqueue_largest(__pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t); /*proto*/
static CYTHON_INLINE void __pyx_f_7sklearn_9ball_tree_pqueue_insert(__pyx_t_7sklearn_9ball_tree_DTYPE_t, __pyx_t_7sklearn_9ball_tree_ITYPE_t, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t); /*proto*/
static CYTHON_INLINE __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_max_heap_largest(__pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t); /*proto*/
static void __pyx_f_7sklearn_9ball_tree_max_heap_insert(__pyx_t_7sklearn_9ball_tree_DTYPE_t, __pyx_t_7sklearn_9ball_tree_ITYPE_t, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t); /*proto*/
static void __pyx_f_7sklearn_9ball_tree_sort_dist_idx(__pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t); /*proto*/
static __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_f_7sklearn_9ball_tree_partition_dist_idx(__pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t); /*proto*/
#define __Pyx_MODULE_NAME "sklearn.ball_tree"
int __pyx_module_is_main_sklearn__ball_tree = 0;
/* Implementation of sklearn.ball_tree */
static PyObject *__pyx_builtin_ValueError;
static PyObject *__pyx_builtin_enumerate;
static PyObject *__pyx_builtin_range;
static PyObject *__pyx_builtin_RuntimeError;
static char __pyx_k_1[] = "new_size smaller than current";
static char __pyx_k_2[] = "popping empty stack";
static char __pyx_k_3[] = "X is an empty array";
static char __pyx_k_4[] = "X should have two dimensions";
static char __pyx_k_5[] = "p must be greater than or equal to 1";
static char __pyx_k_6[] = "leaf_size must be greater than or equal to 1";
static char __pyx_k_8[] = "query data dimension must match BallTree data dimension";
static char __pyx_k_9[] = "k must be less than or equal to the number of training points";
static char __pyx_k_13[] = "count_only and return_distance cannot both be true";
static char __pyx_k_14[] = "return_distance must be True if sort_distances is True";
static char __pyx_k_15[] = "r must be broadcastable to X.shape";
static char __pyx_k_16[] = "query_radius_idx_only_";
static char __pyx_k_17[] = "query_radius_distances_";
static char __pyx_k_18[] = "Fatal: parent is a leaf. Memory allocation is flawed";
static char __pyx_k_19[] = "zero-sized node";
static char __pyx_k_20[] = "ndarray is not C contiguous";
static char __pyx_k_21[] = "ndarray is not Fortran contiguous";
static char __pyx_k_22[] = "Non-native byte order not supported";
static char __pyx_k_23[] = "unknown dtype code in numpy.pxd (%d)";
static char __pyx_k_24[] = "Format string allocated too short, see comment in numpy.pxd";
static char __pyx_k_25[] = "Format string allocated too short.";
static char __pyx_k_26[] = "\n=========\nBall Tree\n=========\nA ball tree is a data object which speeds up nearest neighbor\nsearches in high dimensions (see scikit-learn neighbors module\ndocumentation for an overview of neighbor trees). There are many\ntypes of ball trees. This package provides a basic implementation\nin cython.\n\nImplementation Notes\n--------------------\n\nA ball tree can be thought of as a collection of nodes. Each node\nstores a centroid, a radius, and the pointers to two child nodes.\n\n* centroid : the centroid of a node is the mean of all the locations\n of points within the node\n* radius : the radius of a node is the distance from the centroid\n to the furthest point in the node.\n* subnodes : each node has a maximum of 2 child nodes. The data within\n the parent node is divided between the two child nodes.\n\nIn a typical tree implementation, nodes may be classes or structures which\nare dynamically allocated as needed. This offers flexibility in the number\nof nodes, and leads to very straightforward and readable code. It also means\nthat the tree can be dynamically augmented or pruned with new data, in an\nin-line fashion. This approach generally leads to recursive code: upon\nconstruction, the head node constructs its child nodes, the child nodes\nconstruct their child nodes, and so-on.\n\nThe current package uses a different approach: all node data is stored in\na set of numpy arrays which are pre-allocated. The main advantage of this\napproach is that the whole object can be quickly and easily saved to disk\nand reconstructed from disk. This also allows for an iterative interface\nwhich gives more control over the heap, and leads to speed. There are a\nfew disadvantages, however: once the tree is built, augmenting or pruning it\nis not as straightforward. Also, the size of the tree must be known from the\nstart, so there is not as much flexibility in building it.\n\nBallTree Pseudo-code\n~~~~~~~~~~~~~~~~~~~~\nBecause understanding a ball ""tree is simpler with recursive code, here is some\npseudo-code to show the structure of the main functionality\n\n # Ball Tree pseudo code\n\n class Node:\n #class data:\n centroid\n radius\n child1, child2\n\n #class methods:\n def construct(data):\n centroid = compute_centroid(data)\n radius = compute_radius(centroid, data)\n\n # Divide the data into two approximately equal sets.\n # This is often done by splitting along a single dimension.\n data1, data2 = divide(data)\n\n if number_of_points(data1) > 0:\n child1.construct(data1)\n\n if number_of_points(data2) > 0:\n child2.construct(data2)\n\n def query(pt, neighbors_heap):\n # compute the minimum distance from pt to any point in this node\n d = distance(point, centroid)\n if d < radius:\n min_distance = 0\n else:\n min_distance = d - radius\n\n if min_distance > max_distance_in(neighbors_heap):\n # all these points are too far away. cut off the search here\n return\n elif node_size > 1:\n child1.query(pt, neighbors_heap)\n child2.query(pt, neighbors_heap)\n\n\n object BallTree:\n #class data:\n data\n root_node\n\n #class methods\n def construct(data, num_leaves):\n root_node.construct(data)\n\n def query(point, num_neighbors):\n neighbors_heap = empty_heap_of_size(num_neighbors)\n root_node.query(point, neighbors_heap)\n\nThis certainly is not a complete description, but should give the basic idea\nof the form of the algorithm. The implementation below is much faster than\nanything mirroring the pseudo-code above, but for that reason is much more\nopaque. Here's the basic idea:\n\nBallTree Storage\n~~~~~~~~~~~~~~~~\nTh""e BallTree information is stored using a combination of\n\"Array of Structures\" and \"Structure of Arrays\" to maximize speed.\nGiven input data of size ``(n_samples, n_features)``, BallTree computes the\nexpected number of nodes ``n_nodes`` (see below), and allocates the\nfollowing arrays:\n\n* ``data`` : a float array of shape ``(n_samples, n_features)``\n This is simply the input data. If the input matrix is well-formed\n (contiguous, c-ordered, correct data type) then no copy is needed\n* ``idx_array`` : an integer array of size ``n_samples``\n This can be thought of as an array of pointers to the data in ``data``.\n Rather than shuffling around the data itself, we shuffle around pointers\n to the rows in data.\n* ``node_centroid_arr`` : a float array of shape ``(n_nodes, n_features)``\n This stores the centroid of the data in each node.\n* ``node_info_arr`` : a size-``n_nodes`` array of ``NodeInfo`` structures.\n This stores information associated with each node. Each ``NodeInfo``\n instance has the following attributes:\n - ``idx_start``\n - ``idx_end`` : ``idx_start`` and ``idx_end`` reference the part of\n ``idx_array`` which point to the data associated with the node.\n The data in node with index ``i_node`` is given by\n ``data[idx_array[idx_start:idx_end]]``\n - ``is_leaf`` : a boolean value which tells whether this node is a leaf:\n that is, whether or not it has children.\n - ``radius`` : a floating-point value which gives the distance from\n the node centroid to the furthest point in the node.\n\nOne feature here is that there are no stored pointers from parent nodes to\nchild nodes and vice-versa. These pointers are implemented implicitly:\nFor a node with index ``i``, the two children are found at indices\n``2 * i + 1`` and ``2 * i + 2``, while the parent is found at index\n``floor((i - 1) / 2)``. The root node has no parent.\n\nWith this data structure in place, the functionality of t""he above BallTree\npseudo-code can be implemented in a much more efficient manner.\nMost of the data passing done in this code uses raw data pointers.\nUsing numpy arrays would be preferable for safety, but the\noverhead of array slicing and sub-array construction leads to execution\ntime which is several orders of magnitude slower than the current\nimplementation.\n\nPriority Queue vs Max-heap\n~~~~~~~~~~~~~~~~~~~~~~~~~~\nWhen querying for more than one neighbor, the code must maintain a list of\nthe current k nearest points. The BallTree code implements this in two ways.\n\n- A priority queue: this is just a sorted list. When an item is added,\n it is inserted in the appropriate location. The cost of the search plus\n insert averages O[k].\n- A max-heap: this is a binary tree structure arranged such that each node is\n greater than its children. The cost of adding an item is O[log(k)].\n At the end of the iterations, the results must be sorted: a quicksort is\n used, which averages O[k log(k)]. Quicksort has worst-case O[k^2]\n performance, but because the input is already structured in a max-heap,\n the worst case will not be realized. Thus the sort is a one-time operation\n with cost O[k log(k)].\n\nEach insert is performed an average of log(N) times per query, where N is\nthe number of training points. Because of this, for a single query, the\npriority-queue approach costs O[k log(N)], and the max-heap approach costs\nO[log(k)log(N)] + O[k log(k)]. Tests show that for sufficiently large k,\nthe max-heap approach out-performs the priority queue approach by a factor\nof a few. In light of these tests, the code uses a priority queue for\nk < 5, and a max-heap otherwise.\n\nMemory Allocation\n~~~~~~~~~~~~~~~~~\nIt is desirable to construct a tree in as balanced a way as possible.\nGiven a training set with n_samples and a user-supplied leaf_size, if\nthe points in each node are divided as evenly as possible between the\ntwo children, the maximum de""pth needed so that leaf nodes satisfy\n``leaf_size <= n_points <= 2 * leaf_size`` is given by\n``n_levels = 1 + max(0, floor(log2((n_samples - 1) / leaf_size)))``\n(with the exception of the special case where ``n_samples < leaf_size``)\nFor a given number of levels, the number of points in a tree is given by\n``n_nodes = 2 ** n_levels - 1``. Both of these results can be shown\nby induction. Using them, the correct amount of memory can be pre-allocated\nfor a given ``n_samples`` and ``leaf_size``.\n";
static char __pyx_k_27[] = "BallTree.__reduce__ (line 512)";
static char __pyx_k_28[] = "BallTree.__getstate__ (line 518)";
static char __pyx_k_29[] = "BallTree.__setstate__ (line 531)";
static char __pyx_k_30[] = "BallTree.query (line 544)";
static char __pyx_k_31[] = "BallTree.query_radius (line 644)";
static char __pyx_k__B[] = "B";
static char __pyx_k__C[] = "C";
static char __pyx_k__H[] = "H";
static char __pyx_k__I[] = "I";
static char __pyx_k__L[] = "L";
static char __pyx_k__O[] = "O";
static char __pyx_k__Q[] = "Q";
static char __pyx_k__X[] = "X";
static char __pyx_k__b[] = "b";
static char __pyx_k__c[] = "c";
static char __pyx_k__d[] = "d";
static char __pyx_k__f[] = "f";
static char __pyx_k__g[] = "g";
static char __pyx_k__h[] = "h";
static char __pyx_k__i[] = "i";
static char __pyx_k__k[] = "k";
static char __pyx_k__l[] = "l";
static char __pyx_k__n[] = "n";
static char __pyx_k__p[] = "p";
static char __pyx_k__q[] = "q";
static char __pyx_k__r[] = "r";
static char __pyx_k__Zd[] = "Zd";
static char __pyx_k__Zf[] = "Zf";
static char __pyx_k__Zg[] = "Zg";
static char __pyx_k__np[] = "np";
static char __pyx_k__buf[] = "buf";
static char __pyx_k__inf[] = "inf";
static char __pyx_k__obj[] = "obj";
static char __pyx_k__base[] = "base";
static char __pyx_k__copy[] = "copy";
static char __pyx_k__data[] = "data";
static char __pyx_k__heap[] = "heap";
static char __pyx_k__log2[] = "log2";
static char __pyx_k__ndim[] = "ndim";
static char __pyx_k__ones[] = "ones";
static char __pyx_k__size[] = "size";
static char __pyx_k__DTYPE[] = "DTYPE";
static char __pyx_k__ITYPE[] = "ITYPE";
static char __pyx_k__descr[] = "descr";
static char __pyx_k__dtype[] = "dtype";
static char __pyx_k__empty[] = "empty";
static char __pyx_k__int32[] = "int32";
static char __pyx_k__names[] = "names";
static char __pyx_k__numpy[] = "numpy";
static char __pyx_k__order[] = "order";
static char __pyx_k__query[] = "query";
static char __pyx_k__range[] = "range";
static char __pyx_k__shape[] = "shape";
static char __pyx_k__zeros[] = "zeros";
static char __pyx_k__arange[] = "arange";
static char __pyx_k__double[] = "double";
static char __pyx_k__fields[] = "fields";
static char __pyx_k__format[] = "format";
static char __pyx_k__i_node[] = "i_node";
static char __pyx_k__newObj[] = "newObj";
static char __pyx_k__object[] = "object";
static char __pyx_k__radius[] = "radius";
static char __pyx_k____new__[] = "__new__";
static char __pyx_k__asarray[] = "asarray";
static char __pyx_k__float64[] = "float64";
static char __pyx_k__idx_end[] = "idx_end";
static char __pyx_k__is_leaf[] = "is_leaf";
static char __pyx_k__n_nodes[] = "n_nodes";
static char __pyx_k__reshape[] = "reshape";
static char __pyx_k__strides[] = "strides";
static char __pyx_k__BallTree[] = "BallTree";
static char __pyx_k____main__[] = "__main__";
static char __pyx_k____test__[] = "__test__";
static char __pyx_k__itemsize[] = "itemsize";
static char __pyx_k__n_levels[] = "n_levels";
static char __pyx_k__readonly[] = "readonly";
static char __pyx_k__type_num[] = "type_num";
static char __pyx_k__byteorder[] = "byteorder";
static char __pyx_k__dist_p_LB[] = "dist_p_LB";
static char __pyx_k__enumerate[] = "enumerate";
static char __pyx_k__idx_array[] = "idx_array";
static char __pyx_k__idx_start[] = "idx_start";
static char __pyx_k__leaf_size[] = "leaf_size";
static char __pyx_k__ValueError[] = "ValueError";
static char __pyx_k____reduce__[] = "__reduce__";
static char __pyx_k__atleast_1d[] = "atleast_1d";
static char __pyx_k__atleast_2d[] = "atleast_2d";
static char __pyx_k__count_only[] = "count_only";
static char __pyx_k__query_one_[] = "query_one_";
static char __pyx_k__suboffsets[] = "suboffsets";
static char __pyx_k__build_tree_[] = "build_tree_";
static char __pyx_k__RuntimeError[] = "RuntimeError";
static char __pyx_k____getstate__[] = "__getstate__";
static char __pyx_k____setstate__[] = "__setstate__";
static char __pyx_k__query_radius[] = "query_radius";
static char __pyx_k__sort_results[] = "sort_results";
static char __pyx_k__node_info_arr[] = "node_info_arr";
static char __pyx_k__return_distance[] = "return_distance";
static char __pyx_k__node_centroid_arr[] = "node_centroid_arr";
static char __pyx_k__query_radius_count_[] = "query_radius_count_";
static PyObject *__pyx_kp_s_1;
static PyObject *__pyx_kp_s_13;
static PyObject *__pyx_kp_s_14;
static PyObject *__pyx_kp_s_15;
static PyObject *__pyx_n_s_16;
static PyObject *__pyx_n_s_17;
static PyObject *__pyx_kp_s_18;
static PyObject *__pyx_kp_s_19;
static PyObject *__pyx_kp_s_2;
static PyObject *__pyx_kp_u_20;
static PyObject *__pyx_kp_u_21;
static PyObject *__pyx_kp_u_22;
static PyObject *__pyx_kp_u_23;
static PyObject *__pyx_kp_u_24;
static PyObject *__pyx_kp_u_25;
static PyObject *__pyx_kp_u_27;
static PyObject *__pyx_kp_u_28;
static PyObject *__pyx_kp_u_29;
static PyObject *__pyx_kp_s_3;
static PyObject *__pyx_kp_u_30;
static PyObject *__pyx_kp_u_31;
static PyObject *__pyx_kp_s_4;
static PyObject *__pyx_kp_s_5;
static PyObject *__pyx_kp_s_6;
static PyObject *__pyx_kp_s_8;
static PyObject *__pyx_kp_s_9;
static PyObject *__pyx_n_s__BallTree;
static PyObject *__pyx_n_s__C;
static PyObject *__pyx_n_s__DTYPE;
static PyObject *__pyx_n_s__ITYPE;
static PyObject *__pyx_n_s__RuntimeError;
static PyObject *__pyx_n_s__ValueError;
static PyObject *__pyx_n_s__X;
static PyObject *__pyx_n_s____getstate__;
static PyObject *__pyx_n_s____main__;
static PyObject *__pyx_n_s____new__;
static PyObject *__pyx_n_s____reduce__;
static PyObject *__pyx_n_s____setstate__;
static PyObject *__pyx_n_s____test__;
static PyObject *__pyx_n_s__arange;
static PyObject *__pyx_n_s__asarray;
static PyObject *__pyx_n_s__atleast_1d;
static PyObject *__pyx_n_s__atleast_2d;
static PyObject *__pyx_n_s__base;
static PyObject *__pyx_n_s__buf;
static PyObject *__pyx_n_s__build_tree_;
static PyObject *__pyx_n_s__byteorder;
static PyObject *__pyx_n_s__c;
static PyObject *__pyx_n_s__copy;
static PyObject *__pyx_n_s__count_only;
static PyObject *__pyx_n_s__data;
static PyObject *__pyx_n_s__descr;
static PyObject *__pyx_n_s__dist_p_LB;
static PyObject *__pyx_n_s__double;
static PyObject *__pyx_n_s__dtype;
static PyObject *__pyx_n_s__empty;
static PyObject *__pyx_n_s__enumerate;
static PyObject *__pyx_n_s__fields;
static PyObject *__pyx_n_s__float64;
static PyObject *__pyx_n_s__format;
static PyObject *__pyx_n_s__heap;
static PyObject *__pyx_n_s__i_node;
static PyObject *__pyx_n_s__idx_array;
static PyObject *__pyx_n_s__idx_end;
static PyObject *__pyx_n_s__idx_start;
static PyObject *__pyx_n_s__inf;
static PyObject *__pyx_n_s__int32;
static PyObject *__pyx_n_s__is_leaf;
static PyObject *__pyx_n_s__itemsize;
static PyObject *__pyx_n_s__k;
static PyObject *__pyx_n_s__leaf_size;
static PyObject *__pyx_n_s__log2;
static PyObject *__pyx_n_s__n;
static PyObject *__pyx_n_s__n_levels;
static PyObject *__pyx_n_s__n_nodes;
static PyObject *__pyx_n_s__names;
static PyObject *__pyx_n_s__ndim;
static PyObject *__pyx_n_s__newObj;
static PyObject *__pyx_n_s__node_centroid_arr;
static PyObject *__pyx_n_s__node_info_arr;
static PyObject *__pyx_n_s__np;
static PyObject *__pyx_n_s__numpy;
static PyObject *__pyx_n_s__obj;
static PyObject *__pyx_n_s__object;
static PyObject *__pyx_n_s__ones;
static PyObject *__pyx_n_s__order;
static PyObject *__pyx_n_s__p;
static PyObject *__pyx_n_s__query;
static PyObject *__pyx_n_s__query_one_;
static PyObject *__pyx_n_s__query_radius;
static PyObject *__pyx_n_s__query_radius_count_;
static PyObject *__pyx_n_s__r;
static PyObject *__pyx_n_s__radius;
static PyObject *__pyx_n_s__range;
static PyObject *__pyx_n_s__readonly;
static PyObject *__pyx_n_s__reshape;
static PyObject *__pyx_n_s__return_distance;
static PyObject *__pyx_n_s__shape;
static PyObject *__pyx_n_s__size;
static PyObject *__pyx_n_s__sort_results;
static PyObject *__pyx_n_s__strides;
static PyObject *__pyx_n_s__suboffsets;
static PyObject *__pyx_n_s__type_num;
static PyObject *__pyx_n_s__zeros;
static PyObject *__pyx_int_0;
static PyObject *__pyx_int_1;
static PyObject *__pyx_int_5;
static PyObject *__pyx_int_neg_1;
static PyObject *__pyx_int_15;
static PyObject *__pyx_k_7;
static PyObject *__pyx_k_10;
static PyObject *__pyx_k_11;
static PyObject *__pyx_k_12;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":215
* #
* @cython.profile(False)
* cdef inline DTYPE_t dmax(DTYPE_t x, DTYPE_t y): # <<<<<<<<<<<<<<
* if x >= y:
* return x
*/
static CYTHON_INLINE __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_dmax(__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_x, __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_y) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_r;
int __pyx_t_1;
__Pyx_RefNannySetupContext("dmax");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":216
* @cython.profile(False)
* cdef inline DTYPE_t dmax(DTYPE_t x, DTYPE_t y):
* if x >= y: # <<<<<<<<<<<<<<
* return x
* else:
*/
__pyx_t_1 = (__pyx_v_x >= __pyx_v_y);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":217
* cdef inline DTYPE_t dmax(DTYPE_t x, DTYPE_t y):
* if x >= y:
* return x # <<<<<<<<<<<<<<
* else:
* return y
*/
__pyx_r = __pyx_v_x;
goto __pyx_L0;
goto __pyx_L3;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":219
* return x
* else:
* return y # <<<<<<<<<<<<<<
*
*
*/
__pyx_r = __pyx_v_y;
goto __pyx_L0;
}
__pyx_L3:;
__pyx_r = 0;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":223
*
* @cython.profile(False)
* cdef inline DTYPE_t dmin(DTYPE_t x, DTYPE_t y): # <<<<<<<<<<<<<<
* if x <= y:
* return x
*/
static CYTHON_INLINE __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_dmin(__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_x, __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_y) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_r;
int __pyx_t_1;
__Pyx_RefNannySetupContext("dmin");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":224
* @cython.profile(False)
* cdef inline DTYPE_t dmin(DTYPE_t x, DTYPE_t y):
* if x <= y: # <<<<<<<<<<<<<<
* return x
* else:
*/
__pyx_t_1 = (__pyx_v_x <= __pyx_v_y);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":225
* cdef inline DTYPE_t dmin(DTYPE_t x, DTYPE_t y):
* if x <= y:
* return x # <<<<<<<<<<<<<<
* else:
* return y
*/
__pyx_r = __pyx_v_x;
goto __pyx_L0;
goto __pyx_L3;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":227
* return x
* else:
* return y # <<<<<<<<<<<<<<
*
*
*/
__pyx_r = __pyx_v_y;
goto __pyx_L0;
}
__pyx_L3:;
__pyx_r = 0;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":231
*
* @cython.profile(False)
* cdef inline DTYPE_t dabs(DTYPE_t x): # <<<<<<<<<<<<<<
* if x >= 0:
* return x
*/
static CYTHON_INLINE __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_dabs(__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_x) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_r;
int __pyx_t_1;
__Pyx_RefNannySetupContext("dabs");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":232
* @cython.profile(False)
* cdef inline DTYPE_t dabs(DTYPE_t x):
* if x >= 0: # <<<<<<<<<<<<<<
* return x
* else:
*/
__pyx_t_1 = (__pyx_v_x >= 0.0);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":233
* cdef inline DTYPE_t dabs(DTYPE_t x):
* if x >= 0:
* return x # <<<<<<<<<<<<<<
* else:
* return -x
*/
__pyx_r = __pyx_v_x;
goto __pyx_L0;
goto __pyx_L3;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":235
* return x
* else:
* return -x # <<<<<<<<<<<<<<
*
*
*/
__pyx_r = (-__pyx_v_x);
goto __pyx_L0;
}
__pyx_L3:;
__pyx_r = 0;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":248
* # which convert between these forms.
* @cython.cdivision(True)
* cdef DTYPE_t dist(DTYPE_t *x1, DTYPE_t *x2, ITYPE_t n, DTYPE_t p): # <<<<<<<<<<<<<<
* cdef ITYPE_t i
* cdef DTYPE_t r, d
*/
static __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_dist(__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_x1, __pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_x2, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n, __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_p) {
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_r;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_d;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_r;
int __pyx_t_1;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_2;
__Pyx_RefNannySetupContext("dist");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":251
* cdef ITYPE_t i
* cdef DTYPE_t r, d
* r = 0 # <<<<<<<<<<<<<<
* if p == 2:
* for i from 0 <= i < n:
*/
__pyx_v_r = 0.0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":252
* cdef DTYPE_t r, d
* r = 0
* if p == 2: # <<<<<<<<<<<<<<
* for i from 0 <= i < n:
* d = x1[i] - x2[i]
*/
__pyx_t_1 = (__pyx_v_p == 2.0);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":253
* r = 0
* if p == 2:
* for i from 0 <= i < n: # <<<<<<<<<<<<<<
* d = x1[i] - x2[i]
* r += d * d
*/
__pyx_t_2 = __pyx_v_n;
for (__pyx_v_i = 0; __pyx_v_i < __pyx_t_2; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":254
* if p == 2:
* for i from 0 <= i < n:
* d = x1[i] - x2[i] # <<<<<<<<<<<<<<
* r += d * d
* r = r ** 0.5
*/
__pyx_v_d = ((__pyx_v_x1[__pyx_v_i]) - (__pyx_v_x2[__pyx_v_i]));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":255
* for i from 0 <= i < n:
* d = x1[i] - x2[i]
* r += d * d # <<<<<<<<<<<<<<
* r = r ** 0.5
* elif p == infinity:
*/
__pyx_v_r += (__pyx_v_d * __pyx_v_d);
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":256
* d = x1[i] - x2[i]
* r += d * d
* r = r ** 0.5 # <<<<<<<<<<<<<<
* elif p == infinity:
* for i from 0 <= i < n:
*/
__pyx_v_r = pow(__pyx_v_r, 0.5);
goto __pyx_L3;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":257
* r += d * d
* r = r ** 0.5
* elif p == infinity: # <<<<<<<<<<<<<<
* for i from 0 <= i < n:
* r = dmax(r, dabs(x1[i] - x2[i]))
*/
__pyx_t_1 = (__pyx_v_p == __pyx_v_7sklearn_9ball_tree_infinity);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":258
* r = r ** 0.5
* elif p == infinity:
* for i from 0 <= i < n: # <<<<<<<<<<<<<<
* r = dmax(r, dabs(x1[i] - x2[i]))
* elif p == 1:
*/
__pyx_t_2 = __pyx_v_n;
for (__pyx_v_i = 0; __pyx_v_i < __pyx_t_2; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":259
* elif p == infinity:
* for i from 0 <= i < n:
* r = dmax(r, dabs(x1[i] - x2[i])) # <<<<<<<<<<<<<<
* elif p == 1:
* for i from 0 <= i < n:
*/
__pyx_v_r = __pyx_f_7sklearn_9ball_tree_dmax(__pyx_v_r, __pyx_f_7sklearn_9ball_tree_dabs(((__pyx_v_x1[__pyx_v_i]) - (__pyx_v_x2[__pyx_v_i]))));
}
goto __pyx_L3;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":260
* for i from 0 <= i < n:
* r = dmax(r, dabs(x1[i] - x2[i]))
* elif p == 1: # <<<<<<<<<<<<<<
* for i from 0 <= i < n:
* r += dabs(x1[i] - x2[i])
*/
__pyx_t_1 = (__pyx_v_p == 1.0);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":261
* r = dmax(r, dabs(x1[i] - x2[i]))
* elif p == 1:
* for i from 0 <= i < n: # <<<<<<<<<<<<<<
* r += dabs(x1[i] - x2[i])
* else:
*/
__pyx_t_2 = __pyx_v_n;
for (__pyx_v_i = 0; __pyx_v_i < __pyx_t_2; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":262
* elif p == 1:
* for i from 0 <= i < n:
* r += dabs(x1[i] - x2[i]) # <<<<<<<<<<<<<<
* else:
* for i from 0 <= i < n:
*/
__pyx_v_r += __pyx_f_7sklearn_9ball_tree_dabs(((__pyx_v_x1[__pyx_v_i]) - (__pyx_v_x2[__pyx_v_i])));
}
goto __pyx_L3;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":264
* r += dabs(x1[i] - x2[i])
* else:
* for i from 0 <= i < n: # <<<<<<<<<<<<<<
* d = dabs(x1[i] - x2[i])
* r += d ** p
*/
__pyx_t_2 = __pyx_v_n;
for (__pyx_v_i = 0; __pyx_v_i < __pyx_t_2; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":265
* else:
* for i from 0 <= i < n:
* d = dabs(x1[i] - x2[i]) # <<<<<<<<<<<<<<
* r += d ** p
* r = r ** (1. / p)
*/
__pyx_v_d = __pyx_f_7sklearn_9ball_tree_dabs(((__pyx_v_x1[__pyx_v_i]) - (__pyx_v_x2[__pyx_v_i])));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":266
* for i from 0 <= i < n:
* d = dabs(x1[i] - x2[i])
* r += d ** p # <<<<<<<<<<<<<<
* r = r ** (1. / p)
* return r
*/
__pyx_v_r += pow(__pyx_v_d, __pyx_v_p);
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":267
* d = dabs(x1[i] - x2[i])
* r += d ** p
* r = r ** (1. / p) # <<<<<<<<<<<<<<
* return r
*
*/
__pyx_v_r = pow(__pyx_v_r, (1. / __pyx_v_p));
}
__pyx_L3:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":268
* r += d ** p
* r = r ** (1. / p)
* return r # <<<<<<<<<<<<<<
*
*
*/
__pyx_r = __pyx_v_r;
goto __pyx_L0;
__pyx_r = 0;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":272
*
* @cython.cdivision(True)
* cdef DTYPE_t dist_p(DTYPE_t *x1, DTYPE_t *x2, ITYPE_t n, DTYPE_t p): # <<<<<<<<<<<<<<
* cdef ITYPE_t i
* cdef DTYPE_t r, d
*/
static __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_dist_p(__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_x1, __pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_x2, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n, __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_p) {
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_r;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_d;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_r;
int __pyx_t_1;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_2;
__Pyx_RefNannySetupContext("dist_p");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":275
* cdef ITYPE_t i
* cdef DTYPE_t r, d
* r = 0 # <<<<<<<<<<<<<<
* if p == 2:
* for i from 0 <= i < n:
*/
__pyx_v_r = 0.0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":276
* cdef DTYPE_t r, d
* r = 0
* if p == 2: # <<<<<<<<<<<<<<
* for i from 0 <= i < n:
* d = x1[i] - x2[i]
*/
__pyx_t_1 = (__pyx_v_p == 2.0);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":277
* r = 0
* if p == 2:
* for i from 0 <= i < n: # <<<<<<<<<<<<<<
* d = x1[i] - x2[i]
* r += d * d
*/
__pyx_t_2 = __pyx_v_n;
for (__pyx_v_i = 0; __pyx_v_i < __pyx_t_2; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":278
* if p == 2:
* for i from 0 <= i < n:
* d = x1[i] - x2[i] # <<<<<<<<<<<<<<
* r += d * d
* elif p == infinity:
*/
__pyx_v_d = ((__pyx_v_x1[__pyx_v_i]) - (__pyx_v_x2[__pyx_v_i]));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":279
* for i from 0 <= i < n:
* d = x1[i] - x2[i]
* r += d * d # <<<<<<<<<<<<<<
* elif p == infinity:
* for i from 0 <= i < n:
*/
__pyx_v_r += (__pyx_v_d * __pyx_v_d);
}
goto __pyx_L3;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":280
* d = x1[i] - x2[i]
* r += d * d
* elif p == infinity: # <<<<<<<<<<<<<<
* for i from 0 <= i < n:
* r = dmax(r, dabs(x1[i] - x2[i]))
*/
__pyx_t_1 = (__pyx_v_p == __pyx_v_7sklearn_9ball_tree_infinity);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":281
* r += d * d
* elif p == infinity:
* for i from 0 <= i < n: # <<<<<<<<<<<<<<
* r = dmax(r, dabs(x1[i] - x2[i]))
* elif p == 1:
*/
__pyx_t_2 = __pyx_v_n;
for (__pyx_v_i = 0; __pyx_v_i < __pyx_t_2; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":282
* elif p == infinity:
* for i from 0 <= i < n:
* r = dmax(r, dabs(x1[i] - x2[i])) # <<<<<<<<<<<<<<
* elif p == 1:
* for i from 0 <= i < n:
*/
__pyx_v_r = __pyx_f_7sklearn_9ball_tree_dmax(__pyx_v_r, __pyx_f_7sklearn_9ball_tree_dabs(((__pyx_v_x1[__pyx_v_i]) - (__pyx_v_x2[__pyx_v_i]))));
}
goto __pyx_L3;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":283
* for i from 0 <= i < n:
* r = dmax(r, dabs(x1[i] - x2[i]))
* elif p == 1: # <<<<<<<<<<<<<<
* for i from 0 <= i < n:
* r += dabs(x1[i] - x2[i])
*/
__pyx_t_1 = (__pyx_v_p == 1.0);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":284
* r = dmax(r, dabs(x1[i] - x2[i]))
* elif p == 1:
* for i from 0 <= i < n: # <<<<<<<<<<<<<<
* r += dabs(x1[i] - x2[i])
* else:
*/
__pyx_t_2 = __pyx_v_n;
for (__pyx_v_i = 0; __pyx_v_i < __pyx_t_2; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":285
* elif p == 1:
* for i from 0 <= i < n:
* r += dabs(x1[i] - x2[i]) # <<<<<<<<<<<<<<
* else:
* for i from 0 <= i < n:
*/
__pyx_v_r += __pyx_f_7sklearn_9ball_tree_dabs(((__pyx_v_x1[__pyx_v_i]) - (__pyx_v_x2[__pyx_v_i])));
}
goto __pyx_L3;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":287
* r += dabs(x1[i] - x2[i])
* else:
* for i from 0 <= i < n: # <<<<<<<<<<<<<<
* d = dabs(x1[i] - x2[i])
* r += d ** p
*/
__pyx_t_2 = __pyx_v_n;
for (__pyx_v_i = 0; __pyx_v_i < __pyx_t_2; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":288
* else:
* for i from 0 <= i < n:
* d = dabs(x1[i] - x2[i]) # <<<<<<<<<<<<<<
* r += d ** p
* return r
*/
__pyx_v_d = __pyx_f_7sklearn_9ball_tree_dabs(((__pyx_v_x1[__pyx_v_i]) - (__pyx_v_x2[__pyx_v_i])));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":289
* for i from 0 <= i < n:
* d = dabs(x1[i] - x2[i])
* r += d ** p # <<<<<<<<<<<<<<
* return r
*
*/
__pyx_v_r += pow(__pyx_v_d, __pyx_v_p);
}
}
__pyx_L3:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":290
* d = dabs(x1[i] - x2[i])
* r += d ** p
* return r # <<<<<<<<<<<<<<
*
*
*/
__pyx_r = __pyx_v_r;
goto __pyx_L0;
__pyx_r = 0;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":294
*
* @cython.cdivision(True)
* cdef DTYPE_t dist_from_dist_p(DTYPE_t r, DTYPE_t p): # <<<<<<<<<<<<<<
* if p == 2:
* return r ** 0.5
*/
static __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_dist_from_dist_p(__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_r, __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_p) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_r;
int __pyx_t_1;
__Pyx_RefNannySetupContext("dist_from_dist_p");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":295
* @cython.cdivision(True)
* cdef DTYPE_t dist_from_dist_p(DTYPE_t r, DTYPE_t p):
* if p == 2: # <<<<<<<<<<<<<<
* return r ** 0.5
* elif p == infinity:
*/
__pyx_t_1 = (__pyx_v_p == 2.0);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":296
* cdef DTYPE_t dist_from_dist_p(DTYPE_t r, DTYPE_t p):
* if p == 2:
* return r ** 0.5 # <<<<<<<<<<<<<<
* elif p == infinity:
* return r
*/
__pyx_r = pow(__pyx_v_r, 0.5);
goto __pyx_L0;
goto __pyx_L3;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":297
* if p == 2:
* return r ** 0.5
* elif p == infinity: # <<<<<<<<<<<<<<
* return r
* elif p == 1:
*/
__pyx_t_1 = (__pyx_v_p == __pyx_v_7sklearn_9ball_tree_infinity);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":298
* return r ** 0.5
* elif p == infinity:
* return r # <<<<<<<<<<<<<<
* elif p == 1:
* return r
*/
__pyx_r = __pyx_v_r;
goto __pyx_L0;
goto __pyx_L3;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":299
* elif p == infinity:
* return r
* elif p == 1: # <<<<<<<<<<<<<<
* return r
* else:
*/
__pyx_t_1 = (__pyx_v_p == 1.0);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":300
* return r
* elif p == 1:
* return r # <<<<<<<<<<<<<<
* else:
* return r ** (1. / p)
*/
__pyx_r = __pyx_v_r;
goto __pyx_L0;
goto __pyx_L3;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":302
* return r
* else:
* return r ** (1. / p) # <<<<<<<<<<<<<<
*
*
*/
__pyx_r = pow(__pyx_v_r, (1. / __pyx_v_p));
goto __pyx_L0;
}
__pyx_L3:;
__pyx_r = 0;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":306
*
* @cython.cdivision(True)
* cdef DTYPE_t dist_p_from_dist(DTYPE_t r, DTYPE_t p): # <<<<<<<<<<<<<<
* if p == 2:
* return r ** 2
*/
static __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_dist_p_from_dist(__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_r, __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_p) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_r;
int __pyx_t_1;
__Pyx_RefNannySetupContext("dist_p_from_dist");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":307
* @cython.cdivision(True)
* cdef DTYPE_t dist_p_from_dist(DTYPE_t r, DTYPE_t p):
* if p == 2: # <<<<<<<<<<<<<<
* return r ** 2
* elif p == infinity:
*/
__pyx_t_1 = (__pyx_v_p == 2.0);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":308
* cdef DTYPE_t dist_p_from_dist(DTYPE_t r, DTYPE_t p):
* if p == 2:
* return r ** 2 # <<<<<<<<<<<<<<
* elif p == infinity:
* return r
*/
__pyx_r = pow(__pyx_v_r, 2.0);
goto __pyx_L0;
goto __pyx_L3;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":309
* if p == 2:
* return r ** 2
* elif p == infinity: # <<<<<<<<<<<<<<
* return r
* elif p == 1:
*/
__pyx_t_1 = (__pyx_v_p == __pyx_v_7sklearn_9ball_tree_infinity);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":310
* return r ** 2
* elif p == infinity:
* return r # <<<<<<<<<<<<<<
* elif p == 1:
* return r
*/
__pyx_r = __pyx_v_r;
goto __pyx_L0;
goto __pyx_L3;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":311
* elif p == infinity:
* return r
* elif p == 1: # <<<<<<<<<<<<<<
* return r
* else:
*/
__pyx_t_1 = (__pyx_v_p == 1.0);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":312
* return r
* elif p == 1:
* return r # <<<<<<<<<<<<<<
* else:
* return r ** p
*/
__pyx_r = __pyx_v_r;
goto __pyx_L0;
goto __pyx_L3;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":314
* return r
* else:
* return r ** p # <<<<<<<<<<<<<<
*
*
*/
__pyx_r = pow(__pyx_v_r, __pyx_v_p);
goto __pyx_L0;
}
__pyx_L3:;
__pyx_r = 0;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":345
*
* @cython.profile(False)
* cdef inline void stack_create(stack* self, int size): # <<<<<<<<<<<<<<
* self.size = size
* self.heap = <stack_item*> stdlib.malloc(sizeof(stack_item) * size)
*/
static CYTHON_INLINE void __pyx_f_7sklearn_9ball_tree_stack_create(struct __pyx_t_7sklearn_9ball_tree_stack *__pyx_v_self, int __pyx_v_size) {
__Pyx_RefNannySetupContext("stack_create");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":346
* @cython.profile(False)
* cdef inline void stack_create(stack* self, int size):
* self.size = size # <<<<<<<<<<<<<<
* self.heap = <stack_item*> stdlib.malloc(sizeof(stack_item) * size)
* self.n = 0
*/
__pyx_v_self->size = __pyx_v_size;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":347
* cdef inline void stack_create(stack* self, int size):
* self.size = size
* self.heap = <stack_item*> stdlib.malloc(sizeof(stack_item) * size) # <<<<<<<<<<<<<<
* self.n = 0
*
*/
__pyx_v_self->heap = ((struct __pyx_t_7sklearn_9ball_tree_stack_item *)malloc(((sizeof(struct __pyx_t_7sklearn_9ball_tree_stack_item)) * __pyx_v_size)));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":348
* self.size = size
* self.heap = <stack_item*> stdlib.malloc(sizeof(stack_item) * size)
* self.n = 0 # <<<<<<<<<<<<<<
*
*
*/
__pyx_v_self->n = 0;
__Pyx_RefNannyFinishContext();
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":352
*
* @cython.profile(False)
* cdef inline void stack_destroy(stack* self): # <<<<<<<<<<<<<<
* stdlib.free(self.heap)
*
*/
static CYTHON_INLINE void __pyx_f_7sklearn_9ball_tree_stack_destroy(struct __pyx_t_7sklearn_9ball_tree_stack *__pyx_v_self) {
__Pyx_RefNannySetupContext("stack_destroy");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":353
* @cython.profile(False)
* cdef inline void stack_destroy(stack* self):
* stdlib.free(self.heap) # <<<<<<<<<<<<<<
*
*
*/
free(__pyx_v_self->heap);
__Pyx_RefNannyFinishContext();
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":357
*
* @cython.profile(False)
* cdef inline void stack_resize(stack* self, int new_size): # <<<<<<<<<<<<<<
* #print "resize", self.n, new_size
* if new_size < self.n:
*/
static CYTHON_INLINE void __pyx_f_7sklearn_9ball_tree_stack_resize(struct __pyx_t_7sklearn_9ball_tree_stack *__pyx_v_self, int __pyx_v_new_size) {
int __pyx_t_1;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
__Pyx_RefNannySetupContext("stack_resize");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":359
* cdef inline void stack_resize(stack* self, int new_size):
* #print "resize", self.n, new_size
* if new_size < self.n: # <<<<<<<<<<<<<<
* raise ValueError("new_size smaller than current")
*
*/
__pyx_t_1 = (__pyx_v_new_size < __pyx_v_self->n);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":360
* #print "resize", self.n, new_size
* if new_size < self.n:
* raise ValueError("new_size smaller than current") # <<<<<<<<<<<<<<
*
* self.size = new_size
*/
__pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 360; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_INCREF(((PyObject *)__pyx_kp_s_1));
PyTuple_SET_ITEM(__pyx_t_2, 0, ((PyObject *)__pyx_kp_s_1));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_s_1));
__pyx_t_3 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_2, NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 360; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_Raise(__pyx_t_3, 0, 0);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 360; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L3;
}
__pyx_L3:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":362
* raise ValueError("new_size smaller than current")
*
* self.size = new_size # <<<<<<<<<<<<<<
* self.heap = <stack_item*>stdlib.realloc(<void*> self.heap,
* new_size * sizeof(stack_item))
*/
__pyx_v_self->size = __pyx_v_new_size;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":363
*
* self.size = new_size
* self.heap = <stack_item*>stdlib.realloc(<void*> self.heap, # <<<<<<<<<<<<<<
* new_size * sizeof(stack_item))
*
*/
__pyx_v_self->heap = ((struct __pyx_t_7sklearn_9ball_tree_stack_item *)realloc(((void *)__pyx_v_self->heap), (__pyx_v_new_size * (sizeof(struct __pyx_t_7sklearn_9ball_tree_stack_item)))));
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_WriteUnraisable("sklearn.ball_tree.stack_resize");
__pyx_L0:;
__Pyx_RefNannyFinishContext();
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":368
*
* @cython.profile(False)
* cdef inline void stack_push(stack* self, stack_item item): # <<<<<<<<<<<<<<
* if self.n >= self.size:
* stack_resize(self, 2 * self.size + 1)
*/
static CYTHON_INLINE void __pyx_f_7sklearn_9ball_tree_stack_push(struct __pyx_t_7sklearn_9ball_tree_stack *__pyx_v_self, struct __pyx_t_7sklearn_9ball_tree_stack_item __pyx_v_item) {
int __pyx_t_1;
__Pyx_RefNannySetupContext("stack_push");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":369
* @cython.profile(False)
* cdef inline void stack_push(stack* self, stack_item item):
* if self.n >= self.size: # <<<<<<<<<<<<<<
* stack_resize(self, 2 * self.size + 1)
*
*/
__pyx_t_1 = (__pyx_v_self->n >= __pyx_v_self->size);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":370
* cdef inline void stack_push(stack* self, stack_item item):
* if self.n >= self.size:
* stack_resize(self, 2 * self.size + 1) # <<<<<<<<<<<<<<
*
* self.heap[self.n] = item
*/
__pyx_f_7sklearn_9ball_tree_stack_resize(__pyx_v_self, ((2 * __pyx_v_self->size) + 1));
goto __pyx_L3;
}
__pyx_L3:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":372
* stack_resize(self, 2 * self.size + 1)
*
* self.heap[self.n] = item # <<<<<<<<<<<<<<
* self.n += 1
*
*/
(__pyx_v_self->heap[__pyx_v_self->n]) = __pyx_v_item;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":373
*
* self.heap[self.n] = item
* self.n += 1 # <<<<<<<<<<<<<<
*
*
*/
__pyx_v_self->n += 1;
__Pyx_RefNannyFinishContext();
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":377
*
* @cython.profile(False)
* cdef inline stack_item stack_pop(stack* self): # <<<<<<<<<<<<<<
* if self.n == 0:
* raise ValueError("popping empty stack")
*/
static CYTHON_INLINE struct __pyx_t_7sklearn_9ball_tree_stack_item __pyx_f_7sklearn_9ball_tree_stack_pop(struct __pyx_t_7sklearn_9ball_tree_stack *__pyx_v_self) {
struct __pyx_t_7sklearn_9ball_tree_stack_item __pyx_r;
int __pyx_t_1;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
__Pyx_RefNannySetupContext("stack_pop");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":378
* @cython.profile(False)
* cdef inline stack_item stack_pop(stack* self):
* if self.n == 0: # <<<<<<<<<<<<<<
* raise ValueError("popping empty stack")
*
*/
__pyx_t_1 = (__pyx_v_self->n == 0);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":379
* cdef inline stack_item stack_pop(stack* self):
* if self.n == 0:
* raise ValueError("popping empty stack") # <<<<<<<<<<<<<<
*
* self.n -= 1
*/
__pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 379; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_INCREF(((PyObject *)__pyx_kp_s_2));
PyTuple_SET_ITEM(__pyx_t_2, 0, ((PyObject *)__pyx_kp_s_2));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_s_2));
__pyx_t_3 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_2, NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 379; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_Raise(__pyx_t_3, 0, 0);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 379; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L3;
}
__pyx_L3:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":381
* raise ValueError("popping empty stack")
*
* self.n -= 1 # <<<<<<<<<<<<<<
* return self.heap[self.n]
*
*/
__pyx_v_self->n -= 1;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":382
*
* self.n -= 1
* return self.heap[self.n] # <<<<<<<<<<<<<<
*
*
*/
__pyx_r = (__pyx_v_self->heap[__pyx_v_self->n]);
goto __pyx_L0;
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_WriteUnraisable("sklearn.ball_tree.stack_pop");
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":388
* # newObj function
* # this is a helper function for pickling
* def newObj(obj): # <<<<<<<<<<<<<<
* return obj.__new__(obj)
*
*/
static PyObject *__pyx_pf_7sklearn_9ball_tree_newObj(PyObject *__pyx_self, PyObject *__pyx_v_obj); /*proto*/
static PyObject *__pyx_pf_7sklearn_9ball_tree_newObj(PyObject *__pyx_self, PyObject *__pyx_v_obj) {
PyObject *__pyx_r = NULL;
PyObject *__pyx_t_1 = NULL;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
__Pyx_RefNannySetupContext("newObj");
__pyx_self = __pyx_self;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":389
* # this is a helper function for pickling
* def newObj(obj):
* return obj.__new__(obj) # <<<<<<<<<<<<<<
*
*
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_1 = PyObject_GetAttr(__pyx_v_obj, __pyx_n_s____new__); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 389; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 389; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_INCREF(__pyx_v_obj);
PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_v_obj);
__Pyx_GIVEREF(__pyx_v_obj);
__pyx_t_3 = PyObject_Call(__pyx_t_1, __pyx_t_2, NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 389; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__pyx_r = __pyx_t_3;
__pyx_t_3 = 0;
goto __pyx_L0;
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_AddTraceback("sklearn.ball_tree.newObj");
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":459
* [ 0. 0.19662693 0.29473397]
* """
* cdef readonly np.ndarray data # <<<<<<<<<<<<<<
* cdef np.ndarray idx_array
* cdef np.ndarray node_centroid_arr
*/
static PyObject *__pyx_pf_7sklearn_9ball_tree_8BallTree_4data___get__(PyObject *__pyx_v_self); /*proto*/
static PyObject *__pyx_pf_7sklearn_9ball_tree_8BallTree_4data___get__(PyObject *__pyx_v_self) {
PyObject *__pyx_r = NULL;
__Pyx_RefNannySetupContext("__get__");
__Pyx_XDECREF(__pyx_r);
__Pyx_INCREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data));
__pyx_r = ((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data);
goto __pyx_L0;
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":468
* cdef ITYPE_t n_nodes
*
* def __cinit__(self): # <<<<<<<<<<<<<<
* """
* initialize all arrays to empty. This will prevent memory errors
*/
static int __pyx_pf_7sklearn_9ball_tree_8BallTree___cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
static int __pyx_pf_7sklearn_9ball_tree_8BallTree___cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
int __pyx_r;
PyObject *__pyx_t_1 = NULL;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
PyObject *__pyx_t_4 = NULL;
__Pyx_RefNannySetupContext("__cinit__");
if (unlikely(PyTuple_GET_SIZE(__pyx_args) > 0)) {
__Pyx_RaiseArgtupleInvalid("__cinit__", 1, 0, 0, PyTuple_GET_SIZE(__pyx_args)); return -1;}
if (unlikely(__pyx_kwds) && unlikely(PyDict_Size(__pyx_kwds) > 0) && unlikely(!__Pyx_CheckKeywordStrings(__pyx_kwds, "__cinit__", 0))) return -1;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":473
* in rare cases where __init__ is not called
* """
* self.data = np.empty((0,0), dtype=DTYPE) # <<<<<<<<<<<<<<
* self.idx_array = np.empty(0, dtype=ITYPE)
* self.node_centroid_arr = np.empty((0,0), dtype=DTYPE)
*/
__pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 473; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__empty); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 473; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 473; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_INCREF(__pyx_int_0);
PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_int_0);
__Pyx_GIVEREF(__pyx_int_0);
__Pyx_INCREF(__pyx_int_0);
PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_int_0);
__Pyx_GIVEREF(__pyx_int_0);
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 473; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
__Pyx_GIVEREF(__pyx_t_1);
__pyx_t_1 = 0;
__pyx_t_1 = PyDict_New(); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 473; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_1));
__pyx_t_4 = __Pyx_GetName(__pyx_m, __pyx_n_s__DTYPE); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 473; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__dtype), __pyx_t_4) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 473; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__pyx_t_4 = PyEval_CallObjectWithKeywords(__pyx_t_2, __pyx_t_3, ((PyObject *)__pyx_t_1)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 473; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
if (!(likely(((__pyx_t_4) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_4, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 473; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GIVEREF(__pyx_t_4);
__Pyx_GOTREF(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data);
__Pyx_DECREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data));
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data = ((PyArrayObject *)__pyx_t_4);
__pyx_t_4 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":474
* """
* self.data = np.empty((0,0), dtype=DTYPE)
* self.idx_array = np.empty(0, dtype=ITYPE) # <<<<<<<<<<<<<<
* self.node_centroid_arr = np.empty((0,0), dtype=DTYPE)
* self.node_info_arr = np.empty(0, dtype='c')
*/
__pyx_t_4 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 474; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__pyx_t_1 = PyObject_GetAttr(__pyx_t_4, __pyx_n_s__empty); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 474; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 474; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_INCREF(__pyx_int_0);
PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_int_0);
__Pyx_GIVEREF(__pyx_int_0);
__pyx_t_3 = PyDict_New(); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 474; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_3));
__pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__ITYPE); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 474; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__dtype), __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 474; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__pyx_t_2 = PyEval_CallObjectWithKeywords(__pyx_t_1, __pyx_t_4, ((PyObject *)__pyx_t_3)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 474; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
if (!(likely(((__pyx_t_2) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_2, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 474; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GIVEREF(__pyx_t_2);
__Pyx_GOTREF(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->idx_array);
__Pyx_DECREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->idx_array));
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->idx_array = ((PyArrayObject *)__pyx_t_2);
__pyx_t_2 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":475
* self.data = np.empty((0,0), dtype=DTYPE)
* self.idx_array = np.empty(0, dtype=ITYPE)
* self.node_centroid_arr = np.empty((0,0), dtype=DTYPE) # <<<<<<<<<<<<<<
* self.node_info_arr = np.empty(0, dtype='c')
*
*/
__pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__empty); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_INCREF(__pyx_int_0);
PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_int_0);
__Pyx_GIVEREF(__pyx_int_0);
__Pyx_INCREF(__pyx_int_0);
PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_int_0);
__Pyx_GIVEREF(__pyx_int_0);
__pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_2);
__Pyx_GIVEREF(__pyx_t_2);
__pyx_t_2 = 0;
__pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_2));
__pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__DTYPE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__dtype), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = PyEval_CallObjectWithKeywords(__pyx_t_3, __pyx_t_4, ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GIVEREF(__pyx_t_1);
__Pyx_GOTREF(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_centroid_arr);
__Pyx_DECREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_centroid_arr));
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_centroid_arr = ((PyArrayObject *)__pyx_t_1);
__pyx_t_1 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":476
* self.idx_array = np.empty(0, dtype=ITYPE)
* self.node_centroid_arr = np.empty((0,0), dtype=DTYPE)
* self.node_info_arr = np.empty(0, dtype='c') # <<<<<<<<<<<<<<
*
* def __init__(self, X, ITYPE_t leaf_size=20, DTYPE_t p=2):
*/
__pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 476; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__empty); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 476; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 476; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_INCREF(__pyx_int_0);
PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_int_0);
__Pyx_GIVEREF(__pyx_int_0);
__pyx_t_4 = PyDict_New(); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 476; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_4));
if (PyDict_SetItem(__pyx_t_4, ((PyObject *)__pyx_n_s__dtype), ((PyObject *)__pyx_n_s__c)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 476; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_3 = PyEval_CallObjectWithKeywords(__pyx_t_2, __pyx_t_1, ((PyObject *)__pyx_t_4)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 476; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0;
if (!(likely(((__pyx_t_3) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_3, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 476; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GIVEREF(__pyx_t_3);
__Pyx_GOTREF(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_info_arr);
__Pyx_DECREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_info_arr));
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_info_arr = ((PyArrayObject *)__pyx_t_3);
__pyx_t_3 = 0;
__pyx_r = 0;
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_XDECREF(__pyx_t_4);
__Pyx_AddTraceback("sklearn.ball_tree.BallTree.__cinit__");
__pyx_r = -1;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":478
* self.node_info_arr = np.empty(0, dtype='c')
*
* def __init__(self, X, ITYPE_t leaf_size=20, DTYPE_t p=2): # <<<<<<<<<<<<<<
* self.data = np.asarray(X, dtype=DTYPE, order='C')
*
*/
static int __pyx_pf_7sklearn_9ball_tree_8BallTree___init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
static int __pyx_pf_7sklearn_9ball_tree_8BallTree___init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
PyObject *__pyx_v_X = 0;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_leaf_size;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_p;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_samples;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_features;
int __pyx_r;
PyObject *__pyx_t_1 = NULL;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
PyObject *__pyx_t_4 = NULL;
int __pyx_t_5;
long __pyx_t_6;
long __pyx_t_7;
long __pyx_t_8;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_9;
static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__X,&__pyx_n_s__leaf_size,&__pyx_n_s__p,0};
__Pyx_RefNannySetupContext("__init__");
if (unlikely(__pyx_kwds)) {
Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
PyObject* values[3] = {0,0,0};
switch (PyTuple_GET_SIZE(__pyx_args)) {
case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2);
case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
case 0: break;
default: goto __pyx_L5_argtuple_error;
}
switch (PyTuple_GET_SIZE(__pyx_args)) {
case 0:
values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__X);
if (likely(values[0])) kw_args--;
else goto __pyx_L5_argtuple_error;
case 1:
if (kw_args > 0) {
PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__leaf_size);
if (value) { values[1] = value; kw_args--; }
}
case 2:
if (kw_args > 0) {
PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__p);
if (value) { values[2] = value; kw_args--; }
}
}
if (unlikely(kw_args > 0)) {
if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "__init__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 478; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
}
__pyx_v_X = values[0];
if (values[1]) {
__pyx_v_leaf_size = __Pyx_PyInt_from_py_npy_int32(values[1]); if (unlikely((__pyx_v_leaf_size == (npy_int32)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 478; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
} else {
__pyx_v_leaf_size = ((__pyx_t_7sklearn_9ball_tree_ITYPE_t)20);
}
if (values[2]) {
__pyx_v_p = __pyx_PyFloat_AsDouble(values[2]); if (unlikely((__pyx_v_p == (npy_float64)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 478; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
} else {
__pyx_v_p = ((__pyx_t_7sklearn_9ball_tree_DTYPE_t)2.0);
}
} else {
__pyx_v_leaf_size = ((__pyx_t_7sklearn_9ball_tree_ITYPE_t)20);
__pyx_v_p = ((__pyx_t_7sklearn_9ball_tree_DTYPE_t)2.0);
switch (PyTuple_GET_SIZE(__pyx_args)) {
case 3: __pyx_v_p = __pyx_PyFloat_AsDouble(PyTuple_GET_ITEM(__pyx_args, 2)); if (unlikely((__pyx_v_p == (npy_float64)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 478; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
case 2: __pyx_v_leaf_size = __Pyx_PyInt_from_py_npy_int32(PyTuple_GET_ITEM(__pyx_args, 1)); if (unlikely((__pyx_v_leaf_size == (npy_int32)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 478; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
case 1: __pyx_v_X = PyTuple_GET_ITEM(__pyx_args, 0);
break;
default: goto __pyx_L5_argtuple_error;
}
}
goto __pyx_L4_argument_unpacking_done;
__pyx_L5_argtuple_error:;
__Pyx_RaiseArgtupleInvalid("__init__", 0, 1, 3, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 478; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
__pyx_L3_error:;
__Pyx_AddTraceback("sklearn.ball_tree.BallTree.__init__");
__Pyx_RefNannyFinishContext();
return -1;
__pyx_L4_argument_unpacking_done:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":479
*
* def __init__(self, X, ITYPE_t leaf_size=20, DTYPE_t p=2):
* self.data = np.asarray(X, dtype=DTYPE, order='C') # <<<<<<<<<<<<<<
*
* if X.size == 0:
*/
__pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 479; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__asarray); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 479; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 479; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_INCREF(__pyx_v_X);
PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_X);
__Pyx_GIVEREF(__pyx_v_X);
__pyx_t_3 = PyDict_New(); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 479; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_3));
__pyx_t_4 = __Pyx_GetName(__pyx_m, __pyx_n_s__DTYPE); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 479; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__dtype), __pyx_t_4) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 479; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__order), ((PyObject *)__pyx_n_s__C)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 479; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_4 = PyEval_CallObjectWithKeywords(__pyx_t_2, __pyx_t_1, ((PyObject *)__pyx_t_3)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 479; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
if (!(likely(((__pyx_t_4) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_4, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 479; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GIVEREF(__pyx_t_4);
__Pyx_GOTREF(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data);
__Pyx_DECREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data));
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data = ((PyArrayObject *)__pyx_t_4);
__pyx_t_4 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":481
* self.data = np.asarray(X, dtype=DTYPE, order='C')
*
* if X.size == 0: # <<<<<<<<<<<<<<
* raise ValueError("X is an empty array")
*
*/
__pyx_t_4 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__size); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 481; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__pyx_t_3 = PyObject_RichCompare(__pyx_t_4, __pyx_int_0, Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 481; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 481; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
if (__pyx_t_5) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":482
*
* if X.size == 0:
* raise ValueError("X is an empty array") # <<<<<<<<<<<<<<
*
* if self.data.ndim != 2:
*/
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 482; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_INCREF(((PyObject *)__pyx_kp_s_3));
PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)__pyx_kp_s_3));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_s_3));
__pyx_t_4 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_3, NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 482; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_Raise(__pyx_t_4, 0, 0);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 482; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L6;
}
__pyx_L6:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":484
* raise ValueError("X is an empty array")
*
* if self.data.ndim != 2: # <<<<<<<<<<<<<<
* raise ValueError("X should have two dimensions")
*
*/
__pyx_t_5 = (((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data->nd != 2);
if (__pyx_t_5) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":485
*
* if self.data.ndim != 2:
* raise ValueError("X should have two dimensions") # <<<<<<<<<<<<<<
*
* if p < 1:
*/
__pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 485; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_INCREF(((PyObject *)__pyx_kp_s_4));
PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_kp_s_4));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_s_4));
__pyx_t_3 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_4, NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 485; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_Raise(__pyx_t_3, 0, 0);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 485; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L7;
}
__pyx_L7:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":487
* raise ValueError("X should have two dimensions")
*
* if p < 1: # <<<<<<<<<<<<<<
* raise ValueError("p must be greater than or equal to 1")
* self.p = p
*/
__pyx_t_5 = (__pyx_v_p < 1.0);
if (__pyx_t_5) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":488
*
* if p < 1:
* raise ValueError("p must be greater than or equal to 1") # <<<<<<<<<<<<<<
* self.p = p
*
*/
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 488; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_INCREF(((PyObject *)__pyx_kp_s_5));
PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)__pyx_kp_s_5));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_s_5));
__pyx_t_4 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_3, NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 488; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_Raise(__pyx_t_4, 0, 0);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 488; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L8;
}
__pyx_L8:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":489
* if p < 1:
* raise ValueError("p must be greater than or equal to 1")
* self.p = p # <<<<<<<<<<<<<<
*
* if leaf_size < 1:
*/
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->p = __pyx_v_p;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":491
* self.p = p
*
* if leaf_size < 1: # <<<<<<<<<<<<<<
* raise ValueError("leaf_size must be greater than or equal to 1")
* self.leaf_size = leaf_size
*/
__pyx_t_5 = (__pyx_v_leaf_size < 1);
if (__pyx_t_5) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":492
*
* if leaf_size < 1:
* raise ValueError("leaf_size must be greater than or equal to 1") # <<<<<<<<<<<<<<
* self.leaf_size = leaf_size
*
*/
__pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 492; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_kp_s_6));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
__pyx_t_3 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_4, NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 492; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_Raise(__pyx_t_3, 0, 0);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 492; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L9;
}
__pyx_L9:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":493
* if leaf_size < 1:
* raise ValueError("leaf_size must be greater than or equal to 1")
* self.leaf_size = leaf_size # <<<<<<<<<<<<<<
*
* cdef ITYPE_t n_samples = self.data.shape[0]
*/
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->leaf_size = __pyx_v_leaf_size;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":495
* self.leaf_size = leaf_size
*
* cdef ITYPE_t n_samples = self.data.shape[0] # <<<<<<<<<<<<<<
* cdef ITYPE_t n_features = self.data.shape[1]
*
*/
__pyx_v_n_samples = (((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data->dimensions[0]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":496
*
* cdef ITYPE_t n_samples = self.data.shape[0]
* cdef ITYPE_t n_features = self.data.shape[1] # <<<<<<<<<<<<<<
*
* # determine number of levels in the ball tree, and from this
*/
__pyx_v_n_features = (((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data->dimensions[1]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":500
* # determine number of levels in the ball tree, and from this
* # the number of nodes in the ball tree
* self.n_levels = np.log2(max(1, (n_samples - 1)/self.leaf_size)) + 1 # <<<<<<<<<<<<<<
* self.n_nodes = (2 ** self.n_levels) - 1
*
*/
__pyx_t_3 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 500; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_4 = PyObject_GetAttr(__pyx_t_3, __pyx_n_s__log2); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 500; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_6 = (__pyx_v_n_samples - 1);
if (unlikely(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->leaf_size == 0)) {
PyErr_Format(PyExc_ZeroDivisionError, "integer division or modulo by zero");
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 500; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
else if (sizeof(long) == sizeof(long) && unlikely(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->leaf_size == -1) && unlikely(UNARY_NEG_WOULD_OVERFLOW(__pyx_t_6))) {
PyErr_Format(PyExc_OverflowError, "value too large to perform division");
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 500; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
__pyx_t_7 = __Pyx_div_long(__pyx_t_6, ((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->leaf_size);
__pyx_t_6 = 1;
if ((__pyx_t_7 > __pyx_t_6)) {
__pyx_t_8 = __pyx_t_7;
} else {
__pyx_t_8 = __pyx_t_6;
}
__pyx_t_3 = PyInt_FromLong(__pyx_t_8); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 500; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 500; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_3);
__Pyx_GIVEREF(__pyx_t_3);
__pyx_t_3 = 0;
__pyx_t_3 = PyObject_Call(__pyx_t_4, __pyx_t_1, NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 500; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = PyNumber_Add(__pyx_t_3, __pyx_int_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 500; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_9 = __Pyx_PyInt_from_py_npy_int32(__pyx_t_1); if (unlikely((__pyx_t_9 == (npy_int32)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 500; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->n_levels = __pyx_t_9;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":501
* # the number of nodes in the ball tree
* self.n_levels = np.log2(max(1, (n_samples - 1)/self.leaf_size)) + 1
* self.n_nodes = (2 ** self.n_levels) - 1 # <<<<<<<<<<<<<<
*
* self.idx_array = np.arange(n_samples, dtype=ITYPE)
*/
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->n_nodes = (__Pyx_pow_long(2, ((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->n_levels) - 1);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":503
* self.n_nodes = (2 ** self.n_levels) - 1
*
* self.idx_array = np.arange(n_samples, dtype=ITYPE) # <<<<<<<<<<<<<<
*
* self.node_centroid_arr = np.empty((self.n_nodes, n_features),
*/
__pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 503; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_3 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__arange); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 503; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = __Pyx_PyInt_to_py_npy_int32(__pyx_v_n_samples); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 503; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 503; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_1);
__Pyx_GIVEREF(__pyx_t_1);
__pyx_t_1 = 0;
__pyx_t_1 = PyDict_New(); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 503; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_1));
__pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__ITYPE); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 503; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__dtype), __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 503; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__pyx_t_2 = PyEval_CallObjectWithKeywords(__pyx_t_3, __pyx_t_4, ((PyObject *)__pyx_t_1)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 503; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
if (!(likely(((__pyx_t_2) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_2, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 503; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GIVEREF(__pyx_t_2);
__Pyx_GOTREF(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->idx_array);
__Pyx_DECREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->idx_array));
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->idx_array = ((PyArrayObject *)__pyx_t_2);
__pyx_t_2 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":505
* self.idx_array = np.arange(n_samples, dtype=ITYPE)
*
* self.node_centroid_arr = np.empty((self.n_nodes, n_features), # <<<<<<<<<<<<<<
* dtype=DTYPE, order='C')
*
*/
__pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 505; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_1 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__empty); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 505; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__pyx_t_2 = __Pyx_PyInt_to_py_npy_int32(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->n_nodes); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 505; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_4 = __Pyx_PyInt_to_py_npy_int32(__pyx_v_n_features); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 505; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__pyx_t_3 = PyTuple_New(2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 505; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
__Pyx_GIVEREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_t_4);
__Pyx_GIVEREF(__pyx_t_4);
__pyx_t_2 = 0;
__pyx_t_4 = 0;
__pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 505; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_3);
__Pyx_GIVEREF(__pyx_t_3);
__pyx_t_3 = 0;
__pyx_t_3 = PyDict_New(); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 505; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_3));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":506
*
* self.node_centroid_arr = np.empty((self.n_nodes, n_features),
* dtype=DTYPE, order='C') # <<<<<<<<<<<<<<
*
* self.node_info_arr = np.empty(self.n_nodes * sizeof(NodeInfo),
*/
__pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__DTYPE); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 506; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__dtype), __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 505; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__order), ((PyObject *)__pyx_n_s__C)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 505; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_2 = PyEval_CallObjectWithKeywords(__pyx_t_1, __pyx_t_4, ((PyObject *)__pyx_t_3)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 505; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
if (!(likely(((__pyx_t_2) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_2, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 505; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":505
* self.idx_array = np.arange(n_samples, dtype=ITYPE)
*
* self.node_centroid_arr = np.empty((self.n_nodes, n_features), # <<<<<<<<<<<<<<
* dtype=DTYPE, order='C')
*
*/
__Pyx_GIVEREF(__pyx_t_2);
__Pyx_GOTREF(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_centroid_arr);
__Pyx_DECREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_centroid_arr));
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_centroid_arr = ((PyArrayObject *)__pyx_t_2);
__pyx_t_2 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":508
* dtype=DTYPE, order='C')
*
* self.node_info_arr = np.empty(self.n_nodes * sizeof(NodeInfo), # <<<<<<<<<<<<<<
* dtype='c', order='C')
* self.build_tree_()
*/
__pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 508; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_3 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__empty); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 508; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__pyx_t_2 = __Pyx_PyInt_FromSize_t((((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->n_nodes * (sizeof(struct __pyx_t_7sklearn_9ball_tree_NodeInfo)))); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 508; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 508; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_2);
__Pyx_GIVEREF(__pyx_t_2);
__pyx_t_2 = 0;
__pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 508; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_2));
if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__dtype), ((PyObject *)__pyx_n_s__c)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 508; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__order), ((PyObject *)__pyx_n_s__C)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 508; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_1 = PyEval_CallObjectWithKeywords(__pyx_t_3, __pyx_t_4, ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 508; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 508; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GIVEREF(__pyx_t_1);
__Pyx_GOTREF(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_info_arr);
__Pyx_DECREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_info_arr));
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_info_arr = ((PyArrayObject *)__pyx_t_1);
__pyx_t_1 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":510
* self.node_info_arr = np.empty(self.n_nodes * sizeof(NodeInfo),
* dtype='c', order='C')
* self.build_tree_() # <<<<<<<<<<<<<<
*
* def __reduce__(self):
*/
((struct __pyx_vtabstruct_7sklearn_9ball_tree_BallTree *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->__pyx_vtab)->build_tree_(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self));
__pyx_r = 0;
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_XDECREF(__pyx_t_4);
__Pyx_AddTraceback("sklearn.ball_tree.BallTree.__init__");
__pyx_r = -1;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":512
* self.build_tree_()
*
* def __reduce__(self): # <<<<<<<<<<<<<<
* """
* reduce method used for pickling
*/
static PyObject *__pyx_pf_7sklearn_9ball_tree_8BallTree___reduce__(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
static char __pyx_doc_7sklearn_9ball_tree_8BallTree___reduce__[] = "\n reduce method used for pickling\n ";
static PyObject *__pyx_pf_7sklearn_9ball_tree_8BallTree___reduce__(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
PyObject *__pyx_r = NULL;
PyObject *__pyx_t_1 = NULL;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
PyObject *__pyx_t_4 = NULL;
__Pyx_RefNannySetupContext("__reduce__");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":516
* reduce method used for pickling
* """
* return (newObj, (BallTree,), self.__getstate__()) # <<<<<<<<<<<<<<
*
* def __getstate__(self):
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__newObj); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 516; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 516; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_INCREF(((PyObject *)((PyObject*)__pyx_ptype_7sklearn_9ball_tree_BallTree)));
PyTuple_SET_ITEM(__pyx_t_2, 0, ((PyObject *)((PyObject*)__pyx_ptype_7sklearn_9ball_tree_BallTree)));
__Pyx_GIVEREF(((PyObject *)((PyObject*)__pyx_ptype_7sklearn_9ball_tree_BallTree)));
__pyx_t_3 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s____getstate__); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 516; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_4 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 516; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_3 = PyTuple_New(3); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 516; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
__Pyx_GIVEREF(__pyx_t_1);
PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_t_2);
__Pyx_GIVEREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_3, 2, __pyx_t_4);
__Pyx_GIVEREF(__pyx_t_4);
__pyx_t_1 = 0;
__pyx_t_2 = 0;
__pyx_t_4 = 0;
__pyx_r = __pyx_t_3;
__pyx_t_3 = 0;
goto __pyx_L0;
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_XDECREF(__pyx_t_4);
__Pyx_AddTraceback("sklearn.ball_tree.BallTree.__reduce__");
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":518
* return (newObj, (BallTree,), self.__getstate__())
*
* def __getstate__(self): # <<<<<<<<<<<<<<
* """
* get state for pickling
*/
static PyObject *__pyx_pf_7sklearn_9ball_tree_8BallTree___getstate__(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
static char __pyx_doc_7sklearn_9ball_tree_8BallTree___getstate__[] = "\n get state for pickling\n ";
static PyObject *__pyx_pf_7sklearn_9ball_tree_8BallTree___getstate__(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
PyObject *__pyx_r = NULL;
PyObject *__pyx_t_1 = NULL;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
PyObject *__pyx_t_4 = NULL;
PyObject *__pyx_t_5 = NULL;
__Pyx_RefNannySetupContext("__getstate__");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":522
* get state for pickling
* """
* return (self.data, # <<<<<<<<<<<<<<
* self.idx_array,
* self.node_centroid_arr,
*/
__Pyx_XDECREF(__pyx_r);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":526
* self.node_centroid_arr,
* self.node_info_arr,
* self.p, # <<<<<<<<<<<<<<
* self.leaf_size,
* self.n_levels,
*/
__pyx_t_1 = PyFloat_FromDouble(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->p); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 526; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":527
* self.node_info_arr,
* self.p,
* self.leaf_size, # <<<<<<<<<<<<<<
* self.n_levels,
* self.n_nodes)
*/
__pyx_t_2 = __Pyx_PyInt_to_py_npy_int32(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->leaf_size); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 527; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":528
* self.p,
* self.leaf_size,
* self.n_levels, # <<<<<<<<<<<<<<
* self.n_nodes)
*
*/
__pyx_t_3 = __Pyx_PyInt_to_py_npy_int32(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->n_levels); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 528; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":529
* self.leaf_size,
* self.n_levels,
* self.n_nodes) # <<<<<<<<<<<<<<
*
* def __setstate__(self, state):
*/
__pyx_t_4 = __Pyx_PyInt_to_py_npy_int32(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->n_nodes); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 529; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__pyx_t_5 = PyTuple_New(8); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 522; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_INCREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data));
PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data));
__Pyx_GIVEREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data));
__Pyx_INCREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->idx_array));
PyTuple_SET_ITEM(__pyx_t_5, 1, ((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->idx_array));
__Pyx_GIVEREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->idx_array));
__Pyx_INCREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_centroid_arr));
PyTuple_SET_ITEM(__pyx_t_5, 2, ((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_centroid_arr));
__Pyx_GIVEREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_centroid_arr));
__Pyx_INCREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_info_arr));
PyTuple_SET_ITEM(__pyx_t_5, 3, ((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_info_arr));
__Pyx_GIVEREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_info_arr));
PyTuple_SET_ITEM(__pyx_t_5, 4, __pyx_t_1);
__Pyx_GIVEREF(__pyx_t_1);
PyTuple_SET_ITEM(__pyx_t_5, 5, __pyx_t_2);
__Pyx_GIVEREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_5, 6, __pyx_t_3);
__Pyx_GIVEREF(__pyx_t_3);
PyTuple_SET_ITEM(__pyx_t_5, 7, __pyx_t_4);
__Pyx_GIVEREF(__pyx_t_4);
__pyx_t_1 = 0;
__pyx_t_2 = 0;
__pyx_t_3 = 0;
__pyx_t_4 = 0;
__pyx_r = __pyx_t_5;
__pyx_t_5 = 0;
goto __pyx_L0;
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_XDECREF(__pyx_t_4);
__Pyx_XDECREF(__pyx_t_5);
__Pyx_AddTraceback("sklearn.ball_tree.BallTree.__getstate__");
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":531
* self.n_nodes)
*
* def __setstate__(self, state): # <<<<<<<<<<<<<<
* """
* set state for pickling
*/
static PyObject *__pyx_pf_7sklearn_9ball_tree_8BallTree___setstate__(PyObject *__pyx_v_self, PyObject *__pyx_v_state); /*proto*/
static char __pyx_doc_7sklearn_9ball_tree_8BallTree___setstate__[] = "\n set state for pickling\n ";
static PyObject *__pyx_pf_7sklearn_9ball_tree_8BallTree___setstate__(PyObject *__pyx_v_self, PyObject *__pyx_v_state) {
PyObject *__pyx_r = NULL;
PyObject *__pyx_t_1 = NULL;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_t_2;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_3;
__Pyx_RefNannySetupContext("__setstate__");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":535
* set state for pickling
* """
* self.data = state[0] # <<<<<<<<<<<<<<
* self.idx_array = state[1]
* self.node_centroid_arr = state[2]
*/
__pyx_t_1 = __Pyx_GetItemInt(__pyx_v_state, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 535; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 535; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GIVEREF(__pyx_t_1);
__Pyx_GOTREF(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data);
__Pyx_DECREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data));
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data = ((PyArrayObject *)__pyx_t_1);
__pyx_t_1 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":536
* """
* self.data = state[0]
* self.idx_array = state[1] # <<<<<<<<<<<<<<
* self.node_centroid_arr = state[2]
* self.node_info_arr = state[3]
*/
__pyx_t_1 = __Pyx_GetItemInt(__pyx_v_state, 1, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 536; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 536; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GIVEREF(__pyx_t_1);
__Pyx_GOTREF(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->idx_array);
__Pyx_DECREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->idx_array));
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->idx_array = ((PyArrayObject *)__pyx_t_1);
__pyx_t_1 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":537
* self.data = state[0]
* self.idx_array = state[1]
* self.node_centroid_arr = state[2] # <<<<<<<<<<<<<<
* self.node_info_arr = state[3]
* self.p = state[4]
*/
__pyx_t_1 = __Pyx_GetItemInt(__pyx_v_state, 2, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 537; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 537; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GIVEREF(__pyx_t_1);
__Pyx_GOTREF(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_centroid_arr);
__Pyx_DECREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_centroid_arr));
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_centroid_arr = ((PyArrayObject *)__pyx_t_1);
__pyx_t_1 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":538
* self.idx_array = state[1]
* self.node_centroid_arr = state[2]
* self.node_info_arr = state[3] # <<<<<<<<<<<<<<
* self.p = state[4]
* self.leaf_size = state[5]
*/
__pyx_t_1 = __Pyx_GetItemInt(__pyx_v_state, 3, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 538; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 538; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GIVEREF(__pyx_t_1);
__Pyx_GOTREF(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_info_arr);
__Pyx_DECREF(((PyObject *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_info_arr));
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->node_info_arr = ((PyArrayObject *)__pyx_t_1);
__pyx_t_1 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":539
* self.node_centroid_arr = state[2]
* self.node_info_arr = state[3]
* self.p = state[4] # <<<<<<<<<<<<<<
* self.leaf_size = state[5]
* self.n_levels = state[6]
*/
__pyx_t_1 = __Pyx_GetItemInt(__pyx_v_state, 4, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 539; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = __pyx_PyFloat_AsDouble(__pyx_t_1); if (unlikely((__pyx_t_2 == (npy_float64)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 539; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->p = __pyx_t_2;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":540
* self.node_info_arr = state[3]
* self.p = state[4]
* self.leaf_size = state[5] # <<<<<<<<<<<<<<
* self.n_levels = state[6]
* self.n_nodes = state[7]
*/
__pyx_t_1 = __Pyx_GetItemInt(__pyx_v_state, 5, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 540; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_3 = __Pyx_PyInt_from_py_npy_int32(__pyx_t_1); if (unlikely((__pyx_t_3 == (npy_int32)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 540; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->leaf_size = __pyx_t_3;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":541
* self.p = state[4]
* self.leaf_size = state[5]
* self.n_levels = state[6] # <<<<<<<<<<<<<<
* self.n_nodes = state[7]
*
*/
__pyx_t_1 = __Pyx_GetItemInt(__pyx_v_state, 6, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 541; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_3 = __Pyx_PyInt_from_py_npy_int32(__pyx_t_1); if (unlikely((__pyx_t_3 == (npy_int32)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 541; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->n_levels = __pyx_t_3;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":542
* self.leaf_size = state[5]
* self.n_levels = state[6]
* self.n_nodes = state[7] # <<<<<<<<<<<<<<
*
* def query(self, X, k=1, return_distance=True):
*/
__pyx_t_1 = __Pyx_GetItemInt(__pyx_v_state, 7, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 542; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_3 = __Pyx_PyInt_from_py_npy_int32(__pyx_t_1); if (unlikely((__pyx_t_3 == (npy_int32)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 542; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->n_nodes = __pyx_t_3;
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_AddTraceback("sklearn.ball_tree.BallTree.__setstate__");
__pyx_r = NULL;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":544
* self.n_nodes = state[7]
*
* def query(self, X, k=1, return_distance=True): # <<<<<<<<<<<<<<
* """
* query(X, k=1, return_distance=True)
*/
static PyObject *__pyx_pf_7sklearn_9ball_tree_8BallTree_query(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
static char __pyx_doc_7sklearn_9ball_tree_8BallTree_query[] = "\n query(X, k=1, return_distance=True)\n\n query the Ball Tree for the k nearest neighbors\n\n Parameters\n ----------\n X : array-like, last dimension self.dim\n An array of points to query\n k : integer (default = 1)\n The number of nearest neighbors to return\n return_distance : boolean (default = True)\n if True, return a tuple (d,i)\n if False, return array i\n\n Returns\n -------\n i : if return_distance == False\n (d,i) : if return_distance == True\n\n d : array of doubles - shape: x.shape[:-1] + (k,)\n each entry gives the list of distances to the\n neighbors of the corresponding point\n (note that distances are not sorted)\n\n i : array of integers - shape: x.shape[:-1] + (k,)\n each entry gives the list of indices of\n neighbors of the corresponding point\n (note that neighbors are not sorted)\n\n Examples\n --------\n Query for k-nearest neighbors\n\n >>> import numpy as np\n >>> np.random.seed(0)\n >>> X = np.random.random((10,3)) # 10 points in 3 dimensions\n >>> ball_tree = BallTree(X, leaf_size=2)\n >>> dist, ind = ball_tree.query(X[0], k=3)\n >>> print ind # indices of 3 closest neighbors\n [0 3 1]\n >>> print dist # distances to 3 closest neighbors\n [ 0. 0.19662693 0.29473397]\n ";
static PyObject *__pyx_pf_7sklearn_9ball_tree_8BallTree_query(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
PyObject *__pyx_v_X = 0;
PyObject *__pyx_v_k = 0;
PyObject *__pyx_v_return_distance = 0;
PyObject *__pyx_v_orig_shape;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_use_max_heap;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_neighbors;
PyArrayObject *__pyx_v_distances = 0;
PyArrayObject *__pyx_v_idx_array = 0;
PyArrayObject *__pyx_v_Xi;
__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_dist_ptr;
__pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_idx_ptr;
struct __pyx_t_7sklearn_9ball_tree_stack __pyx_v_node_stack;
PyObject *__pyx_r = NULL;
PyObject *__pyx_t_1 = NULL;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
PyObject *__pyx_t_4 = NULL;
int __pyx_t_5;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_6;
Py_ssize_t __pyx_t_7;
PyObject *__pyx_t_8 = NULL;
static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__X,&__pyx_n_s__k,&__pyx_n_s__return_distance,0};
__Pyx_RefNannySetupContext("query");
if (unlikely(__pyx_kwds)) {
Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
PyObject* values[3] = {0,0,0};
values[1] = ((PyObject *)__pyx_int_1);
values[2] = __pyx_k_7;
switch (PyTuple_GET_SIZE(__pyx_args)) {
case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2);
case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
case 0: break;
default: goto __pyx_L5_argtuple_error;
}
switch (PyTuple_GET_SIZE(__pyx_args)) {
case 0:
values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__X);
if (likely(values[0])) kw_args--;
else goto __pyx_L5_argtuple_error;
case 1:
if (kw_args > 0) {
PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__k);
if (value) { values[1] = value; kw_args--; }
}
case 2:
if (kw_args > 0) {
PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__return_distance);
if (value) { values[2] = value; kw_args--; }
}
}
if (unlikely(kw_args > 0)) {
if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "query") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 544; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
}
__pyx_v_X = values[0];
__pyx_v_k = values[1];
__pyx_v_return_distance = values[2];
} else {
__pyx_v_k = ((PyObject *)__pyx_int_1);
__pyx_v_return_distance = __pyx_k_7;
switch (PyTuple_GET_SIZE(__pyx_args)) {
case 3: __pyx_v_return_distance = PyTuple_GET_ITEM(__pyx_args, 2);
case 2: __pyx_v_k = PyTuple_GET_ITEM(__pyx_args, 1);
case 1: __pyx_v_X = PyTuple_GET_ITEM(__pyx_args, 0);
break;
default: goto __pyx_L5_argtuple_error;
}
}
goto __pyx_L4_argument_unpacking_done;
__pyx_L5_argtuple_error:;
__Pyx_RaiseArgtupleInvalid("query", 0, 1, 3, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 544; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
__pyx_L3_error:;
__Pyx_AddTraceback("sklearn.ball_tree.BallTree.query");
__Pyx_RefNannyFinishContext();
return NULL;
__pyx_L4_argument_unpacking_done:;
__Pyx_INCREF(__pyx_v_X);
__pyx_v_orig_shape = Py_None; __Pyx_INCREF(Py_None);
__pyx_v_Xi = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":589
* [ 0. 0.19662693 0.29473397]
* """
* X = np.asarray(X, dtype=DTYPE, order='C') # <<<<<<<<<<<<<<
* X = np.atleast_2d(X)
*
*/
__pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 589; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__asarray); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 589; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 589; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_INCREF(__pyx_v_X);
PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_X);
__Pyx_GIVEREF(__pyx_v_X);
__pyx_t_3 = PyDict_New(); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 589; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_3));
__pyx_t_4 = __Pyx_GetName(__pyx_m, __pyx_n_s__DTYPE); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 589; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__dtype), __pyx_t_4) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 589; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__order), ((PyObject *)__pyx_n_s__C)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 589; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_4 = PyEval_CallObjectWithKeywords(__pyx_t_2, __pyx_t_1, ((PyObject *)__pyx_t_3)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 589; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
__Pyx_DECREF(__pyx_v_X);
__pyx_v_X = __pyx_t_4;
__pyx_t_4 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":590
* """
* X = np.asarray(X, dtype=DTYPE, order='C')
* X = np.atleast_2d(X) # <<<<<<<<<<<<<<
*
* if X.shape[-1] != self.data.shape[1]:
*/
__pyx_t_4 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 590; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__pyx_t_3 = PyObject_GetAttr(__pyx_t_4, __pyx_n_s__atleast_2d); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 590; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 590; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_INCREF(__pyx_v_X);
PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_v_X);
__Pyx_GIVEREF(__pyx_v_X);
__pyx_t_1 = PyObject_Call(__pyx_t_3, __pyx_t_4, NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 590; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(__pyx_v_X);
__pyx_v_X = __pyx_t_1;
__pyx_t_1 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":592
* X = np.atleast_2d(X)
*
* if X.shape[-1] != self.data.shape[1]: # <<<<<<<<<<<<<<
* raise ValueError("query data dimension must match BallTree "
* "data dimension")
*/
__pyx_t_1 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__shape); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_4 = __Pyx_GetItemInt(__pyx_t_1, -1, sizeof(long), PyInt_FromLong); if (!__pyx_t_4) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = __Pyx_PyInt_to_py_Py_intptr_t((((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data->dimensions[1])); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_3 = PyObject_RichCompare(__pyx_t_4, __pyx_t_1, Py_NE); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 592; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
if (__pyx_t_5) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":593
*
* if X.shape[-1] != self.data.shape[1]:
* raise ValueError("query data dimension must match BallTree " # <<<<<<<<<<<<<<
* "data dimension")
*
*/
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 593; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_INCREF(((PyObject *)__pyx_kp_s_8));
PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)__pyx_kp_s_8));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_s_8));
__pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_3, NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 593; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_Raise(__pyx_t_1, 0, 0);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 593; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L6;
}
__pyx_L6:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":596
* "data dimension")
*
* if k > self.data.shape[0]: # <<<<<<<<<<<<<<
* raise ValueError("k must be less than or equal "
* "to the number of training points")
*/
__pyx_t_1 = __Pyx_PyInt_to_py_Py_intptr_t((((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data->dimensions[0])); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 596; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_3 = PyObject_RichCompare(__pyx_v_k, __pyx_t_1, Py_GT); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 596; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 596; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
if (__pyx_t_5) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":597
*
* if k > self.data.shape[0]:
* raise ValueError("k must be less than or equal " # <<<<<<<<<<<<<<
* "to the number of training points")
*
*/
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 597; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_INCREF(((PyObject *)__pyx_kp_s_9));
PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)__pyx_kp_s_9));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_s_9));
__pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_3, NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 597; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_Raise(__pyx_t_1, 0, 0);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 597; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L7;
}
__pyx_L7:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":601
*
* # flatten X for iteration
* orig_shape = X.shape # <<<<<<<<<<<<<<
* X = X.reshape((-1, X.shape[-1]))
*
*/
__pyx_t_1 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__shape); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 601; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_v_orig_shape);
__pyx_v_orig_shape = __pyx_t_1;
__pyx_t_1 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":602
* # flatten X for iteration
* orig_shape = X.shape
* X = X.reshape((-1, X.shape[-1])) # <<<<<<<<<<<<<<
*
* # for k less than 5, a priority queue is slightly faster
*/
__pyx_t_1 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__reshape); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 602; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_3 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__shape); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 602; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_4 = __Pyx_GetItemInt(__pyx_t_3, -1, sizeof(long), PyInt_FromLong); if (!__pyx_t_4) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 602; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_3 = PyTuple_New(2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 602; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_INCREF(__pyx_int_neg_1);
PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_int_neg_1);
__Pyx_GIVEREF(__pyx_int_neg_1);
PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_t_4);
__Pyx_GIVEREF(__pyx_t_4);
__pyx_t_4 = 0;
__pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 602; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_3);
__Pyx_GIVEREF(__pyx_t_3);
__pyx_t_3 = 0;
__pyx_t_3 = PyObject_Call(__pyx_t_1, __pyx_t_4, NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 602; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(__pyx_v_X);
__pyx_v_X = __pyx_t_3;
__pyx_t_3 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":606
* # for k less than 5, a priority queue is slightly faster
* # for more neighbors, a max-heap implementation is faster
* cdef ITYPE_t use_max_heap = (k >= 5) # <<<<<<<<<<<<<<
*
* cdef ITYPE_t i
*/
__pyx_t_3 = PyObject_RichCompare(__pyx_v_k, __pyx_int_5, Py_GE); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 606; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_6 = __Pyx_PyInt_from_py_npy_int32(__pyx_t_3); if (unlikely((__pyx_t_6 == (npy_int32)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 606; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_v_use_max_heap = __pyx_t_6;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":609
*
* cdef ITYPE_t i
* cdef ITYPE_t n_neighbors = k # <<<<<<<<<<<<<<
* cdef np.ndarray distances = np.empty((X.shape[0], n_neighbors),
* dtype=DTYPE)
*/
__pyx_t_6 = __Pyx_PyInt_from_py_npy_int32(__pyx_v_k); if (unlikely((__pyx_t_6 == (npy_int32)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 609; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_v_n_neighbors = __pyx_t_6;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":610
* cdef ITYPE_t i
* cdef ITYPE_t n_neighbors = k
* cdef np.ndarray distances = np.empty((X.shape[0], n_neighbors), # <<<<<<<<<<<<<<
* dtype=DTYPE)
* cdef np.ndarray idx_array = np.empty((X.shape[0], n_neighbors),
*/
__pyx_t_3 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 610; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_4 = PyObject_GetAttr(__pyx_t_3, __pyx_n_s__empty); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 610; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_3 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__shape); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 610; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_1 = __Pyx_GetItemInt(__pyx_t_3, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 610; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_3 = __Pyx_PyInt_to_py_npy_int32(__pyx_v_n_neighbors); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 610; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 610; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_1);
__Pyx_GIVEREF(__pyx_t_1);
PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_t_3);
__Pyx_GIVEREF(__pyx_t_3);
__pyx_t_1 = 0;
__pyx_t_3 = 0;
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 610; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
__Pyx_GIVEREF(__pyx_t_2);
__pyx_t_2 = 0;
__pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 610; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_2));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":611
* cdef ITYPE_t n_neighbors = k
* cdef np.ndarray distances = np.empty((X.shape[0], n_neighbors),
* dtype=DTYPE) # <<<<<<<<<<<<<<
* cdef np.ndarray idx_array = np.empty((X.shape[0], n_neighbors),
* dtype=ITYPE)
*/
__pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__DTYPE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 611; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__dtype), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 610; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = PyEval_CallObjectWithKeywords(__pyx_t_4, __pyx_t_3, ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 610; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 610; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_v_distances = ((PyArrayObject *)__pyx_t_1);
__pyx_t_1 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":612
* cdef np.ndarray distances = np.empty((X.shape[0], n_neighbors),
* dtype=DTYPE)
* cdef np.ndarray idx_array = np.empty((X.shape[0], n_neighbors), # <<<<<<<<<<<<<<
* dtype=ITYPE)
* cdef np.ndarray Xi
*/
__pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 612; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__empty); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 612; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__shape); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 612; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_3 = __Pyx_GetItemInt(__pyx_t_1, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_3) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 612; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = __Pyx_PyInt_to_py_npy_int32(__pyx_v_n_neighbors); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 612; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 612; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_3);
__Pyx_GIVEREF(__pyx_t_3);
PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_t_1);
__Pyx_GIVEREF(__pyx_t_1);
__pyx_t_3 = 0;
__pyx_t_1 = 0;
__pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 612; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_4);
__Pyx_GIVEREF(__pyx_t_4);
__pyx_t_4 = 0;
__pyx_t_4 = PyDict_New(); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 612; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_4));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":613
* dtype=DTYPE)
* cdef np.ndarray idx_array = np.empty((X.shape[0], n_neighbors),
* dtype=ITYPE) # <<<<<<<<<<<<<<
* cdef np.ndarray Xi
*
*/
__pyx_t_3 = __Pyx_GetName(__pyx_m, __pyx_n_s__ITYPE); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 613; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
if (PyDict_SetItem(__pyx_t_4, ((PyObject *)__pyx_n_s__dtype), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 612; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_3 = PyEval_CallObjectWithKeywords(__pyx_t_2, __pyx_t_1, ((PyObject *)__pyx_t_4)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 612; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0;
if (!(likely(((__pyx_t_3) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_3, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 612; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_v_idx_array = ((PyArrayObject *)__pyx_t_3);
__pyx_t_3 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":616
* cdef np.ndarray Xi
*
* distances[:] = np.inf # <<<<<<<<<<<<<<
*
* cdef DTYPE_t* dist_ptr = <DTYPE_t*> distances.data
*/
__pyx_t_3 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 616; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_4 = PyObject_GetAttr(__pyx_t_3, __pyx_n_s__inf); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 616; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
if (PySequence_SetSlice(((PyObject *)__pyx_v_distances), 0, PY_SSIZE_T_MAX, __pyx_t_4) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 616; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":618
* distances[:] = np.inf
*
* cdef DTYPE_t* dist_ptr = <DTYPE_t*> distances.data # <<<<<<<<<<<<<<
* cdef ITYPE_t* idx_ptr = <ITYPE_t*> idx_array.data
*
*/
__pyx_v_dist_ptr = ((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_distances->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":619
*
* cdef DTYPE_t* dist_ptr = <DTYPE_t*> distances.data
* cdef ITYPE_t* idx_ptr = <ITYPE_t*> idx_array.data # <<<<<<<<<<<<<<
*
* cdef stack node_stack
*/
__pyx_v_idx_ptr = ((__pyx_t_7sklearn_9ball_tree_ITYPE_t *)__pyx_v_idx_array->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":622
*
* cdef stack node_stack
* stack_create(&node_stack, self.n_levels + 1) # <<<<<<<<<<<<<<
*
* for i, Xi in enumerate(X):
*/
__pyx_f_7sklearn_9ball_tree_stack_create((&__pyx_v_node_stack), (((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->n_levels + 1));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":624
* stack_create(&node_stack, self.n_levels + 1)
*
* for i, Xi in enumerate(X): # <<<<<<<<<<<<<<
* self.query_one_(<DTYPE_t*>Xi.data, n_neighbors,
* dist_ptr, idx_ptr, &node_stack, use_max_heap)
*/
__pyx_t_6 = 0;
if (PyList_CheckExact(__pyx_v_X) || PyTuple_CheckExact(__pyx_v_X)) {
__pyx_t_7 = 0; __pyx_t_4 = __pyx_v_X; __Pyx_INCREF(__pyx_t_4);
} else {
__pyx_t_7 = -1; __pyx_t_4 = PyObject_GetIter(__pyx_v_X); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 624; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
}
for (;;) {
if (likely(PyList_CheckExact(__pyx_t_4))) {
if (__pyx_t_7 >= PyList_GET_SIZE(__pyx_t_4)) break;
__pyx_t_3 = PyList_GET_ITEM(__pyx_t_4, __pyx_t_7); __Pyx_INCREF(__pyx_t_3); __pyx_t_7++;
} else if (likely(PyTuple_CheckExact(__pyx_t_4))) {
if (__pyx_t_7 >= PyTuple_GET_SIZE(__pyx_t_4)) break;
__pyx_t_3 = PyTuple_GET_ITEM(__pyx_t_4, __pyx_t_7); __Pyx_INCREF(__pyx_t_3); __pyx_t_7++;
} else {
__pyx_t_3 = PyIter_Next(__pyx_t_4);
if (!__pyx_t_3) {
if (unlikely(PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 624; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
break;
}
__Pyx_GOTREF(__pyx_t_3);
}
if (!(likely(((__pyx_t_3) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_3, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 624; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(((PyObject *)__pyx_v_Xi));
__pyx_v_Xi = ((PyArrayObject *)__pyx_t_3);
__pyx_t_3 = 0;
__pyx_v_i = __pyx_t_6;
__pyx_t_6 = (__pyx_t_6 + 1);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":626
* for i, Xi in enumerate(X):
* self.query_one_(<DTYPE_t*>Xi.data, n_neighbors,
* dist_ptr, idx_ptr, &node_stack, use_max_heap) # <<<<<<<<<<<<<<
*
* # if max-heap is used, results must be sorted
*/
((struct __pyx_vtabstruct_7sklearn_9ball_tree_BallTree *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->__pyx_vtab)->query_one_(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self), ((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_Xi->data), __pyx_v_n_neighbors, __pyx_v_dist_ptr, __pyx_v_idx_ptr, (&__pyx_v_node_stack), __pyx_v_use_max_heap);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":629
*
* # if max-heap is used, results must be sorted
* if use_max_heap: # <<<<<<<<<<<<<<
* sort_dist_idx(dist_ptr, idx_ptr, n_neighbors)
*
*/
if (__pyx_v_use_max_heap) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":630
* # if max-heap is used, results must be sorted
* if use_max_heap:
* sort_dist_idx(dist_ptr, idx_ptr, n_neighbors) # <<<<<<<<<<<<<<
*
* dist_ptr += n_neighbors
*/
__pyx_f_7sklearn_9ball_tree_sort_dist_idx(__pyx_v_dist_ptr, __pyx_v_idx_ptr, __pyx_v_n_neighbors);
goto __pyx_L10;
}
__pyx_L10:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":632
* sort_dist_idx(dist_ptr, idx_ptr, n_neighbors)
*
* dist_ptr += n_neighbors # <<<<<<<<<<<<<<
* idx_ptr += n_neighbors
*
*/
__pyx_v_dist_ptr += __pyx_v_n_neighbors;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":633
*
* dist_ptr += n_neighbors
* idx_ptr += n_neighbors # <<<<<<<<<<<<<<
*
* stack_destroy(&node_stack)
*/
__pyx_v_idx_ptr += __pyx_v_n_neighbors;
}
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":635
* idx_ptr += n_neighbors
*
* stack_destroy(&node_stack) # <<<<<<<<<<<<<<
*
* # deflatten results
*/
__pyx_f_7sklearn_9ball_tree_stack_destroy((&__pyx_v_node_stack));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":638
*
* # deflatten results
* if return_distance: # <<<<<<<<<<<<<<
* return (distances.reshape((orig_shape[:-1]) + (k,)),
* idx_array.reshape((orig_shape[:-1]) + (k,)))
*/
__pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_v_return_distance); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 638; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
if (__pyx_t_5) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":639
* # deflatten results
* if return_distance:
* return (distances.reshape((orig_shape[:-1]) + (k,)), # <<<<<<<<<<<<<<
* idx_array.reshape((orig_shape[:-1]) + (k,)))
* else:
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_4 = PyObject_GetAttr(((PyObject *)__pyx_v_distances), __pyx_n_s__reshape); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 639; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__pyx_t_3 = PySequence_GetSlice(__pyx_v_orig_shape, 0, -1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 639; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 639; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_INCREF(__pyx_v_k);
PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_k);
__Pyx_GIVEREF(__pyx_v_k);
__pyx_t_2 = PyNumber_Add(__pyx_t_3, __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 639; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 639; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_2);
__Pyx_GIVEREF(__pyx_t_2);
__pyx_t_2 = 0;
__pyx_t_2 = PyObject_Call(__pyx_t_4, __pyx_t_1, NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 639; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":640
* if return_distance:
* return (distances.reshape((orig_shape[:-1]) + (k,)),
* idx_array.reshape((orig_shape[:-1]) + (k,))) # <<<<<<<<<<<<<<
* else:
* return idx_array.reshape((orig_shape[:-1]) + (k,))
*/
__pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_v_idx_array), __pyx_n_s__reshape); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 640; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_4 = PySequence_GetSlice(__pyx_v_orig_shape, 0, -1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 640; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 640; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_INCREF(__pyx_v_k);
PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_v_k);
__Pyx_GIVEREF(__pyx_v_k);
__pyx_t_8 = PyNumber_Add(__pyx_t_4, __pyx_t_3); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 640; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_8);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 640; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_8);
__Pyx_GIVEREF(__pyx_t_8);
__pyx_t_8 = 0;
__pyx_t_8 = PyObject_Call(__pyx_t_1, __pyx_t_3, NULL); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 640; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_8);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_3 = PyTuple_New(2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 639; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
__Pyx_GIVEREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_t_8);
__Pyx_GIVEREF(__pyx_t_8);
__pyx_t_2 = 0;
__pyx_t_8 = 0;
__pyx_r = __pyx_t_3;
__pyx_t_3 = 0;
goto __pyx_L0;
goto __pyx_L11;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":642
* idx_array.reshape((orig_shape[:-1]) + (k,)))
* else:
* return idx_array.reshape((orig_shape[:-1]) + (k,)) # <<<<<<<<<<<<<<
*
* def query_radius(self, X, r, return_distance=False,
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_3 = PyObject_GetAttr(((PyObject *)__pyx_v_idx_array), __pyx_n_s__reshape); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 642; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_8 = PySequence_GetSlice(__pyx_v_orig_shape, 0, -1); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 642; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_8);
__pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 642; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_INCREF(__pyx_v_k);
PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_v_k);
__Pyx_GIVEREF(__pyx_v_k);
__pyx_t_1 = PyNumber_Add(__pyx_t_8, __pyx_t_2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 642; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 642; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_1);
__Pyx_GIVEREF(__pyx_t_1);
__pyx_t_1 = 0;
__pyx_t_1 = PyObject_Call(__pyx_t_3, __pyx_t_2, NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 642; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__pyx_r = __pyx_t_1;
__pyx_t_1 = 0;
goto __pyx_L0;
}
__pyx_L11:;
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_XDECREF(__pyx_t_4);
__Pyx_XDECREF(__pyx_t_8);
__Pyx_AddTraceback("sklearn.ball_tree.BallTree.query");
__pyx_r = NULL;
__pyx_L0:;
__Pyx_DECREF(__pyx_v_orig_shape);
__Pyx_XDECREF((PyObject *)__pyx_v_distances);
__Pyx_XDECREF((PyObject *)__pyx_v_idx_array);
__Pyx_DECREF((PyObject *)__pyx_v_Xi);
__Pyx_DECREF(__pyx_v_X);
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":644
* return idx_array.reshape((orig_shape[:-1]) + (k,))
*
* def query_radius(self, X, r, return_distance=False, # <<<<<<<<<<<<<<
* count_only=False, sort_results=False):
* """
*/
static PyObject *__pyx_pf_7sklearn_9ball_tree_8BallTree_query_radius(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
static char __pyx_doc_7sklearn_9ball_tree_8BallTree_query_radius[] = "\n query_radius(self, X, r, count_only = False):\n\n query the Ball Tree for neighbors within a ball of size r\n\n Parameters\n ----------\n X : array-like, last dimension self.dim\n An array of points to query\n r : distance within which neighbors are returned\n r can be a single value, or an array of values of shape\n x.shape[:-1] if different radii are desired for each point.\n return_distance : boolean (default = False)\n if True, return distances to neighbors of each point\n if False, return only neighbors\n Note that unlike BallTree.query(), setting return_distance=True\n adds to the computation time. Not all distances need to be\n calculated explicitly for return_distance=False. Results are\n not sorted by default: see ``sort_results`` keyword.\n count_only : boolean (default = False)\n if True, return only the count of points within distance r\n if False, return the indices of all points within distance r\n If return_distance==True, setting count_only=True will\n result in an error.\n sort_results : boolean (default = False)\n if True, the distances and indices will be sorted before being\n returned. If False, the results will not be sorted. If\n return_distance == False, settinng sort_results = True will\n result in an error.\n\n Returns\n -------\n count : if count_only == True\n ind : if count_only == False and return_distance == False\n (ind, dist) : if count_only == False and return_distance == True\n\n count : array of integers, shape = X.shape[:-1]\n each entry gives the number of neighbors within\n a distance r of the corresponding point.\n\n ind : array of objects, shape = X.shape[:-1]\n each element is ""a numpy integer array listing the indices of\n neighbors of the corresponding point. Note that unlike\n the results of BallTree.query(), the returned neighbors\n are not sorted by distance\n\n dist : array of objects, shape = X.shape[:-1]\n each element is a numpy double array\n listing the distances corresponding to indices in i.\n\n Examples\n --------\n Query for neighbors in a given radius\n\n >>> import numpy as np\n >>> np.random.seed(0)\n >>> X = np.random.random((10,3)) # 10 points in 3 dimensions\n >>> ball_tree = BallTree(X, leaf_size=2)\n >>> print ball_tree.query_radius(X[0], r=0.3, count_only=True)\n 3\n >>> ind = ball_tree.query_radius(X[0], r=0.3)\n >>> print ind # indices of neighbors within distance 0.3\n [3 0 1]\n ";
static PyObject *__pyx_pf_7sklearn_9ball_tree_8BallTree_query_radius(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
PyObject *__pyx_v_X = 0;
PyObject *__pyx_v_r = 0;
PyObject *__pyx_v_return_distance = 0;
PyObject *__pyx_v_count_only = 0;
PyObject *__pyx_v_sort_results = 0;
PyArrayObject *__pyx_v_idx_array;
PyArrayObject *__pyx_v_idx_array_i;
PyArrayObject *__pyx_v_distances;
PyArrayObject *__pyx_v_distances_i;
PyArrayObject *__pyx_v_pt;
PyArrayObject *__pyx_v_count;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_count_i;
PyObject *__pyx_v_orig_shape;
struct __pyx_t_7sklearn_9ball_tree_stack __pyx_v_node_stack;
PyObject *__pyx_v_pt_idx;
PyObject *__pyx_r = NULL;
int __pyx_t_1;
int __pyx_t_2;
int __pyx_t_3;
PyObject *__pyx_t_4 = NULL;
PyObject *__pyx_t_5 = NULL;
PyObject *__pyx_t_6 = NULL;
PyObject *__pyx_t_7 = NULL;
PyObject *__pyx_t_8 = NULL;
PyObject *__pyx_t_9 = NULL;
Py_ssize_t __pyx_t_10;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_t_11;
static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__X,&__pyx_n_s__r,&__pyx_n_s__return_distance,&__pyx_n_s__count_only,&__pyx_n_s__sort_results,0};
__Pyx_RefNannySetupContext("query_radius");
if (unlikely(__pyx_kwds)) {
Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
PyObject* values[5] = {0,0,0,0,0};
values[2] = __pyx_k_10;
values[3] = __pyx_k_11;
values[4] = __pyx_k_12;
switch (PyTuple_GET_SIZE(__pyx_args)) {
case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4);
case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3);
case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2);
case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
case 0: break;
default: goto __pyx_L5_argtuple_error;
}
switch (PyTuple_GET_SIZE(__pyx_args)) {
case 0:
values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__X);
if (likely(values[0])) kw_args--;
else goto __pyx_L5_argtuple_error;
case 1:
values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__r);
if (likely(values[1])) kw_args--;
else {
__Pyx_RaiseArgtupleInvalid("query_radius", 0, 2, 5, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 644; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
}
case 2:
if (kw_args > 0) {
PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__return_distance);
if (value) { values[2] = value; kw_args--; }
}
case 3:
if (kw_args > 0) {
PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__count_only);
if (value) { values[3] = value; kw_args--; }
}
case 4:
if (kw_args > 0) {
PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__sort_results);
if (value) { values[4] = value; kw_args--; }
}
}
if (unlikely(kw_args > 0)) {
if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "query_radius") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 644; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
}
__pyx_v_X = values[0];
__pyx_v_r = values[1];
__pyx_v_return_distance = values[2];
__pyx_v_count_only = values[3];
__pyx_v_sort_results = values[4];
} else {
__pyx_v_return_distance = __pyx_k_10;
__pyx_v_count_only = __pyx_k_11;
__pyx_v_sort_results = __pyx_k_12;
switch (PyTuple_GET_SIZE(__pyx_args)) {
case 5:
__pyx_v_sort_results = PyTuple_GET_ITEM(__pyx_args, 4);
case 4:
__pyx_v_count_only = PyTuple_GET_ITEM(__pyx_args, 3);
case 3:
__pyx_v_return_distance = PyTuple_GET_ITEM(__pyx_args, 2);
case 2:
__pyx_v_r = PyTuple_GET_ITEM(__pyx_args, 1);
__pyx_v_X = PyTuple_GET_ITEM(__pyx_args, 0);
break;
default: goto __pyx_L5_argtuple_error;
}
}
goto __pyx_L4_argument_unpacking_done;
__pyx_L5_argtuple_error:;
__Pyx_RaiseArgtupleInvalid("query_radius", 0, 2, 5, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 644; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
__pyx_L3_error:;
__Pyx_AddTraceback("sklearn.ball_tree.BallTree.query_radius");
__Pyx_RefNannyFinishContext();
return NULL;
__pyx_L4_argument_unpacking_done:;
__Pyx_INCREF(__pyx_v_X);
__Pyx_INCREF(__pyx_v_r);
__pyx_v_idx_array = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None);
__pyx_v_idx_array_i = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None);
__pyx_v_distances = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None);
__pyx_v_distances_i = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None);
__pyx_v_pt = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None);
__pyx_v_count = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None);
__pyx_v_orig_shape = Py_None; __Pyx_INCREF(Py_None);
__pyx_v_pt_idx = Py_None; __Pyx_INCREF(Py_None);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":710
* [3 0 1]
* """
* if count_only and return_distance: # <<<<<<<<<<<<<<
* raise ValueError("count_only and return_distance "
* "cannot both be true")
*/
__pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_count_only); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 710; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
if (__pyx_t_1) {
__pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_v_return_distance); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 710; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_3 = __pyx_t_2;
} else {
__pyx_t_3 = __pyx_t_1;
}
if (__pyx_t_3) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":711
* """
* if count_only and return_distance:
* raise ValueError("count_only and return_distance " # <<<<<<<<<<<<<<
* "cannot both be true")
*
*/
__pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 711; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_INCREF(((PyObject *)__pyx_kp_s_13));
PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_kp_s_13));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_s_13));
__pyx_t_5 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_4, NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 711; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_Raise(__pyx_t_5, 0, 0);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 711; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L6;
}
__pyx_L6:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":714
* "cannot both be true")
*
* if sort_results and not return_distance: # <<<<<<<<<<<<<<
* raise ValueError("return_distance must be True if sort_distances "
* "is True")
*/
__pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_v_sort_results); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 714; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
if (__pyx_t_3) {
__pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_return_distance); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 714; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_2 = (!__pyx_t_1);
__pyx_t_1 = __pyx_t_2;
} else {
__pyx_t_1 = __pyx_t_3;
}
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":715
*
* if sort_results and not return_distance:
* raise ValueError("return_distance must be True if sort_distances " # <<<<<<<<<<<<<<
* "is True")
*
*/
__pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 715; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_INCREF(((PyObject *)__pyx_kp_s_14));
PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_kp_s_14));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_s_14));
__pyx_t_4 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_5, NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 715; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__Pyx_Raise(__pyx_t_4, 0, 0);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 715; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L7;
}
__pyx_L7:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":723
*
* # prepare X for query
* X = np.asarray(X, dtype=DTYPE, order='C') # <<<<<<<<<<<<<<
* X = np.atleast_2d(X)
* if X.shape[-1] != self.data.shape[1]:
*/
__pyx_t_4 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 723; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__pyx_t_5 = PyObject_GetAttr(__pyx_t_4, __pyx_n_s__asarray); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 723; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 723; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_INCREF(__pyx_v_X);
PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_v_X);
__Pyx_GIVEREF(__pyx_v_X);
__pyx_t_6 = PyDict_New(); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 723; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_6));
__pyx_t_7 = __Pyx_GetName(__pyx_m, __pyx_n_s__DTYPE); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 723; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
if (PyDict_SetItem(__pyx_t_6, ((PyObject *)__pyx_n_s__dtype), __pyx_t_7) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 723; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
if (PyDict_SetItem(__pyx_t_6, ((PyObject *)__pyx_n_s__order), ((PyObject *)__pyx_n_s__C)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 723; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_7 = PyEval_CallObjectWithKeywords(__pyx_t_5, __pyx_t_4, ((PyObject *)__pyx_t_6)); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 723; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0;
__Pyx_DECREF(__pyx_v_X);
__pyx_v_X = __pyx_t_7;
__pyx_t_7 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":724
* # prepare X for query
* X = np.asarray(X, dtype=DTYPE, order='C')
* X = np.atleast_2d(X) # <<<<<<<<<<<<<<
* if X.shape[-1] != self.data.shape[1]:
* raise ValueError("query data dimension must match BallTree "
*/
__pyx_t_7 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 724; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_6 = PyObject_GetAttr(__pyx_t_7, __pyx_n_s__atleast_2d); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 724; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__pyx_t_7 = PyTuple_New(1); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 724; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_INCREF(__pyx_v_X);
PyTuple_SET_ITEM(__pyx_t_7, 0, __pyx_v_X);
__Pyx_GIVEREF(__pyx_v_X);
__pyx_t_4 = PyObject_Call(__pyx_t_6, __pyx_t_7, NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 724; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__Pyx_DECREF(__pyx_v_X);
__pyx_v_X = __pyx_t_4;
__pyx_t_4 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":725
* X = np.asarray(X, dtype=DTYPE, order='C')
* X = np.atleast_2d(X)
* if X.shape[-1] != self.data.shape[1]: # <<<<<<<<<<<<<<
* raise ValueError("query data dimension must match BallTree "
* "data dimension")
*/
__pyx_t_4 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__shape); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 725; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__pyx_t_7 = __Pyx_GetItemInt(__pyx_t_4, -1, sizeof(long), PyInt_FromLong); if (!__pyx_t_7) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 725; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__pyx_t_4 = __Pyx_PyInt_to_py_Py_intptr_t((((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data->dimensions[1])); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 725; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__pyx_t_6 = PyObject_RichCompare(__pyx_t_7, __pyx_t_4, Py_NE); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 725; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 725; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":726
* X = np.atleast_2d(X)
* if X.shape[-1] != self.data.shape[1]:
* raise ValueError("query data dimension must match BallTree " # <<<<<<<<<<<<<<
* "data dimension")
*
*/
__pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 726; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_INCREF(((PyObject *)__pyx_kp_s_8));
PyTuple_SET_ITEM(__pyx_t_6, 0, ((PyObject *)__pyx_kp_s_8));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_s_8));
__pyx_t_4 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_6, NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 726; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__Pyx_Raise(__pyx_t_4, 0, 0);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 726; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L8;
}
__pyx_L8:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":730
*
* # prepare r for query
* r = np.asarray(r, dtype=DTYPE, order='C') # <<<<<<<<<<<<<<
* r = np.atleast_1d(r)
* if r.shape == (1,):
*/
__pyx_t_4 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 730; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__pyx_t_6 = PyObject_GetAttr(__pyx_t_4, __pyx_n_s__asarray); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 730; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 730; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_INCREF(__pyx_v_r);
PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_v_r);
__Pyx_GIVEREF(__pyx_v_r);
__pyx_t_7 = PyDict_New(); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 730; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_7));
__pyx_t_5 = __Pyx_GetName(__pyx_m, __pyx_n_s__DTYPE); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 730; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
if (PyDict_SetItem(__pyx_t_7, ((PyObject *)__pyx_n_s__dtype), __pyx_t_5) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 730; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
if (PyDict_SetItem(__pyx_t_7, ((PyObject *)__pyx_n_s__order), ((PyObject *)__pyx_n_s__C)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 730; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_5 = PyEval_CallObjectWithKeywords(__pyx_t_6, __pyx_t_4, ((PyObject *)__pyx_t_7)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 730; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_7)); __pyx_t_7 = 0;
__Pyx_DECREF(__pyx_v_r);
__pyx_v_r = __pyx_t_5;
__pyx_t_5 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":731
* # prepare r for query
* r = np.asarray(r, dtype=DTYPE, order='C')
* r = np.atleast_1d(r) # <<<<<<<<<<<<<<
* if r.shape == (1,):
* r = r[0] * np.ones(X.shape[:-1], dtype=np.double)
*/
__pyx_t_5 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 731; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_7 = PyObject_GetAttr(__pyx_t_5, __pyx_n_s__atleast_1d); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 731; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 731; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_INCREF(__pyx_v_r);
PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_v_r);
__Pyx_GIVEREF(__pyx_v_r);
__pyx_t_4 = PyObject_Call(__pyx_t_7, __pyx_t_5, NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 731; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__Pyx_DECREF(__pyx_v_r);
__pyx_v_r = __pyx_t_4;
__pyx_t_4 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":732
* r = np.asarray(r, dtype=DTYPE, order='C')
* r = np.atleast_1d(r)
* if r.shape == (1,): # <<<<<<<<<<<<<<
* r = r[0] * np.ones(X.shape[:-1], dtype=np.double)
* else:
*/
__pyx_t_4 = PyObject_GetAttr(__pyx_v_r, __pyx_n_s__shape); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 732; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 732; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_INCREF(__pyx_int_1);
PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_int_1);
__Pyx_GIVEREF(__pyx_int_1);
__pyx_t_7 = PyObject_RichCompare(__pyx_t_4, __pyx_t_5, Py_EQ); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 732; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_t_7); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 732; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":733
* r = np.atleast_1d(r)
* if r.shape == (1,):
* r = r[0] * np.ones(X.shape[:-1], dtype=np.double) # <<<<<<<<<<<<<<
* else:
* if r.shape != X.shape[:-1]:
*/
__pyx_t_7 = __Pyx_GetItemInt(__pyx_v_r, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_7) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_5 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_4 = PyObject_GetAttr(__pyx_t_5, __pyx_n_s__ones); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_5 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__shape); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_6 = PySequence_GetSlice(__pyx_t_5, 0, -1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_6);
__Pyx_GIVEREF(__pyx_t_6);
__pyx_t_6 = 0;
__pyx_t_6 = PyDict_New(); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_6));
__pyx_t_8 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_8);
__pyx_t_9 = PyObject_GetAttr(__pyx_t_8, __pyx_n_s__double); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
if (PyDict_SetItem(__pyx_t_6, ((PyObject *)__pyx_n_s__dtype), __pyx_t_9) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
__pyx_t_9 = PyEval_CallObjectWithKeywords(__pyx_t_4, __pyx_t_5, ((PyObject *)__pyx_t_6)); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0;
__pyx_t_6 = PyNumber_Multiply(__pyx_t_7, __pyx_t_9); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
__Pyx_DECREF(__pyx_v_r);
__pyx_v_r = __pyx_t_6;
__pyx_t_6 = 0;
goto __pyx_L9;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":735
* r = r[0] * np.ones(X.shape[:-1], dtype=np.double)
* else:
* if r.shape != X.shape[:-1]: # <<<<<<<<<<<<<<
* raise ValueError("r must be broadcastable to X.shape")
*
*/
__pyx_t_6 = PyObject_GetAttr(__pyx_v_r, __pyx_n_s__shape); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 735; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__pyx_t_9 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__shape); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 735; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__pyx_t_7 = PySequence_GetSlice(__pyx_t_9, 0, -1); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 735; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
__pyx_t_9 = PyObject_RichCompare(__pyx_t_6, __pyx_t_7, Py_NE); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 735; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_t_9); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 735; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":736
* else:
* if r.shape != X.shape[:-1]:
* raise ValueError("r must be broadcastable to X.shape") # <<<<<<<<<<<<<<
*
* # flatten X and r for iteration
*/
__pyx_t_9 = PyTuple_New(1); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 736; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__Pyx_INCREF(((PyObject *)__pyx_kp_s_15));
PyTuple_SET_ITEM(__pyx_t_9, 0, ((PyObject *)__pyx_kp_s_15));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_s_15));
__pyx_t_7 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_9, NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 736; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
__Pyx_Raise(__pyx_t_7, 0, 0);
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 736; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L10;
}
__pyx_L10:;
}
__pyx_L9:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":739
*
* # flatten X and r for iteration
* orig_shape = X.shape # <<<<<<<<<<<<<<
* X = X.reshape((-1, X.shape[-1]))
* r = r.reshape(-1)
*/
__pyx_t_7 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__shape); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 739; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_v_orig_shape);
__pyx_v_orig_shape = __pyx_t_7;
__pyx_t_7 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":740
* # flatten X and r for iteration
* orig_shape = X.shape
* X = X.reshape((-1, X.shape[-1])) # <<<<<<<<<<<<<<
* r = r.reshape(-1)
*
*/
__pyx_t_7 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__reshape); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 740; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_9 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__shape); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 740; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__pyx_t_6 = __Pyx_GetItemInt(__pyx_t_9, -1, sizeof(long), PyInt_FromLong); if (!__pyx_t_6) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 740; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
__pyx_t_9 = PyTuple_New(2); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 740; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__Pyx_INCREF(__pyx_int_neg_1);
PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_int_neg_1);
__Pyx_GIVEREF(__pyx_int_neg_1);
PyTuple_SET_ITEM(__pyx_t_9, 1, __pyx_t_6);
__Pyx_GIVEREF(__pyx_t_6);
__pyx_t_6 = 0;
__pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 740; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_9);
__Pyx_GIVEREF(__pyx_t_9);
__pyx_t_9 = 0;
__pyx_t_9 = PyObject_Call(__pyx_t_7, __pyx_t_6, NULL); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 740; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__Pyx_DECREF(__pyx_v_X);
__pyx_v_X = __pyx_t_9;
__pyx_t_9 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":741
* orig_shape = X.shape
* X = X.reshape((-1, X.shape[-1]))
* r = r.reshape(-1) # <<<<<<<<<<<<<<
*
* cdef stack node_stack
*/
__pyx_t_9 = PyObject_GetAttr(__pyx_v_r, __pyx_n_s__reshape); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 741; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 741; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_INCREF(__pyx_int_neg_1);
PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_int_neg_1);
__Pyx_GIVEREF(__pyx_int_neg_1);
__pyx_t_7 = PyObject_Call(__pyx_t_9, __pyx_t_6, NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 741; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__Pyx_DECREF(__pyx_v_r);
__pyx_v_r = __pyx_t_7;
__pyx_t_7 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":744
*
* cdef stack node_stack
* stack_create(&node_stack, self.n_levels + 1) # <<<<<<<<<<<<<<
*
* if count_only:
*/
__pyx_f_7sklearn_9ball_tree_stack_create((&__pyx_v_node_stack), (((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->n_levels + 1));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":746
* stack_create(&node_stack, self.n_levels + 1)
*
* if count_only: # <<<<<<<<<<<<<<
* count = np.zeros(X.shape[0], ITYPE)
* for pt_idx, pt in enumerate(X):
*/
__pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_count_only); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 746; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":747
*
* if count_only:
* count = np.zeros(X.shape[0], ITYPE) # <<<<<<<<<<<<<<
* for pt_idx, pt in enumerate(X):
* count[pt_idx] = self.query_radius_count_(<DTYPE_t*>pt.data,
*/
__pyx_t_7 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 747; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_6 = PyObject_GetAttr(__pyx_t_7, __pyx_n_s__zeros); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 747; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__pyx_t_7 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__shape); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 747; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_9 = __Pyx_GetItemInt(__pyx_t_7, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_9) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 747; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__pyx_t_7 = __Pyx_GetName(__pyx_m, __pyx_n_s__ITYPE); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 747; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 747; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_9);
__Pyx_GIVEREF(__pyx_t_9);
PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_7);
__Pyx_GIVEREF(__pyx_t_7);
__pyx_t_9 = 0;
__pyx_t_7 = 0;
__pyx_t_7 = PyObject_Call(__pyx_t_6, __pyx_t_5, NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 747; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
if (!(likely(((__pyx_t_7) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_7, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 747; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(((PyObject *)__pyx_v_count));
__pyx_v_count = ((PyArrayObject *)__pyx_t_7);
__pyx_t_7 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":748
* if count_only:
* count = np.zeros(X.shape[0], ITYPE)
* for pt_idx, pt in enumerate(X): # <<<<<<<<<<<<<<
* count[pt_idx] = self.query_radius_count_(<DTYPE_t*>pt.data,
* r[pt_idx],
*/
__Pyx_INCREF(__pyx_int_0);
__pyx_t_7 = __pyx_int_0;
if (PyList_CheckExact(__pyx_v_X) || PyTuple_CheckExact(__pyx_v_X)) {
__pyx_t_10 = 0; __pyx_t_5 = __pyx_v_X; __Pyx_INCREF(__pyx_t_5);
} else {
__pyx_t_10 = -1; __pyx_t_5 = PyObject_GetIter(__pyx_v_X); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 748; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
}
for (;;) {
if (likely(PyList_CheckExact(__pyx_t_5))) {
if (__pyx_t_10 >= PyList_GET_SIZE(__pyx_t_5)) break;
__pyx_t_6 = PyList_GET_ITEM(__pyx_t_5, __pyx_t_10); __Pyx_INCREF(__pyx_t_6); __pyx_t_10++;
} else if (likely(PyTuple_CheckExact(__pyx_t_5))) {
if (__pyx_t_10 >= PyTuple_GET_SIZE(__pyx_t_5)) break;
__pyx_t_6 = PyTuple_GET_ITEM(__pyx_t_5, __pyx_t_10); __Pyx_INCREF(__pyx_t_6); __pyx_t_10++;
} else {
__pyx_t_6 = PyIter_Next(__pyx_t_5);
if (!__pyx_t_6) {
if (unlikely(PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 748; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
break;
}
__Pyx_GOTREF(__pyx_t_6);
}
if (!(likely(((__pyx_t_6) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_6, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 748; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(((PyObject *)__pyx_v_pt));
__pyx_v_pt = ((PyArrayObject *)__pyx_t_6);
__pyx_t_6 = 0;
__Pyx_INCREF(__pyx_t_7);
__Pyx_DECREF(__pyx_v_pt_idx);
__pyx_v_pt_idx = __pyx_t_7;
__pyx_t_6 = PyNumber_Add(__pyx_t_7, __pyx_int_1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 748; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_7);
__pyx_t_7 = __pyx_t_6;
__pyx_t_6 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":750
* for pt_idx, pt in enumerate(X):
* count[pt_idx] = self.query_radius_count_(<DTYPE_t*>pt.data,
* r[pt_idx], # <<<<<<<<<<<<<<
* &node_stack)
* elif not return_distance:
*/
__pyx_t_6 = PyObject_GetItem(__pyx_v_r, __pyx_v_pt_idx); if (!__pyx_t_6) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 750; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__pyx_t_11 = __pyx_PyFloat_AsDouble(__pyx_t_6); if (unlikely((__pyx_t_11 == (npy_float64)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 750; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":751
* count[pt_idx] = self.query_radius_count_(<DTYPE_t*>pt.data,
* r[pt_idx],
* &node_stack) # <<<<<<<<<<<<<<
* elif not return_distance:
* idx_array = np.empty(X.shape[0], dtype='object')
*/
__pyx_t_6 = __Pyx_PyInt_to_py_npy_int32(((struct __pyx_vtabstruct_7sklearn_9ball_tree_BallTree *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->__pyx_vtab)->query_radius_count_(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self), ((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_pt->data), __pyx_t_11, (&__pyx_v_node_stack))); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 749; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":749
* count = np.zeros(X.shape[0], ITYPE)
* for pt_idx, pt in enumerate(X):
* count[pt_idx] = self.query_radius_count_(<DTYPE_t*>pt.data, # <<<<<<<<<<<<<<
* r[pt_idx],
* &node_stack)
*/
if (PyObject_SetItem(((PyObject *)__pyx_v_count), __pyx_v_pt_idx, __pyx_t_6) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 749; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
}
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
goto __pyx_L11;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":752
* r[pt_idx],
* &node_stack)
* elif not return_distance: # <<<<<<<<<<<<<<
* idx_array = np.empty(X.shape[0], dtype='object')
* idx_array_i = np.empty(self.data.shape[0], dtype=ITYPE)
*/
__pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_return_distance); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 752; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_3 = (!__pyx_t_1);
if (__pyx_t_3) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":753
* &node_stack)
* elif not return_distance:
* idx_array = np.empty(X.shape[0], dtype='object') # <<<<<<<<<<<<<<
* idx_array_i = np.empty(self.data.shape[0], dtype=ITYPE)
* for pt_idx, pt in enumerate(X):
*/
__pyx_t_7 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 753; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_5 = PyObject_GetAttr(__pyx_t_7, __pyx_n_s__empty); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 753; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__pyx_t_7 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__shape); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 753; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_6 = __Pyx_GetItemInt(__pyx_t_7, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_6) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 753; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__pyx_t_7 = PyTuple_New(1); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 753; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
PyTuple_SET_ITEM(__pyx_t_7, 0, __pyx_t_6);
__Pyx_GIVEREF(__pyx_t_6);
__pyx_t_6 = 0;
__pyx_t_6 = PyDict_New(); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 753; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_6));
if (PyDict_SetItem(__pyx_t_6, ((PyObject *)__pyx_n_s__dtype), ((PyObject *)__pyx_n_s__object)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 753; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_9 = PyEval_CallObjectWithKeywords(__pyx_t_5, __pyx_t_7, ((PyObject *)__pyx_t_6)); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 753; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0;
if (!(likely(((__pyx_t_9) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_9, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 753; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(((PyObject *)__pyx_v_idx_array));
__pyx_v_idx_array = ((PyArrayObject *)__pyx_t_9);
__pyx_t_9 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":754
* elif not return_distance:
* idx_array = np.empty(X.shape[0], dtype='object')
* idx_array_i = np.empty(self.data.shape[0], dtype=ITYPE) # <<<<<<<<<<<<<<
* for pt_idx, pt in enumerate(X):
* count_i = self.query_radius_idx_only_(
*/
__pyx_t_9 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 754; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__pyx_t_6 = PyObject_GetAttr(__pyx_t_9, __pyx_n_s__empty); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 754; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
__pyx_t_9 = __Pyx_PyInt_to_py_Py_intptr_t((((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data->dimensions[0])); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 754; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__pyx_t_7 = PyTuple_New(1); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 754; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
PyTuple_SET_ITEM(__pyx_t_7, 0, __pyx_t_9);
__Pyx_GIVEREF(__pyx_t_9);
__pyx_t_9 = 0;
__pyx_t_9 = PyDict_New(); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 754; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_9));
__pyx_t_5 = __Pyx_GetName(__pyx_m, __pyx_n_s__ITYPE); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 754; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
if (PyDict_SetItem(__pyx_t_9, ((PyObject *)__pyx_n_s__dtype), __pyx_t_5) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 754; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_5 = PyEval_CallObjectWithKeywords(__pyx_t_6, __pyx_t_7, ((PyObject *)__pyx_t_9)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 754; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_9)); __pyx_t_9 = 0;
if (!(likely(((__pyx_t_5) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_5, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 754; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(((PyObject *)__pyx_v_idx_array_i));
__pyx_v_idx_array_i = ((PyArrayObject *)__pyx_t_5);
__pyx_t_5 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":755
* idx_array = np.empty(X.shape[0], dtype='object')
* idx_array_i = np.empty(self.data.shape[0], dtype=ITYPE)
* for pt_idx, pt in enumerate(X): # <<<<<<<<<<<<<<
* count_i = self.query_radius_idx_only_(
* <DTYPE_t*>pt.data,
*/
__Pyx_INCREF(__pyx_int_0);
__pyx_t_5 = __pyx_int_0;
if (PyList_CheckExact(__pyx_v_X) || PyTuple_CheckExact(__pyx_v_X)) {
__pyx_t_10 = 0; __pyx_t_9 = __pyx_v_X; __Pyx_INCREF(__pyx_t_9);
} else {
__pyx_t_10 = -1; __pyx_t_9 = PyObject_GetIter(__pyx_v_X); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 755; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
}
for (;;) {
if (likely(PyList_CheckExact(__pyx_t_9))) {
if (__pyx_t_10 >= PyList_GET_SIZE(__pyx_t_9)) break;
__pyx_t_7 = PyList_GET_ITEM(__pyx_t_9, __pyx_t_10); __Pyx_INCREF(__pyx_t_7); __pyx_t_10++;
} else if (likely(PyTuple_CheckExact(__pyx_t_9))) {
if (__pyx_t_10 >= PyTuple_GET_SIZE(__pyx_t_9)) break;
__pyx_t_7 = PyTuple_GET_ITEM(__pyx_t_9, __pyx_t_10); __Pyx_INCREF(__pyx_t_7); __pyx_t_10++;
} else {
__pyx_t_7 = PyIter_Next(__pyx_t_9);
if (!__pyx_t_7) {
if (unlikely(PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 755; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
break;
}
__Pyx_GOTREF(__pyx_t_7);
}
if (!(likely(((__pyx_t_7) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_7, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 755; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(((PyObject *)__pyx_v_pt));
__pyx_v_pt = ((PyArrayObject *)__pyx_t_7);
__pyx_t_7 = 0;
__Pyx_INCREF(__pyx_t_5);
__Pyx_DECREF(__pyx_v_pt_idx);
__pyx_v_pt_idx = __pyx_t_5;
__pyx_t_7 = PyNumber_Add(__pyx_t_5, __pyx_int_1); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 755; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_t_5);
__pyx_t_5 = __pyx_t_7;
__pyx_t_7 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":758
* count_i = self.query_radius_idx_only_(
* <DTYPE_t*>pt.data,
* r[pt_idx], # <<<<<<<<<<<<<<
* <ITYPE_t*>idx_array_i.data,
* &node_stack)
*/
__pyx_t_7 = PyObject_GetItem(__pyx_v_r, __pyx_v_pt_idx); if (!__pyx_t_7) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 758; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_11 = __pyx_PyFloat_AsDouble(__pyx_t_7); if (unlikely((__pyx_t_11 == (npy_float64)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 758; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":760
* r[pt_idx],
* <ITYPE_t*>idx_array_i.data,
* &node_stack) # <<<<<<<<<<<<<<
* idx_array[pt_idx] = idx_array_i[:count_i].copy()
*
*/
__pyx_v_count_i = ((struct __pyx_vtabstruct_7sklearn_9ball_tree_BallTree *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->__pyx_vtab)->query_radius_idx_only_(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self), ((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_pt->data), __pyx_t_11, ((__pyx_t_7sklearn_9ball_tree_ITYPE_t *)__pyx_v_idx_array_i->data), (&__pyx_v_node_stack));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":761
* <ITYPE_t*>idx_array_i.data,
* &node_stack)
* idx_array[pt_idx] = idx_array_i[:count_i].copy() # <<<<<<<<<<<<<<
*
* else:
*/
__pyx_t_7 = PySequence_GetSlice(((PyObject *)__pyx_v_idx_array_i), 0, __pyx_v_count_i); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 761; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_6 = PyObject_GetAttr(__pyx_t_7, __pyx_n_s__copy); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 761; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__pyx_t_7 = PyObject_Call(__pyx_t_6, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 761; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
if (PyObject_SetItem(((PyObject *)__pyx_v_idx_array), __pyx_v_pt_idx, __pyx_t_7) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 761; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
}
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
goto __pyx_L11;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":764
*
* else:
* idx_array = np.empty(X.shape[0], dtype='object') # <<<<<<<<<<<<<<
* distances = np.empty(X.shape[0], dtype='object')
* idx_array_i = np.empty(self.data.shape[0], dtype=ITYPE)
*/
__pyx_t_5 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 764; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_9 = PyObject_GetAttr(__pyx_t_5, __pyx_n_s__empty); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 764; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_5 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__shape); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 764; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_7 = __Pyx_GetItemInt(__pyx_t_5, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_7) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 764; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 764; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_7);
__Pyx_GIVEREF(__pyx_t_7);
__pyx_t_7 = 0;
__pyx_t_7 = PyDict_New(); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 764; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_7));
if (PyDict_SetItem(__pyx_t_7, ((PyObject *)__pyx_n_s__dtype), ((PyObject *)__pyx_n_s__object)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 764; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_6 = PyEval_CallObjectWithKeywords(__pyx_t_9, __pyx_t_5, ((PyObject *)__pyx_t_7)); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 764; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_7)); __pyx_t_7 = 0;
if (!(likely(((__pyx_t_6) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_6, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 764; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(((PyObject *)__pyx_v_idx_array));
__pyx_v_idx_array = ((PyArrayObject *)__pyx_t_6);
__pyx_t_6 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":765
* else:
* idx_array = np.empty(X.shape[0], dtype='object')
* distances = np.empty(X.shape[0], dtype='object') # <<<<<<<<<<<<<<
* idx_array_i = np.empty(self.data.shape[0], dtype=ITYPE)
* distances_i = np.empty(self.data.shape[0], dtype=DTYPE)
*/
__pyx_t_6 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 765; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__pyx_t_7 = PyObject_GetAttr(__pyx_t_6, __pyx_n_s__empty); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 765; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__pyx_t_6 = PyObject_GetAttr(__pyx_v_X, __pyx_n_s__shape); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 765; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__pyx_t_5 = __Pyx_GetItemInt(__pyx_t_6, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_5) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 765; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 765; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_5);
__Pyx_GIVEREF(__pyx_t_5);
__pyx_t_5 = 0;
__pyx_t_5 = PyDict_New(); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 765; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_5));
if (PyDict_SetItem(__pyx_t_5, ((PyObject *)__pyx_n_s__dtype), ((PyObject *)__pyx_n_s__object)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 765; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_9 = PyEval_CallObjectWithKeywords(__pyx_t_7, __pyx_t_6, ((PyObject *)__pyx_t_5)); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 765; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
if (!(likely(((__pyx_t_9) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_9, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 765; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(((PyObject *)__pyx_v_distances));
__pyx_v_distances = ((PyArrayObject *)__pyx_t_9);
__pyx_t_9 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":766
* idx_array = np.empty(X.shape[0], dtype='object')
* distances = np.empty(X.shape[0], dtype='object')
* idx_array_i = np.empty(self.data.shape[0], dtype=ITYPE) # <<<<<<<<<<<<<<
* distances_i = np.empty(self.data.shape[0], dtype=DTYPE)
* for pt_idx, pt in enumerate(X):
*/
__pyx_t_9 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 766; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__pyx_t_5 = PyObject_GetAttr(__pyx_t_9, __pyx_n_s__empty); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 766; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
__pyx_t_9 = __Pyx_PyInt_to_py_Py_intptr_t((((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data->dimensions[0])); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 766; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 766; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_9);
__Pyx_GIVEREF(__pyx_t_9);
__pyx_t_9 = 0;
__pyx_t_9 = PyDict_New(); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 766; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_9));
__pyx_t_7 = __Pyx_GetName(__pyx_m, __pyx_n_s__ITYPE); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 766; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
if (PyDict_SetItem(__pyx_t_9, ((PyObject *)__pyx_n_s__dtype), __pyx_t_7) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 766; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__pyx_t_7 = PyEval_CallObjectWithKeywords(__pyx_t_5, __pyx_t_6, ((PyObject *)__pyx_t_9)); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 766; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_9)); __pyx_t_9 = 0;
if (!(likely(((__pyx_t_7) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_7, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 766; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(((PyObject *)__pyx_v_idx_array_i));
__pyx_v_idx_array_i = ((PyArrayObject *)__pyx_t_7);
__pyx_t_7 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":767
* distances = np.empty(X.shape[0], dtype='object')
* idx_array_i = np.empty(self.data.shape[0], dtype=ITYPE)
* distances_i = np.empty(self.data.shape[0], dtype=DTYPE) # <<<<<<<<<<<<<<
* for pt_idx, pt in enumerate(X):
* count_i = self.query_radius_distances_(
*/
__pyx_t_7 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 767; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_9 = PyObject_GetAttr(__pyx_t_7, __pyx_n_s__empty); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 767; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__pyx_t_7 = __Pyx_PyInt_to_py_Py_intptr_t((((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->data->dimensions[0])); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 767; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 767; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_7);
__Pyx_GIVEREF(__pyx_t_7);
__pyx_t_7 = 0;
__pyx_t_7 = PyDict_New(); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 767; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_7));
__pyx_t_5 = __Pyx_GetName(__pyx_m, __pyx_n_s__DTYPE); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 767; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
if (PyDict_SetItem(__pyx_t_7, ((PyObject *)__pyx_n_s__dtype), __pyx_t_5) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 767; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_5 = PyEval_CallObjectWithKeywords(__pyx_t_9, __pyx_t_6, ((PyObject *)__pyx_t_7)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 767; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__Pyx_DECREF(((PyObject *)__pyx_t_7)); __pyx_t_7 = 0;
if (!(likely(((__pyx_t_5) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_5, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 767; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(((PyObject *)__pyx_v_distances_i));
__pyx_v_distances_i = ((PyArrayObject *)__pyx_t_5);
__pyx_t_5 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":768
* idx_array_i = np.empty(self.data.shape[0], dtype=ITYPE)
* distances_i = np.empty(self.data.shape[0], dtype=DTYPE)
* for pt_idx, pt in enumerate(X): # <<<<<<<<<<<<<<
* count_i = self.query_radius_distances_(
* <DTYPE_t*>pt.data,
*/
__Pyx_INCREF(__pyx_int_0);
__pyx_t_5 = __pyx_int_0;
if (PyList_CheckExact(__pyx_v_X) || PyTuple_CheckExact(__pyx_v_X)) {
__pyx_t_10 = 0; __pyx_t_7 = __pyx_v_X; __Pyx_INCREF(__pyx_t_7);
} else {
__pyx_t_10 = -1; __pyx_t_7 = PyObject_GetIter(__pyx_v_X); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 768; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
}
for (;;) {
if (likely(PyList_CheckExact(__pyx_t_7))) {
if (__pyx_t_10 >= PyList_GET_SIZE(__pyx_t_7)) break;
__pyx_t_6 = PyList_GET_ITEM(__pyx_t_7, __pyx_t_10); __Pyx_INCREF(__pyx_t_6); __pyx_t_10++;
} else if (likely(PyTuple_CheckExact(__pyx_t_7))) {
if (__pyx_t_10 >= PyTuple_GET_SIZE(__pyx_t_7)) break;
__pyx_t_6 = PyTuple_GET_ITEM(__pyx_t_7, __pyx_t_10); __Pyx_INCREF(__pyx_t_6); __pyx_t_10++;
} else {
__pyx_t_6 = PyIter_Next(__pyx_t_7);
if (!__pyx_t_6) {
if (unlikely(PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 768; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
break;
}
__Pyx_GOTREF(__pyx_t_6);
}
if (!(likely(((__pyx_t_6) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_6, __pyx_ptype_5numpy_ndarray))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 768; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(((PyObject *)__pyx_v_pt));
__pyx_v_pt = ((PyArrayObject *)__pyx_t_6);
__pyx_t_6 = 0;
__Pyx_INCREF(__pyx_t_5);
__Pyx_DECREF(__pyx_v_pt_idx);
__pyx_v_pt_idx = __pyx_t_5;
__pyx_t_6 = PyNumber_Add(__pyx_t_5, __pyx_int_1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 768; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_5);
__pyx_t_5 = __pyx_t_6;
__pyx_t_6 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":771
* count_i = self.query_radius_distances_(
* <DTYPE_t*>pt.data,
* r[pt_idx], # <<<<<<<<<<<<<<
* <ITYPE_t*>idx_array_i.data,
* <DTYPE_t*>distances_i.data,
*/
__pyx_t_6 = PyObject_GetItem(__pyx_v_r, __pyx_v_pt_idx); if (!__pyx_t_6) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 771; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__pyx_t_11 = __pyx_PyFloat_AsDouble(__pyx_t_6); if (unlikely((__pyx_t_11 == (npy_float64)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 771; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":774
* <ITYPE_t*>idx_array_i.data,
* <DTYPE_t*>distances_i.data,
* &node_stack) # <<<<<<<<<<<<<<
* if sort_results:
* sort_dist_idx(<DTYPE_t*>distances_i.data,
*/
__pyx_v_count_i = ((struct __pyx_vtabstruct_7sklearn_9ball_tree_BallTree *)((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self)->__pyx_vtab)->query_radius_distances_(((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)__pyx_v_self), ((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_pt->data), __pyx_t_11, ((__pyx_t_7sklearn_9ball_tree_ITYPE_t *)__pyx_v_idx_array_i->data), ((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_distances_i->data), (&__pyx_v_node_stack));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":775
* <DTYPE_t*>distances_i.data,
* &node_stack)
* if sort_results: # <<<<<<<<<<<<<<
* sort_dist_idx(<DTYPE_t*>distances_i.data,
* <ITYPE_t*>idx_array_i.data,
*/
__pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_v_sort_results); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 775; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
if (__pyx_t_3) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":778
* sort_dist_idx(<DTYPE_t*>distances_i.data,
* <ITYPE_t*>idx_array_i.data,
* count_i) # <<<<<<<<<<<<<<
*
* idx_array[pt_idx] = idx_array_i[:count_i].copy()
*/
__pyx_f_7sklearn_9ball_tree_sort_dist_idx(((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_distances_i->data), ((__pyx_t_7sklearn_9ball_tree_ITYPE_t *)__pyx_v_idx_array_i->data), __pyx_v_count_i);
goto __pyx_L18;
}
__pyx_L18:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":780
* count_i)
*
* idx_array[pt_idx] = idx_array_i[:count_i].copy() # <<<<<<<<<<<<<<
* distances[pt_idx] = distances_i[:count_i].copy()
*
*/
__pyx_t_6 = PySequence_GetSlice(((PyObject *)__pyx_v_idx_array_i), 0, __pyx_v_count_i); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 780; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__pyx_t_9 = PyObject_GetAttr(__pyx_t_6, __pyx_n_s__copy); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 780; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__pyx_t_6 = PyObject_Call(__pyx_t_9, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 780; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
if (PyObject_SetItem(((PyObject *)__pyx_v_idx_array), __pyx_v_pt_idx, __pyx_t_6) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 780; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":781
*
* idx_array[pt_idx] = idx_array_i[:count_i].copy()
* distances[pt_idx] = distances_i[:count_i].copy() # <<<<<<<<<<<<<<
*
* stack_destroy(&node_stack)
*/
__pyx_t_6 = PySequence_GetSlice(((PyObject *)__pyx_v_distances_i), 0, __pyx_v_count_i); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 781; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__pyx_t_9 = PyObject_GetAttr(__pyx_t_6, __pyx_n_s__copy); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 781; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__pyx_t_6 = PyObject_Call(__pyx_t_9, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 781; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
if (PyObject_SetItem(((PyObject *)__pyx_v_distances), __pyx_v_pt_idx, __pyx_t_6) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 781; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
}
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
}
__pyx_L11:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":783
* distances[pt_idx] = distances_i[:count_i].copy()
*
* stack_destroy(&node_stack) # <<<<<<<<<<<<<<
*
* # deflatten results
*/
__pyx_f_7sklearn_9ball_tree_stack_destroy((&__pyx_v_node_stack));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":786
*
* # deflatten results
* if count_only: # <<<<<<<<<<<<<<
* return count.reshape(orig_shape[:-1])
* elif return_distance:
*/
__pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_v_count_only); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 786; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
if (__pyx_t_3) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":787
* # deflatten results
* if count_only:
* return count.reshape(orig_shape[:-1]) # <<<<<<<<<<<<<<
* elif return_distance:
* return (idx_array.reshape(orig_shape[:-1]),
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_5 = PyObject_GetAttr(((PyObject *)__pyx_v_count), __pyx_n_s__reshape); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 787; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_7 = PySequence_GetSlice(__pyx_v_orig_shape, 0, -1); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 787; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 787; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_7);
__Pyx_GIVEREF(__pyx_t_7);
__pyx_t_7 = 0;
__pyx_t_7 = PyObject_Call(__pyx_t_5, __pyx_t_6, NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 787; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__pyx_r = __pyx_t_7;
__pyx_t_7 = 0;
goto __pyx_L0;
goto __pyx_L19;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":788
* if count_only:
* return count.reshape(orig_shape[:-1])
* elif return_distance: # <<<<<<<<<<<<<<
* return (idx_array.reshape(orig_shape[:-1]),
* distances.reshape(orig_shape[:-1]))
*/
__pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_v_return_distance); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 788; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
if (__pyx_t_3) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":789
* return count.reshape(orig_shape[:-1])
* elif return_distance:
* return (idx_array.reshape(orig_shape[:-1]), # <<<<<<<<<<<<<<
* distances.reshape(orig_shape[:-1]))
* else:
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_7 = PyObject_GetAttr(((PyObject *)__pyx_v_idx_array), __pyx_n_s__reshape); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 789; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_6 = PySequence_GetSlice(__pyx_v_orig_shape, 0, -1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 789; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 789; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_6);
__Pyx_GIVEREF(__pyx_t_6);
__pyx_t_6 = 0;
__pyx_t_6 = PyObject_Call(__pyx_t_7, __pyx_t_5, NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 789; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":790
* elif return_distance:
* return (idx_array.reshape(orig_shape[:-1]),
* distances.reshape(orig_shape[:-1])) # <<<<<<<<<<<<<<
* else:
* return idx_array.reshape(orig_shape[:-1])
*/
__pyx_t_5 = PyObject_GetAttr(((PyObject *)__pyx_v_distances), __pyx_n_s__reshape); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 790; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_7 = PySequence_GetSlice(__pyx_v_orig_shape, 0, -1); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 790; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_9 = PyTuple_New(1); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 790; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_7);
__Pyx_GIVEREF(__pyx_t_7);
__pyx_t_7 = 0;
__pyx_t_7 = PyObject_Call(__pyx_t_5, __pyx_t_9, NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 790; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
__pyx_t_9 = PyTuple_New(2); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 789; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_6);
__Pyx_GIVEREF(__pyx_t_6);
PyTuple_SET_ITEM(__pyx_t_9, 1, __pyx_t_7);
__Pyx_GIVEREF(__pyx_t_7);
__pyx_t_6 = 0;
__pyx_t_7 = 0;
__pyx_r = __pyx_t_9;
__pyx_t_9 = 0;
goto __pyx_L0;
goto __pyx_L19;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":792
* distances.reshape(orig_shape[:-1]))
* else:
* return idx_array.reshape(orig_shape[:-1]) # <<<<<<<<<<<<<<
*
* @cython.cdivision(True)
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_9 = PyObject_GetAttr(((PyObject *)__pyx_v_idx_array), __pyx_n_s__reshape); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 792; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_9);
__pyx_t_7 = PySequence_GetSlice(__pyx_v_orig_shape, 0, -1); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 792; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 792; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_6);
PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_7);
__Pyx_GIVEREF(__pyx_t_7);
__pyx_t_7 = 0;
__pyx_t_7 = PyObject_Call(__pyx_t_9, __pyx_t_6, NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 792; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_7);
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
__pyx_r = __pyx_t_7;
__pyx_t_7 = 0;
goto __pyx_L0;
}
__pyx_L19:;
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_4);
__Pyx_XDECREF(__pyx_t_5);
__Pyx_XDECREF(__pyx_t_6);
__Pyx_XDECREF(__pyx_t_7);
__Pyx_XDECREF(__pyx_t_8);
__Pyx_XDECREF(__pyx_t_9);
__Pyx_AddTraceback("sklearn.ball_tree.BallTree.query_radius");
__pyx_r = NULL;
__pyx_L0:;
__Pyx_DECREF((PyObject *)__pyx_v_idx_array);
__Pyx_DECREF((PyObject *)__pyx_v_idx_array_i);
__Pyx_DECREF((PyObject *)__pyx_v_distances);
__Pyx_DECREF((PyObject *)__pyx_v_distances_i);
__Pyx_DECREF((PyObject *)__pyx_v_pt);
__Pyx_DECREF((PyObject *)__pyx_v_count);
__Pyx_DECREF(__pyx_v_orig_shape);
__Pyx_DECREF(__pyx_v_pt_idx);
__Pyx_DECREF(__pyx_v_X);
__Pyx_DECREF(__pyx_v_r);
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":795
*
* @cython.cdivision(True)
* cdef void build_tree_(BallTree self): # <<<<<<<<<<<<<<
* cdef DTYPE_t* data = <DTYPE_t*> self.data.data
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data
*/
static void __pyx_f_7sklearn_9ball_tree_8BallTree_build_tree_(struct __pyx_obj_7sklearn_9ball_tree_BallTree *__pyx_v_self) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_data;
__pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_idx_array;
__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_node_centroid_arr;
struct __pyx_t_7sklearn_9ball_tree_NodeInfo *__pyx_v_node_info_arr;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_p;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_samples;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_features;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_idx_start;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_idx_end;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_points;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_radius;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i_node;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i_parent;
__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_centroid;
struct __pyx_t_7sklearn_9ball_tree_NodeInfo *__pyx_v_node_info;
struct __pyx_t_7sklearn_9ball_tree_NodeInfo *__pyx_v_parent_info;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i_max;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_1;
int __pyx_t_2;
PyObject *__pyx_t_3 = NULL;
PyObject *__pyx_t_4 = NULL;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_5;
__Pyx_RefNannySetupContext("build_tree_");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":796
* @cython.cdivision(True)
* cdef void build_tree_(BallTree self):
* cdef DTYPE_t* data = <DTYPE_t*> self.data.data # <<<<<<<<<<<<<<
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
*/
__pyx_v_data = ((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_self->data->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":797
* cdef void build_tree_(BallTree self):
* cdef DTYPE_t* data = <DTYPE_t*> self.data.data
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data # <<<<<<<<<<<<<<
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data
*/
__pyx_v_idx_array = ((__pyx_t_7sklearn_9ball_tree_ITYPE_t *)__pyx_v_self->idx_array->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":798
* cdef DTYPE_t* data = <DTYPE_t*> self.data.data
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data # <<<<<<<<<<<<<<
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data
*
*/
__pyx_v_node_centroid_arr = ((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_self->node_centroid_arr->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":799
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data # <<<<<<<<<<<<<<
*
* cdef DTYPE_t p = self.p
*/
__pyx_v_node_info_arr = ((struct __pyx_t_7sklearn_9ball_tree_NodeInfo *)__pyx_v_self->node_info_arr->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":801
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data
*
* cdef DTYPE_t p = self.p # <<<<<<<<<<<<<<
* cdef ITYPE_t n_samples = self.data.shape[0]
* cdef ITYPE_t n_features = self.data.shape[1]
*/
__pyx_v_p = __pyx_v_self->p;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":802
*
* cdef DTYPE_t p = self.p
* cdef ITYPE_t n_samples = self.data.shape[0] # <<<<<<<<<<<<<<
* cdef ITYPE_t n_features = self.data.shape[1]
*
*/
__pyx_v_n_samples = (__pyx_v_self->data->dimensions[0]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":803
* cdef DTYPE_t p = self.p
* cdef ITYPE_t n_samples = self.data.shape[0]
* cdef ITYPE_t n_features = self.data.shape[1] # <<<<<<<<<<<<<<
*
* cdef ITYPE_t idx_start, idx_end, n_points
*/
__pyx_v_n_features = (__pyx_v_self->data->dimensions[1]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":809
* cdef ITYPE_t i, i_node, i_parent
*
* cdef DTYPE_t* centroid = node_centroid_arr # <<<<<<<<<<<<<<
* cdef NodeInfo* node_info = node_info_arr
* cdef NodeInfo* parent_info
*/
__pyx_v_centroid = __pyx_v_node_centroid_arr;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":810
*
* cdef DTYPE_t* centroid = node_centroid_arr
* cdef NodeInfo* node_info = node_info_arr # <<<<<<<<<<<<<<
* cdef NodeInfo* parent_info
* cdef DTYPE_t* point
*/
__pyx_v_node_info = __pyx_v_node_info_arr;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":816
* #------------------------------------------------------------
* # take care of the root node
* node_info.idx_start = 0 # <<<<<<<<<<<<<<
* node_info.idx_end = n_samples
* n_points = n_samples
*/
__pyx_v_node_info->idx_start = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":817
* # take care of the root node
* node_info.idx_start = 0
* node_info.idx_end = n_samples # <<<<<<<<<<<<<<
* n_points = n_samples
*
*/
__pyx_v_node_info->idx_end = __pyx_v_n_samples;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":818
* node_info.idx_start = 0
* node_info.idx_end = n_samples
* n_points = n_samples # <<<<<<<<<<<<<<
*
* # determine Node centroid
*/
__pyx_v_n_points = __pyx_v_n_samples;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":822
* # determine Node centroid
* compute_centroid(centroid, data, idx_array,
* n_features, n_samples) # <<<<<<<<<<<<<<
*
* # determine Node radius
*/
__pyx_f_7sklearn_9ball_tree_compute_centroid(__pyx_v_centroid, __pyx_v_data, __pyx_v_idx_array, __pyx_v_n_features, __pyx_v_n_samples);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":825
*
* # determine Node radius
* radius = 0 # <<<<<<<<<<<<<<
* for i from node_info.idx_start <= i < node_info.idx_end:
* radius = dmax(radius,
*/
__pyx_v_radius = 0.0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":826
* # determine Node radius
* radius = 0
* for i from node_info.idx_start <= i < node_info.idx_end: # <<<<<<<<<<<<<<
* radius = dmax(radius,
* dist_p(centroid, data + n_features * idx_array[i],
*/
__pyx_t_1 = __pyx_v_node_info->idx_end;
for (__pyx_v_i = __pyx_v_node_info->idx_start; __pyx_v_i < __pyx_t_1; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":829
* radius = dmax(radius,
* dist_p(centroid, data + n_features * idx_array[i],
* n_features, p)) # <<<<<<<<<<<<<<
* node_info.radius = dist_from_dist_p(radius, p)
*
*/
__pyx_v_radius = __pyx_f_7sklearn_9ball_tree_dmax(__pyx_v_radius, __pyx_f_7sklearn_9ball_tree_dist_p(__pyx_v_centroid, (__pyx_v_data + (__pyx_v_n_features * (__pyx_v_idx_array[__pyx_v_i]))), __pyx_v_n_features, __pyx_v_p));
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":830
* dist_p(centroid, data + n_features * idx_array[i],
* n_features, p))
* node_info.radius = dist_from_dist_p(radius, p) # <<<<<<<<<<<<<<
*
* # check if this is a leaf
*/
__pyx_v_node_info->radius = __pyx_f_7sklearn_9ball_tree_dist_from_dist_p(__pyx_v_radius, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":833
*
* # check if this is a leaf
* if self.n_nodes == 1: # <<<<<<<<<<<<<<
* node_info.is_leaf = 1
*
*/
__pyx_t_2 = (__pyx_v_self->n_nodes == 1);
if (__pyx_t_2) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":834
* # check if this is a leaf
* if self.n_nodes == 1:
* node_info.is_leaf = 1 # <<<<<<<<<<<<<<
*
* else:
*/
__pyx_v_node_info->is_leaf = 1;
goto __pyx_L5;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":837
*
* else:
* node_info.is_leaf = 0 # <<<<<<<<<<<<<<
*
* # find dimension with largest spread
*/
__pyx_v_node_info->is_leaf = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":841
* # find dimension with largest spread
* i_max = find_split_dim(data, idx_array + node_info.idx_start,
* n_features, n_points) # <<<<<<<<<<<<<<
*
* # sort idx_array along this dimension
*/
__pyx_v_i_max = __pyx_f_7sklearn_9ball_tree_find_split_dim(__pyx_v_data, (__pyx_v_idx_array + __pyx_v_node_info->idx_start), __pyx_v_n_features, __pyx_v_n_points);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":849
* n_points / 2,
* n_features,
* n_points) # <<<<<<<<<<<<<<
*
* #------------------------------------------------------------
*/
__pyx_f_7sklearn_9ball_tree_partition_indices(__pyx_v_data, (__pyx_v_idx_array + __pyx_v_node_info->idx_start), __pyx_v_i_max, (__pyx_v_n_points / 2), __pyx_v_n_features, __pyx_v_n_points);
}
__pyx_L5:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":853
* #------------------------------------------------------------
* # cycle through all child nodes
* for i_node from 1 <= i_node < self.n_nodes: # <<<<<<<<<<<<<<
* i_parent = (i_node - 1) / 2
* parent_info = node_info_arr + i_parent
*/
__pyx_t_1 = __pyx_v_self->n_nodes;
for (__pyx_v_i_node = 1; __pyx_v_i_node < __pyx_t_1; __pyx_v_i_node++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":854
* # cycle through all child nodes
* for i_node from 1 <= i_node < self.n_nodes:
* i_parent = (i_node - 1) / 2 # <<<<<<<<<<<<<<
* parent_info = node_info_arr + i_parent
*
*/
__pyx_v_i_parent = ((__pyx_v_i_node - 1) / 2);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":855
* for i_node from 1 <= i_node < self.n_nodes:
* i_parent = (i_node - 1) / 2
* parent_info = node_info_arr + i_parent # <<<<<<<<<<<<<<
*
* node_info = node_info_arr + i_node
*/
__pyx_v_parent_info = (__pyx_v_node_info_arr + __pyx_v_i_parent);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":857
* parent_info = node_info_arr + i_parent
*
* node_info = node_info_arr + i_node # <<<<<<<<<<<<<<
*
* if parent_info.is_leaf:
*/
__pyx_v_node_info = (__pyx_v_node_info_arr + __pyx_v_i_node);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":859
* node_info = node_info_arr + i_node
*
* if parent_info.is_leaf: # <<<<<<<<<<<<<<
* raise ValueError("Fatal: parent is a leaf. Memory "
* "allocation is flawed")
*/
if (__pyx_v_parent_info->is_leaf) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":860
*
* if parent_info.is_leaf:
* raise ValueError("Fatal: parent is a leaf. Memory " # <<<<<<<<<<<<<<
* "allocation is flawed")
*
*/
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 860; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_INCREF(((PyObject *)__pyx_kp_s_18));
PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)__pyx_kp_s_18));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_s_18));
__pyx_t_4 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_3, NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 860; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_Raise(__pyx_t_4, 0, 0);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 860; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L8;
}
__pyx_L8:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":863
* "allocation is flawed")
*
* if i_node < self.n_nodes / 2: # <<<<<<<<<<<<<<
* node_info.is_leaf = 0
* else:
*/
__pyx_t_2 = (__pyx_v_i_node < (__pyx_v_self->n_nodes / 2));
if (__pyx_t_2) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":864
*
* if i_node < self.n_nodes / 2:
* node_info.is_leaf = 0 # <<<<<<<<<<<<<<
* else:
* node_info.is_leaf = 1
*/
__pyx_v_node_info->is_leaf = 0;
goto __pyx_L9;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":866
* node_info.is_leaf = 0
* else:
* node_info.is_leaf = 1 # <<<<<<<<<<<<<<
*
* centroid = node_centroid_arr + i_node * n_features
*/
__pyx_v_node_info->is_leaf = 1;
}
__pyx_L9:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":868
* node_info.is_leaf = 1
*
* centroid = node_centroid_arr + i_node * n_features # <<<<<<<<<<<<<<
*
* # find indices for this node
*/
__pyx_v_centroid = (__pyx_v_node_centroid_arr + (__pyx_v_i_node * __pyx_v_n_features));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":871
*
* # find indices for this node
* idx_start = parent_info.idx_start # <<<<<<<<<<<<<<
* idx_end = parent_info.idx_end
*
*/
__pyx_v_idx_start = __pyx_v_parent_info->idx_start;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":872
* # find indices for this node
* idx_start = parent_info.idx_start
* idx_end = parent_info.idx_end # <<<<<<<<<<<<<<
*
* if i_node % 2 == 1:
*/
__pyx_v_idx_end = __pyx_v_parent_info->idx_end;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":874
* idx_end = parent_info.idx_end
*
* if i_node % 2 == 1: # <<<<<<<<<<<<<<
* idx_start = (idx_start + idx_end) / 2
* else:
*/
__pyx_t_2 = ((__pyx_v_i_node % 2) == 1);
if (__pyx_t_2) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":875
*
* if i_node % 2 == 1:
* idx_start = (idx_start + idx_end) / 2 # <<<<<<<<<<<<<<
* else:
* idx_end = (idx_start + idx_end) / 2
*/
__pyx_v_idx_start = ((__pyx_v_idx_start + __pyx_v_idx_end) / 2);
goto __pyx_L10;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":877
* idx_start = (idx_start + idx_end) / 2
* else:
* idx_end = (idx_start + idx_end) / 2 # <<<<<<<<<<<<<<
*
* node_info.idx_start = idx_start
*/
__pyx_v_idx_end = ((__pyx_v_idx_start + __pyx_v_idx_end) / 2);
}
__pyx_L10:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":879
* idx_end = (idx_start + idx_end) / 2
*
* node_info.idx_start = idx_start # <<<<<<<<<<<<<<
* node_info.idx_end = idx_end
*
*/
__pyx_v_node_info->idx_start = __pyx_v_idx_start;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":880
*
* node_info.idx_start = idx_start
* node_info.idx_end = idx_end # <<<<<<<<<<<<<<
*
* n_points = idx_end - idx_start
*/
__pyx_v_node_info->idx_end = __pyx_v_idx_end;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":882
* node_info.idx_end = idx_end
*
* n_points = idx_end - idx_start # <<<<<<<<<<<<<<
*
* if n_points == 0:
*/
__pyx_v_n_points = (__pyx_v_idx_end - __pyx_v_idx_start);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":884
* n_points = idx_end - idx_start
*
* if n_points == 0: # <<<<<<<<<<<<<<
* raise ValueError("zero-sized node")
*
*/
switch (__pyx_v_n_points) {
case 0:
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":885
*
* if n_points == 0:
* raise ValueError("zero-sized node") # <<<<<<<<<<<<<<
*
* elif n_points == 1:
*/
__pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 885; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_INCREF(((PyObject *)__pyx_kp_s_19));
PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_kp_s_19));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_s_19));
__pyx_t_3 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_4, NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 885; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_Raise(__pyx_t_3, 0, 0);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
{__pyx_filename = __pyx_f[0]; __pyx_lineno = 885; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
break;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":887
* raise ValueError("zero-sized node")
*
* elif n_points == 1: # <<<<<<<<<<<<<<
* #copy this point to centroid
* copy_array(centroid,
*/
case 1:
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":891
* copy_array(centroid,
* data + idx_array[idx_start] * n_features,
* n_features) # <<<<<<<<<<<<<<
*
* #store radius in array
*/
__pyx_f_7sklearn_9ball_tree_copy_array(__pyx_v_centroid, (__pyx_v_data + ((__pyx_v_idx_array[__pyx_v_idx_start]) * __pyx_v_n_features)), __pyx_v_n_features);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":894
*
* #store radius in array
* node_info.radius = 0 # <<<<<<<<<<<<<<
*
* #is a leaf
*/
__pyx_v_node_info->radius = 0.0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":897
*
* #is a leaf
* node_info.is_leaf = 1 # <<<<<<<<<<<<<<
*
* else:
*/
__pyx_v_node_info->is_leaf = 1;
break;
default:
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":902
* # determine Node centroid
* compute_centroid(centroid, data, idx_array + idx_start,
* n_features, n_points) # <<<<<<<<<<<<<<
*
* # determine Node radius
*/
__pyx_f_7sklearn_9ball_tree_compute_centroid(__pyx_v_centroid, __pyx_v_data, (__pyx_v_idx_array + __pyx_v_idx_start), __pyx_v_n_features, __pyx_v_n_points);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":905
*
* # determine Node radius
* radius = 0 # <<<<<<<<<<<<<<
* for i from idx_start <= i < idx_end:
* radius = dmax(radius,
*/
__pyx_v_radius = 0.0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":906
* # determine Node radius
* radius = 0
* for i from idx_start <= i < idx_end: # <<<<<<<<<<<<<<
* radius = dmax(radius,
* dist_p(centroid,
*/
__pyx_t_5 = __pyx_v_idx_end;
for (__pyx_v_i = __pyx_v_idx_start; __pyx_v_i < __pyx_t_5; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":910
* dist_p(centroid,
* data + n_features * idx_array[i],
* n_features, p)) # <<<<<<<<<<<<<<
* node_info.radius = dist_from_dist_p(radius, p)
*
*/
__pyx_v_radius = __pyx_f_7sklearn_9ball_tree_dmax(__pyx_v_radius, __pyx_f_7sklearn_9ball_tree_dist_p(__pyx_v_centroid, (__pyx_v_data + (__pyx_v_n_features * (__pyx_v_idx_array[__pyx_v_i]))), __pyx_v_n_features, __pyx_v_p));
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":911
* data + n_features * idx_array[i],
* n_features, p))
* node_info.radius = dist_from_dist_p(radius, p) # <<<<<<<<<<<<<<
*
* if not node_info.is_leaf:
*/
__pyx_v_node_info->radius = __pyx_f_7sklearn_9ball_tree_dist_from_dist_p(__pyx_v_radius, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":913
* node_info.radius = dist_from_dist_p(radius, p)
*
* if not node_info.is_leaf: # <<<<<<<<<<<<<<
* # find dimension with largest spread
* i_max = find_split_dim(data, idx_array + idx_start,
*/
__pyx_t_2 = (!__pyx_v_node_info->is_leaf);
if (__pyx_t_2) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":916
* # find dimension with largest spread
* i_max = find_split_dim(data, idx_array + idx_start,
* n_features, n_points) # <<<<<<<<<<<<<<
*
* # sort indices along this dimension
*/
__pyx_v_i_max = __pyx_f_7sklearn_9ball_tree_find_split_dim(__pyx_v_data, (__pyx_v_idx_array + __pyx_v_idx_start), __pyx_v_n_features, __pyx_v_n_points);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":924
* n_points / 2,
* n_features,
* n_points) # <<<<<<<<<<<<<<
*
* cdef void query_one_(BallTree self,
*/
__pyx_f_7sklearn_9ball_tree_partition_indices(__pyx_v_data, (__pyx_v_idx_array + __pyx_v_idx_start), __pyx_v_i_max, (__pyx_v_n_points / 2), __pyx_v_n_features, __pyx_v_n_points);
goto __pyx_L13;
}
__pyx_L13:;
break;
}
}
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_3);
__Pyx_XDECREF(__pyx_t_4);
__Pyx_WriteUnraisable("sklearn.ball_tree.BallTree.build_tree_");
__pyx_L0:;
__Pyx_RefNannyFinishContext();
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":926
* n_points)
*
* cdef void query_one_(BallTree self, # <<<<<<<<<<<<<<
* DTYPE_t* pt,
* ITYPE_t k,
*/
static void __pyx_f_7sklearn_9ball_tree_8BallTree_query_one_(struct __pyx_obj_7sklearn_9ball_tree_BallTree *__pyx_v_self, __pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_pt, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_k, __pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_near_set_dist, __pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_near_set_indx, struct __pyx_t_7sklearn_9ball_tree_stack *__pyx_v_node_stack, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_use_max_heap) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_data;
__pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_idx_array;
__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_node_centroid_arr;
struct __pyx_t_7sklearn_9ball_tree_NodeInfo *__pyx_v_node_info_arr;
struct __pyx_t_7sklearn_9ball_tree_NodeInfo *__pyx_v_node_info;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_p;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_features;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_dist_pt;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_dist_p_LB;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_dist_p_LB_1;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_dist_p_LB_2;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i1;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i2;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i_node;
struct __pyx_t_7sklearn_9ball_tree_stack_item __pyx_v_item;
__pyx_t_7sklearn_9ball_tree_DTYPE_t (*__pyx_v_heapqueue_largest)(__pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t);
void (*__pyx_v_heapqueue_insert)(__pyx_t_7sklearn_9ball_tree_DTYPE_t, __pyx_t_7sklearn_9ball_tree_ITYPE_t, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t);
int __pyx_t_1;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_2;
__Pyx_RefNannySetupContext("query_one_");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":933
* stack* node_stack,
* ITYPE_t use_max_heap):
* cdef DTYPE_t* data = <DTYPE_t*> self.data.data # <<<<<<<<<<<<<<
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
*/
__pyx_v_data = ((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_self->data->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":934
* ITYPE_t use_max_heap):
* cdef DTYPE_t* data = <DTYPE_t*> self.data.data
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data # <<<<<<<<<<<<<<
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data
*/
__pyx_v_idx_array = ((__pyx_t_7sklearn_9ball_tree_ITYPE_t *)__pyx_v_self->idx_array->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":935
* cdef DTYPE_t* data = <DTYPE_t*> self.data.data
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data # <<<<<<<<<<<<<<
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data
* cdef NodeInfo* node_info = node_info_arr
*/
__pyx_v_node_centroid_arr = ((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_self->node_centroid_arr->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":936
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data # <<<<<<<<<<<<<<
* cdef NodeInfo* node_info = node_info_arr
*
*/
__pyx_v_node_info_arr = ((struct __pyx_t_7sklearn_9ball_tree_NodeInfo *)__pyx_v_self->node_info_arr->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":937
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data
* cdef NodeInfo* node_info = node_info_arr # <<<<<<<<<<<<<<
*
* cdef DTYPE_t p = self.p
*/
__pyx_v_node_info = __pyx_v_node_info_arr;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":939
* cdef NodeInfo* node_info = node_info_arr
*
* cdef DTYPE_t p = self.p # <<<<<<<<<<<<<<
* cdef ITYPE_t n_features = self.data.shape[1]
*
*/
__pyx_v_p = __pyx_v_self->p;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":940
*
* cdef DTYPE_t p = self.p
* cdef ITYPE_t n_features = self.data.shape[1] # <<<<<<<<<<<<<<
*
* cdef DTYPE_t dist_pt, dist_p_LB, dist_p_LB_1, dist_p_LB_2
*/
__pyx_v_n_features = (__pyx_v_self->data->dimensions[1]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":947
* cdef stack_item item
*
* item.i_node = 0 # <<<<<<<<<<<<<<
* item.dist_p_LB = calc_dist_p_LB(pt, node_centroid_arr,
* node_info.radius,
*/
__pyx_v_item.i_node = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":948
*
* item.i_node = 0
* item.dist_p_LB = calc_dist_p_LB(pt, node_centroid_arr, # <<<<<<<<<<<<<<
* node_info.radius,
* n_features, p)
*/
__pyx_v_item.dist_p_LB = __pyx_f_7sklearn_9ball_tree_calc_dist_p_LB(__pyx_v_pt, __pyx_v_node_centroid_arr, __pyx_v_node_info->radius, __pyx_v_n_features, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":951
* node_info.radius,
* n_features, p)
* stack_push(node_stack, item) # <<<<<<<<<<<<<<
*
* # create pointers to the priority-queue/max-heap functions.
*/
__pyx_f_7sklearn_9ball_tree_stack_push(__pyx_v_node_stack, __pyx_v_item);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":959
* ITYPE_t*, ITYPE_t)
*
* if use_max_heap: # <<<<<<<<<<<<<<
* heapqueue_largest = &max_heap_largest
* heapqueue_insert = &max_heap_insert
*/
if (__pyx_v_use_max_heap) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":960
*
* if use_max_heap:
* heapqueue_largest = &max_heap_largest # <<<<<<<<<<<<<<
* heapqueue_insert = &max_heap_insert
* else:
*/
__pyx_v_heapqueue_largest = (&__pyx_f_7sklearn_9ball_tree_max_heap_largest);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":961
* if use_max_heap:
* heapqueue_largest = &max_heap_largest
* heapqueue_insert = &max_heap_insert # <<<<<<<<<<<<<<
* else:
* heapqueue_largest = &pqueue_largest
*/
__pyx_v_heapqueue_insert = (&__pyx_f_7sklearn_9ball_tree_max_heap_insert);
goto __pyx_L3;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":963
* heapqueue_insert = &max_heap_insert
* else:
* heapqueue_largest = &pqueue_largest # <<<<<<<<<<<<<<
* heapqueue_insert = &pqueue_insert
*
*/
__pyx_v_heapqueue_largest = (&__pyx_f_7sklearn_9ball_tree_pqueue_largest);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":964
* else:
* heapqueue_largest = &pqueue_largest
* heapqueue_insert = &pqueue_insert # <<<<<<<<<<<<<<
*
* while(node_stack.n > 0):
*/
__pyx_v_heapqueue_insert = (&__pyx_f_7sklearn_9ball_tree_pqueue_insert);
}
__pyx_L3:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":966
* heapqueue_insert = &pqueue_insert
*
* while(node_stack.n > 0): # <<<<<<<<<<<<<<
* item = stack_pop(node_stack)
* i_node = item.i_node
*/
while (1) {
__pyx_t_1 = (__pyx_v_node_stack->n > 0);
if (!__pyx_t_1) break;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":967
*
* while(node_stack.n > 0):
* item = stack_pop(node_stack) # <<<<<<<<<<<<<<
* i_node = item.i_node
* dist_p_LB = item.dist_p_LB
*/
__pyx_v_item = __pyx_f_7sklearn_9ball_tree_stack_pop(__pyx_v_node_stack);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":968
* while(node_stack.n > 0):
* item = stack_pop(node_stack)
* i_node = item.i_node # <<<<<<<<<<<<<<
* dist_p_LB = item.dist_p_LB
*
*/
__pyx_v_i_node = __pyx_v_item.i_node;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":969
* item = stack_pop(node_stack)
* i_node = item.i_node
* dist_p_LB = item.dist_p_LB # <<<<<<<<<<<<<<
*
* node_info = node_info_arr + i_node
*/
__pyx_v_dist_p_LB = __pyx_v_item.dist_p_LB;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":971
* dist_p_LB = item.dist_p_LB
*
* node_info = node_info_arr + i_node # <<<<<<<<<<<<<<
*
* #------------------------------------------------------------
*/
__pyx_v_node_info = (__pyx_v_node_info_arr + __pyx_v_i_node);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":975
* #------------------------------------------------------------
* # Case 1: query point is outside node radius
* if dist_p_LB >= heapqueue_largest(near_set_dist, k): # <<<<<<<<<<<<<<
* continue
*
*/
__pyx_t_1 = (__pyx_v_dist_p_LB >= __pyx_v_heapqueue_largest(__pyx_v_near_set_dist, __pyx_v_k));
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":976
* # Case 1: query point is outside node radius
* if dist_p_LB >= heapqueue_largest(near_set_dist, k):
* continue # <<<<<<<<<<<<<<
*
* #------------------------------------------------------------
*/
goto __pyx_L4_continue;
goto __pyx_L6;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":980
* #------------------------------------------------------------
* # Case 2: this is a leaf node. Update set of nearby points
* elif node_info.is_leaf: # <<<<<<<<<<<<<<
* for i from node_info.idx_start <= i < node_info.idx_end:
* dist_pt = dist_p(pt,
*/
if (__pyx_v_node_info->is_leaf) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":981
* # Case 2: this is a leaf node. Update set of nearby points
* elif node_info.is_leaf:
* for i from node_info.idx_start <= i < node_info.idx_end: # <<<<<<<<<<<<<<
* dist_pt = dist_p(pt,
* data + n_features * idx_array[i],
*/
__pyx_t_2 = __pyx_v_node_info->idx_end;
for (__pyx_v_i = __pyx_v_node_info->idx_start; __pyx_v_i < __pyx_t_2; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":984
* dist_pt = dist_p(pt,
* data + n_features * idx_array[i],
* n_features, p) # <<<<<<<<<<<<<<
*
* if dist_pt < heapqueue_largest(near_set_dist, k):
*/
__pyx_v_dist_pt = __pyx_f_7sklearn_9ball_tree_dist_p(__pyx_v_pt, (__pyx_v_data + (__pyx_v_n_features * (__pyx_v_idx_array[__pyx_v_i]))), __pyx_v_n_features, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":986
* n_features, p)
*
* if dist_pt < heapqueue_largest(near_set_dist, k): # <<<<<<<<<<<<<<
* heapqueue_insert(dist_pt, idx_array[i],
* near_set_dist, near_set_indx, k)
*/
__pyx_t_1 = (__pyx_v_dist_pt < __pyx_v_heapqueue_largest(__pyx_v_near_set_dist, __pyx_v_k));
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":988
* if dist_pt < heapqueue_largest(near_set_dist, k):
* heapqueue_insert(dist_pt, idx_array[i],
* near_set_dist, near_set_indx, k) # <<<<<<<<<<<<<<
*
* #------------------------------------------------------------
*/
__pyx_v_heapqueue_insert(__pyx_v_dist_pt, (__pyx_v_idx_array[__pyx_v_i]), __pyx_v_near_set_dist, __pyx_v_near_set_indx, __pyx_v_k);
goto __pyx_L9;
}
__pyx_L9:;
}
goto __pyx_L6;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":994
* # starting with the one whose centroid is closest
* else:
* i1 = 2 * i_node + 1 # <<<<<<<<<<<<<<
* i2 = i1 + 1
* dist_p_LB_1 = calc_dist_p_LB(pt, (node_centroid_arr
*/
__pyx_v_i1 = ((2 * __pyx_v_i_node) + 1);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":995
* else:
* i1 = 2 * i_node + 1
* i2 = i1 + 1 # <<<<<<<<<<<<<<
* dist_p_LB_1 = calc_dist_p_LB(pt, (node_centroid_arr
* + i1 * n_features),
*/
__pyx_v_i2 = (__pyx_v_i1 + 1);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":999
* + i1 * n_features),
* node_info_arr[i1].radius,
* n_features, p) # <<<<<<<<<<<<<<
* dist_p_LB_2 = calc_dist_p_LB(pt, (node_centroid_arr
* + i2 * n_features),
*/
__pyx_v_dist_p_LB_1 = __pyx_f_7sklearn_9ball_tree_calc_dist_p_LB(__pyx_v_pt, (__pyx_v_node_centroid_arr + (__pyx_v_i1 * __pyx_v_n_features)), (__pyx_v_node_info_arr[__pyx_v_i1]).radius, __pyx_v_n_features, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1003
* + i2 * n_features),
* node_info_arr[i2].radius,
* n_features, p) # <<<<<<<<<<<<<<
*
* # append children to stack: last-in-first-out
*/
__pyx_v_dist_p_LB_2 = __pyx_f_7sklearn_9ball_tree_calc_dist_p_LB(__pyx_v_pt, (__pyx_v_node_centroid_arr + (__pyx_v_i2 * __pyx_v_n_features)), (__pyx_v_node_info_arr[__pyx_v_i2]).radius, __pyx_v_n_features, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1006
*
* # append children to stack: last-in-first-out
* if dist_p_LB_2 <= dist_p_LB_1: # <<<<<<<<<<<<<<
* item.i_node = i1
* item.dist_p_LB = dist_p_LB_1
*/
__pyx_t_1 = (__pyx_v_dist_p_LB_2 <= __pyx_v_dist_p_LB_1);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1007
* # append children to stack: last-in-first-out
* if dist_p_LB_2 <= dist_p_LB_1:
* item.i_node = i1 # <<<<<<<<<<<<<<
* item.dist_p_LB = dist_p_LB_1
* stack_push(node_stack, item)
*/
__pyx_v_item.i_node = __pyx_v_i1;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1008
* if dist_p_LB_2 <= dist_p_LB_1:
* item.i_node = i1
* item.dist_p_LB = dist_p_LB_1 # <<<<<<<<<<<<<<
* stack_push(node_stack, item)
*
*/
__pyx_v_item.dist_p_LB = __pyx_v_dist_p_LB_1;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1009
* item.i_node = i1
* item.dist_p_LB = dist_p_LB_1
* stack_push(node_stack, item) # <<<<<<<<<<<<<<
*
* item.i_node = i2
*/
__pyx_f_7sklearn_9ball_tree_stack_push(__pyx_v_node_stack, __pyx_v_item);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1011
* stack_push(node_stack, item)
*
* item.i_node = i2 # <<<<<<<<<<<<<<
* item.dist_p_LB = dist_p_LB_2
* stack_push(node_stack, item)
*/
__pyx_v_item.i_node = __pyx_v_i2;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1012
*
* item.i_node = i2
* item.dist_p_LB = dist_p_LB_2 # <<<<<<<<<<<<<<
* stack_push(node_stack, item)
*
*/
__pyx_v_item.dist_p_LB = __pyx_v_dist_p_LB_2;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1013
* item.i_node = i2
* item.dist_p_LB = dist_p_LB_2
* stack_push(node_stack, item) # <<<<<<<<<<<<<<
*
* else:
*/
__pyx_f_7sklearn_9ball_tree_stack_push(__pyx_v_node_stack, __pyx_v_item);
goto __pyx_L10;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1016
*
* else:
* item.i_node = i2 # <<<<<<<<<<<<<<
* item.dist_p_LB = dist_p_LB_2
* stack_push(node_stack, item)
*/
__pyx_v_item.i_node = __pyx_v_i2;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1017
* else:
* item.i_node = i2
* item.dist_p_LB = dist_p_LB_2 # <<<<<<<<<<<<<<
* stack_push(node_stack, item)
*
*/
__pyx_v_item.dist_p_LB = __pyx_v_dist_p_LB_2;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1018
* item.i_node = i2
* item.dist_p_LB = dist_p_LB_2
* stack_push(node_stack, item) # <<<<<<<<<<<<<<
*
* item.i_node = i1
*/
__pyx_f_7sklearn_9ball_tree_stack_push(__pyx_v_node_stack, __pyx_v_item);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1020
* stack_push(node_stack, item)
*
* item.i_node = i1 # <<<<<<<<<<<<<<
* item.dist_p_LB = dist_p_LB_1
* stack_push(node_stack, item)
*/
__pyx_v_item.i_node = __pyx_v_i1;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1021
*
* item.i_node = i1
* item.dist_p_LB = dist_p_LB_1 # <<<<<<<<<<<<<<
* stack_push(node_stack, item)
*
*/
__pyx_v_item.dist_p_LB = __pyx_v_dist_p_LB_1;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1022
* item.i_node = i1
* item.dist_p_LB = dist_p_LB_1
* stack_push(node_stack, item) # <<<<<<<<<<<<<<
*
* for i from 0 <= i < k:
*/
__pyx_f_7sklearn_9ball_tree_stack_push(__pyx_v_node_stack, __pyx_v_item);
}
__pyx_L10:;
}
__pyx_L6:;
__pyx_L4_continue:;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1024
* stack_push(node_stack, item)
*
* for i from 0 <= i < k: # <<<<<<<<<<<<<<
* near_set_dist[i] = dist_from_dist_p(near_set_dist[i], p)
*
*/
__pyx_t_2 = __pyx_v_k;
for (__pyx_v_i = 0; __pyx_v_i < __pyx_t_2; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1025
*
* for i from 0 <= i < k:
* near_set_dist[i] = dist_from_dist_p(near_set_dist[i], p) # <<<<<<<<<<<<<<
*
* cdef ITYPE_t query_radius_count_(BallTree self,
*/
(__pyx_v_near_set_dist[__pyx_v_i]) = __pyx_f_7sklearn_9ball_tree_dist_from_dist_p((__pyx_v_near_set_dist[__pyx_v_i]), __pyx_v_p);
}
__Pyx_RefNannyFinishContext();
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1027
* near_set_dist[i] = dist_from_dist_p(near_set_dist[i], p)
*
* cdef ITYPE_t query_radius_count_(BallTree self, # <<<<<<<<<<<<<<
* DTYPE_t* pt, DTYPE_t r,
* stack* node_stack):
*/
static __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_f_7sklearn_9ball_tree_8BallTree_query_radius_count_(struct __pyx_obj_7sklearn_9ball_tree_BallTree *__pyx_v_self, __pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_pt, __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_r, struct __pyx_t_7sklearn_9ball_tree_stack *__pyx_v_node_stack) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_data;
__pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_idx_array;
__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_node_centroid_arr;
struct __pyx_t_7sklearn_9ball_tree_NodeInfo *__pyx_v_node_info_arr;
struct __pyx_t_7sklearn_9ball_tree_NodeInfo *__pyx_v_node_info;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_p;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_features;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i_node;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_count;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_r_p;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_dist_pt;
struct __pyx_t_7sklearn_9ball_tree_stack_item __pyx_v_item;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_r;
int __pyx_t_1;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_2;
long __pyx_t_3;
__Pyx_RefNannySetupContext("query_radius_count_");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1030
* DTYPE_t* pt, DTYPE_t r,
* stack* node_stack):
* cdef DTYPE_t* data = <DTYPE_t*> self.data.data # <<<<<<<<<<<<<<
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
*/
__pyx_v_data = ((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_self->data->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1031
* stack* node_stack):
* cdef DTYPE_t* data = <DTYPE_t*> self.data.data
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data # <<<<<<<<<<<<<<
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data
*/
__pyx_v_idx_array = ((__pyx_t_7sklearn_9ball_tree_ITYPE_t *)__pyx_v_self->idx_array->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1032
* cdef DTYPE_t* data = <DTYPE_t*> self.data.data
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data # <<<<<<<<<<<<<<
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data
* cdef NodeInfo* node_info = node_info_arr
*/
__pyx_v_node_centroid_arr = ((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_self->node_centroid_arr->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1033
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data # <<<<<<<<<<<<<<
* cdef NodeInfo* node_info = node_info_arr
*
*/
__pyx_v_node_info_arr = ((struct __pyx_t_7sklearn_9ball_tree_NodeInfo *)__pyx_v_self->node_info_arr->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1034
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data
* cdef NodeInfo* node_info = node_info_arr # <<<<<<<<<<<<<<
*
* cdef DTYPE_t p = self.p
*/
__pyx_v_node_info = __pyx_v_node_info_arr;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1036
* cdef NodeInfo* node_info = node_info_arr
*
* cdef DTYPE_t p = self.p # <<<<<<<<<<<<<<
* cdef ITYPE_t n_features = self.data.shape[1]
* cdef ITYPE_t i, i_node
*/
__pyx_v_p = __pyx_v_self->p;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1037
*
* cdef DTYPE_t p = self.p
* cdef ITYPE_t n_features = self.data.shape[1] # <<<<<<<<<<<<<<
* cdef ITYPE_t i, i_node
* cdef ITYPE_t count = 0
*/
__pyx_v_n_features = (__pyx_v_self->data->dimensions[1]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1039
* cdef ITYPE_t n_features = self.data.shape[1]
* cdef ITYPE_t i, i_node
* cdef ITYPE_t count = 0 # <<<<<<<<<<<<<<
* cdef DTYPE_t r_p = dist_p_from_dist(r, p)
* cdef DTYPE_t dist_pt
*/
__pyx_v_count = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1040
* cdef ITYPE_t i, i_node
* cdef ITYPE_t count = 0
* cdef DTYPE_t r_p = dist_p_from_dist(r, p) # <<<<<<<<<<<<<<
* cdef DTYPE_t dist_pt
*
*/
__pyx_v_r_p = __pyx_f_7sklearn_9ball_tree_dist_p_from_dist(__pyx_v_r, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1045
* cdef stack_item item
*
* item.i_node = 0 # <<<<<<<<<<<<<<
* stack_push(node_stack, item)
*
*/
__pyx_v_item.i_node = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1046
*
* item.i_node = 0
* stack_push(node_stack, item) # <<<<<<<<<<<<<<
*
* while(node_stack.n > 0):
*/
__pyx_f_7sklearn_9ball_tree_stack_push(__pyx_v_node_stack, __pyx_v_item);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1048
* stack_push(node_stack, item)
*
* while(node_stack.n > 0): # <<<<<<<<<<<<<<
* item = stack_pop(node_stack)
* i_node = item.i_node
*/
while (1) {
__pyx_t_1 = (__pyx_v_node_stack->n > 0);
if (!__pyx_t_1) break;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1049
*
* while(node_stack.n > 0):
* item = stack_pop(node_stack) # <<<<<<<<<<<<<<
* i_node = item.i_node
* node_info = node_info_arr + i_node
*/
__pyx_v_item = __pyx_f_7sklearn_9ball_tree_stack_pop(__pyx_v_node_stack);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1050
* while(node_stack.n > 0):
* item = stack_pop(node_stack)
* i_node = item.i_node # <<<<<<<<<<<<<<
* node_info = node_info_arr + i_node
*
*/
__pyx_v_i_node = __pyx_v_item.i_node;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1051
* item = stack_pop(node_stack)
* i_node = item.i_node
* node_info = node_info_arr + i_node # <<<<<<<<<<<<<<
*
* dist_pt = dist(pt, node_centroid_arr + n_features * i_node,
*/
__pyx_v_node_info = (__pyx_v_node_info_arr + __pyx_v_i_node);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1054
*
* dist_pt = dist(pt, node_centroid_arr + n_features * i_node,
* n_features, p) # <<<<<<<<<<<<<<
*
* #------------------------------------------------------------
*/
__pyx_v_dist_pt = __pyx_f_7sklearn_9ball_tree_dist(__pyx_v_pt, (__pyx_v_node_centroid_arr + (__pyx_v_n_features * __pyx_v_i_node)), __pyx_v_n_features, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1059
* # Case 1: all node points are outside distance r.
* # prune this branch.
* if dist_pt - node_info.radius > r: # <<<<<<<<<<<<<<
* continue
*
*/
__pyx_t_1 = ((__pyx_v_dist_pt - __pyx_v_node_info->radius) > __pyx_v_r);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1060
* # prune this branch.
* if dist_pt - node_info.radius > r:
* continue # <<<<<<<<<<<<<<
*
* #------------------------------------------------------------
*/
goto __pyx_L3_continue;
goto __pyx_L5;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1065
* # Case 2: all node points are within distance r
* # add all points
* elif dist_pt + node_info.radius < r: # <<<<<<<<<<<<<<
* count += (node_info.idx_end - node_info.idx_start)
*
*/
__pyx_t_1 = ((__pyx_v_dist_pt + __pyx_v_node_info->radius) < __pyx_v_r);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1066
* # add all points
* elif dist_pt + node_info.radius < r:
* count += (node_info.idx_end - node_info.idx_start) # <<<<<<<<<<<<<<
*
* #------------------------------------------------------------
*/
__pyx_v_count += (__pyx_v_node_info->idx_end - __pyx_v_node_info->idx_start);
goto __pyx_L5;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1071
* # Case 3: this is a leaf node. Go through all points to
* # determine if they fall within radius
* elif node_info.is_leaf: # <<<<<<<<<<<<<<
* for i from node_info.idx_start <= i < node_info.idx_end:
* dist_pt = dist_p(pt,
*/
if (__pyx_v_node_info->is_leaf) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1072
* # determine if they fall within radius
* elif node_info.is_leaf:
* for i from node_info.idx_start <= i < node_info.idx_end: # <<<<<<<<<<<<<<
* dist_pt = dist_p(pt,
* data + idx_array[i] * n_features,
*/
__pyx_t_2 = __pyx_v_node_info->idx_end;
for (__pyx_v_i = __pyx_v_node_info->idx_start; __pyx_v_i < __pyx_t_2; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1075
* dist_pt = dist_p(pt,
* data + idx_array[i] * n_features,
* n_features, p) # <<<<<<<<<<<<<<
* if dist_pt <= r_p:
* count += 1
*/
__pyx_v_dist_pt = __pyx_f_7sklearn_9ball_tree_dist_p(__pyx_v_pt, (__pyx_v_data + ((__pyx_v_idx_array[__pyx_v_i]) * __pyx_v_n_features)), __pyx_v_n_features, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1076
* data + idx_array[i] * n_features,
* n_features, p)
* if dist_pt <= r_p: # <<<<<<<<<<<<<<
* count += 1
*
*/
__pyx_t_1 = (__pyx_v_dist_pt <= __pyx_v_r_p);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1077
* n_features, p)
* if dist_pt <= r_p:
* count += 1 # <<<<<<<<<<<<<<
*
* #------------------------------------------------------------
*/
__pyx_v_count += 1;
goto __pyx_L8;
}
__pyx_L8:;
}
goto __pyx_L5;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1082
* # Case 4: Node is not a leaf. Recursively query subnodes
* else:
* item.i_node = 2 * i_node + 1 # <<<<<<<<<<<<<<
* stack_push(node_stack, item)
*
*/
__pyx_v_item.i_node = ((2 * __pyx_v_i_node) + 1);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1083
* else:
* item.i_node = 2 * i_node + 1
* stack_push(node_stack, item) # <<<<<<<<<<<<<<
*
* item.i_node = i = 2 * i_node + 2
*/
__pyx_f_7sklearn_9ball_tree_stack_push(__pyx_v_node_stack, __pyx_v_item);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1085
* stack_push(node_stack, item)
*
* item.i_node = i = 2 * i_node + 2 # <<<<<<<<<<<<<<
* stack_push(node_stack, item)
*
*/
__pyx_t_3 = ((2 * __pyx_v_i_node) + 2);
__pyx_v_item.i_node = __pyx_t_3;
__pyx_v_i = __pyx_t_3;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1086
*
* item.i_node = i = 2 * i_node + 2
* stack_push(node_stack, item) # <<<<<<<<<<<<<<
*
* return count
*/
__pyx_f_7sklearn_9ball_tree_stack_push(__pyx_v_node_stack, __pyx_v_item);
}
__pyx_L5:;
__pyx_L3_continue:;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1088
* stack_push(node_stack, item)
*
* return count # <<<<<<<<<<<<<<
*
* cdef ITYPE_t query_radius_idx_only_(BallTree self,
*/
__pyx_r = __pyx_v_count;
goto __pyx_L0;
__pyx_r = 0;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1090
* return count
*
* cdef ITYPE_t query_radius_idx_only_(BallTree self, # <<<<<<<<<<<<<<
* DTYPE_t* pt, DTYPE_t r,
* ITYPE_t* indices,
*/
static __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_f_7sklearn_9ball_tree_8BallTree_query_radius_idx_only_(struct __pyx_obj_7sklearn_9ball_tree_BallTree *__pyx_v_self, __pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_pt, __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_r, __pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_indices, struct __pyx_t_7sklearn_9ball_tree_stack *__pyx_v_node_stack) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_data;
__pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_idx_array;
__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_node_centroid_arr;
struct __pyx_t_7sklearn_9ball_tree_NodeInfo *__pyx_v_node_info_arr;
struct __pyx_t_7sklearn_9ball_tree_NodeInfo *__pyx_v_node_info;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_p;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_features;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i_node;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_idx_i;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_r_p;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_dist_pt;
struct __pyx_t_7sklearn_9ball_tree_stack_item __pyx_v_item;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_r;
int __pyx_t_1;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_2;
long __pyx_t_3;
__Pyx_RefNannySetupContext("query_radius_idx_only_");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1094
* ITYPE_t* indices,
* stack* node_stack):
* cdef DTYPE_t* data = <DTYPE_t*> self.data.data # <<<<<<<<<<<<<<
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
*/
__pyx_v_data = ((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_self->data->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1095
* stack* node_stack):
* cdef DTYPE_t* data = <DTYPE_t*> self.data.data
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data # <<<<<<<<<<<<<<
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data
*/
__pyx_v_idx_array = ((__pyx_t_7sklearn_9ball_tree_ITYPE_t *)__pyx_v_self->idx_array->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1096
* cdef DTYPE_t* data = <DTYPE_t*> self.data.data
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data # <<<<<<<<<<<<<<
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data
* cdef NodeInfo* node_info = node_info_arr
*/
__pyx_v_node_centroid_arr = ((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_self->node_centroid_arr->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1097
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data # <<<<<<<<<<<<<<
* cdef NodeInfo* node_info = node_info_arr
*
*/
__pyx_v_node_info_arr = ((struct __pyx_t_7sklearn_9ball_tree_NodeInfo *)__pyx_v_self->node_info_arr->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1098
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data
* cdef NodeInfo* node_info = node_info_arr # <<<<<<<<<<<<<<
*
* cdef DTYPE_t p = self.p
*/
__pyx_v_node_info = __pyx_v_node_info_arr;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1100
* cdef NodeInfo* node_info = node_info_arr
*
* cdef DTYPE_t p = self.p # <<<<<<<<<<<<<<
* cdef ITYPE_t n_features = self.data.shape[1]
* cdef ITYPE_t i, i_node
*/
__pyx_v_p = __pyx_v_self->p;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1101
*
* cdef DTYPE_t p = self.p
* cdef ITYPE_t n_features = self.data.shape[1] # <<<<<<<<<<<<<<
* cdef ITYPE_t i, i_node
* cdef ITYPE_t idx_i = 0
*/
__pyx_v_n_features = (__pyx_v_self->data->dimensions[1]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1103
* cdef ITYPE_t n_features = self.data.shape[1]
* cdef ITYPE_t i, i_node
* cdef ITYPE_t idx_i = 0 # <<<<<<<<<<<<<<
* cdef DTYPE_t r_p = dist_p_from_dist(r, p)
* cdef DTYPE_t dist_pt
*/
__pyx_v_idx_i = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1104
* cdef ITYPE_t i, i_node
* cdef ITYPE_t idx_i = 0
* cdef DTYPE_t r_p = dist_p_from_dist(r, p) # <<<<<<<<<<<<<<
* cdef DTYPE_t dist_pt
*
*/
__pyx_v_r_p = __pyx_f_7sklearn_9ball_tree_dist_p_from_dist(__pyx_v_r, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1109
* cdef stack_item item
*
* item.i_node = 0 # <<<<<<<<<<<<<<
* stack_push(node_stack, item)
*
*/
__pyx_v_item.i_node = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1110
*
* item.i_node = 0
* stack_push(node_stack, item) # <<<<<<<<<<<<<<
*
* while(node_stack.n > 0):
*/
__pyx_f_7sklearn_9ball_tree_stack_push(__pyx_v_node_stack, __pyx_v_item);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1112
* stack_push(node_stack, item)
*
* while(node_stack.n > 0): # <<<<<<<<<<<<<<
* item = stack_pop(node_stack)
* i_node = item.i_node
*/
while (1) {
__pyx_t_1 = (__pyx_v_node_stack->n > 0);
if (!__pyx_t_1) break;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1113
*
* while(node_stack.n > 0):
* item = stack_pop(node_stack) # <<<<<<<<<<<<<<
* i_node = item.i_node
* node_info = node_info_arr + i_node
*/
__pyx_v_item = __pyx_f_7sklearn_9ball_tree_stack_pop(__pyx_v_node_stack);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1114
* while(node_stack.n > 0):
* item = stack_pop(node_stack)
* i_node = item.i_node # <<<<<<<<<<<<<<
* node_info = node_info_arr + i_node
*
*/
__pyx_v_i_node = __pyx_v_item.i_node;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1115
* item = stack_pop(node_stack)
* i_node = item.i_node
* node_info = node_info_arr + i_node # <<<<<<<<<<<<<<
*
* dist_pt = dist(pt, node_centroid_arr + n_features * i_node,
*/
__pyx_v_node_info = (__pyx_v_node_info_arr + __pyx_v_i_node);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1118
*
* dist_pt = dist(pt, node_centroid_arr + n_features * i_node,
* n_features, p) # <<<<<<<<<<<<<<
*
* #------------------------------------------------------------
*/
__pyx_v_dist_pt = __pyx_f_7sklearn_9ball_tree_dist(__pyx_v_pt, (__pyx_v_node_centroid_arr + (__pyx_v_n_features * __pyx_v_i_node)), __pyx_v_n_features, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1123
* # Case 1: all node points are outside distance r.
* # prune this branch.
* if dist_pt - node_info.radius > r: # <<<<<<<<<<<<<<
* continue
*
*/
__pyx_t_1 = ((__pyx_v_dist_pt - __pyx_v_node_info->radius) > __pyx_v_r);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1124
* # prune this branch.
* if dist_pt - node_info.radius > r:
* continue # <<<<<<<<<<<<<<
*
* #------------------------------------------------------------
*/
goto __pyx_L3_continue;
goto __pyx_L5;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1129
* # Case 2: all node points are within distance r
* # add all points
* elif dist_pt + node_info.radius < r: # <<<<<<<<<<<<<<
* for i from node_info.idx_start <= i < node_info.idx_end:
* indices[idx_i] = idx_array[i]
*/
__pyx_t_1 = ((__pyx_v_dist_pt + __pyx_v_node_info->radius) < __pyx_v_r);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1130
* # add all points
* elif dist_pt + node_info.radius < r:
* for i from node_info.idx_start <= i < node_info.idx_end: # <<<<<<<<<<<<<<
* indices[idx_i] = idx_array[i]
* idx_i += 1
*/
__pyx_t_2 = __pyx_v_node_info->idx_end;
for (__pyx_v_i = __pyx_v_node_info->idx_start; __pyx_v_i < __pyx_t_2; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1131
* elif dist_pt + node_info.radius < r:
* for i from node_info.idx_start <= i < node_info.idx_end:
* indices[idx_i] = idx_array[i] # <<<<<<<<<<<<<<
* idx_i += 1
*
*/
(__pyx_v_indices[__pyx_v_idx_i]) = (__pyx_v_idx_array[__pyx_v_i]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1132
* for i from node_info.idx_start <= i < node_info.idx_end:
* indices[idx_i] = idx_array[i]
* idx_i += 1 # <<<<<<<<<<<<<<
*
* #------------------------------------------------------------
*/
__pyx_v_idx_i += 1;
}
goto __pyx_L5;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1137
* # Case 3: this is a leaf node. Go through all points to
* # determine if they fall within radius
* elif node_info.is_leaf: # <<<<<<<<<<<<<<
* for i from node_info.idx_start <= i < node_info.idx_end:
* dist_pt = dist_p(pt,
*/
if (__pyx_v_node_info->is_leaf) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1138
* # determine if they fall within radius
* elif node_info.is_leaf:
* for i from node_info.idx_start <= i < node_info.idx_end: # <<<<<<<<<<<<<<
* dist_pt = dist_p(pt,
* data + idx_array[i] * n_features,
*/
__pyx_t_2 = __pyx_v_node_info->idx_end;
for (__pyx_v_i = __pyx_v_node_info->idx_start; __pyx_v_i < __pyx_t_2; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1141
* dist_pt = dist_p(pt,
* data + idx_array[i] * n_features,
* n_features, p) # <<<<<<<<<<<<<<
* if dist_pt <= r_p:
* indices[idx_i] = idx_array[i]
*/
__pyx_v_dist_pt = __pyx_f_7sklearn_9ball_tree_dist_p(__pyx_v_pt, (__pyx_v_data + ((__pyx_v_idx_array[__pyx_v_i]) * __pyx_v_n_features)), __pyx_v_n_features, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1142
* data + idx_array[i] * n_features,
* n_features, p)
* if dist_pt <= r_p: # <<<<<<<<<<<<<<
* indices[idx_i] = idx_array[i]
* idx_i += 1
*/
__pyx_t_1 = (__pyx_v_dist_pt <= __pyx_v_r_p);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1143
* n_features, p)
* if dist_pt <= r_p:
* indices[idx_i] = idx_array[i] # <<<<<<<<<<<<<<
* idx_i += 1
*
*/
(__pyx_v_indices[__pyx_v_idx_i]) = (__pyx_v_idx_array[__pyx_v_i]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1144
* if dist_pt <= r_p:
* indices[idx_i] = idx_array[i]
* idx_i += 1 # <<<<<<<<<<<<<<
*
* #------------------------------------------------------------
*/
__pyx_v_idx_i += 1;
goto __pyx_L10;
}
__pyx_L10:;
}
goto __pyx_L5;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1149
* # Case 4: Node is not a leaf. Recursively query subnodes
* else:
* item.i_node = 2 * i_node + 1 # <<<<<<<<<<<<<<
* stack_push(node_stack, item)
*
*/
__pyx_v_item.i_node = ((2 * __pyx_v_i_node) + 1);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1150
* else:
* item.i_node = 2 * i_node + 1
* stack_push(node_stack, item) # <<<<<<<<<<<<<<
*
* item.i_node = i = 2 * i_node + 2
*/
__pyx_f_7sklearn_9ball_tree_stack_push(__pyx_v_node_stack, __pyx_v_item);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1152
* stack_push(node_stack, item)
*
* item.i_node = i = 2 * i_node + 2 # <<<<<<<<<<<<<<
* stack_push(node_stack, item)
*
*/
__pyx_t_3 = ((2 * __pyx_v_i_node) + 2);
__pyx_v_item.i_node = __pyx_t_3;
__pyx_v_i = __pyx_t_3;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1153
*
* item.i_node = i = 2 * i_node + 2
* stack_push(node_stack, item) # <<<<<<<<<<<<<<
*
* return idx_i
*/
__pyx_f_7sklearn_9ball_tree_stack_push(__pyx_v_node_stack, __pyx_v_item);
}
__pyx_L5:;
__pyx_L3_continue:;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1155
* stack_push(node_stack, item)
*
* return idx_i # <<<<<<<<<<<<<<
*
* cdef ITYPE_t query_radius_distances_(BallTree self,
*/
__pyx_r = __pyx_v_idx_i;
goto __pyx_L0;
__pyx_r = 0;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1157
* return idx_i
*
* cdef ITYPE_t query_radius_distances_(BallTree self, # <<<<<<<<<<<<<<
* DTYPE_t* pt, DTYPE_t r,
* ITYPE_t* indices,
*/
static __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_f_7sklearn_9ball_tree_8BallTree_query_radius_distances_(struct __pyx_obj_7sklearn_9ball_tree_BallTree *__pyx_v_self, __pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_pt, __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_r, __pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_indices, __pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_distances, struct __pyx_t_7sklearn_9ball_tree_stack *__pyx_v_node_stack) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_data;
__pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_idx_array;
__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_node_centroid_arr;
struct __pyx_t_7sklearn_9ball_tree_NodeInfo *__pyx_v_node_info_arr;
struct __pyx_t_7sklearn_9ball_tree_NodeInfo *__pyx_v_node_info;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_p;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_features;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i_node;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_idx_i;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_r_p;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_dist_pt;
struct __pyx_t_7sklearn_9ball_tree_stack_item __pyx_v_item;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_r;
int __pyx_t_1;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_2;
long __pyx_t_3;
__Pyx_RefNannySetupContext("query_radius_distances_");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1162
* DTYPE_t* distances,
* stack* node_stack):
* cdef DTYPE_t* data = <DTYPE_t*> self.data.data # <<<<<<<<<<<<<<
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
*/
__pyx_v_data = ((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_self->data->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1163
* stack* node_stack):
* cdef DTYPE_t* data = <DTYPE_t*> self.data.data
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data # <<<<<<<<<<<<<<
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data
*/
__pyx_v_idx_array = ((__pyx_t_7sklearn_9ball_tree_ITYPE_t *)__pyx_v_self->idx_array->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1164
* cdef DTYPE_t* data = <DTYPE_t*> self.data.data
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data # <<<<<<<<<<<<<<
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data
* cdef NodeInfo* node_info = node_info_arr
*/
__pyx_v_node_centroid_arr = ((__pyx_t_7sklearn_9ball_tree_DTYPE_t *)__pyx_v_self->node_centroid_arr->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1165
* cdef ITYPE_t* idx_array = <ITYPE_t*> self.idx_array.data
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data # <<<<<<<<<<<<<<
* cdef NodeInfo* node_info = node_info_arr
*
*/
__pyx_v_node_info_arr = ((struct __pyx_t_7sklearn_9ball_tree_NodeInfo *)__pyx_v_self->node_info_arr->data);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1166
* cdef DTYPE_t* node_centroid_arr = <DTYPE_t*>self.node_centroid_arr.data
* cdef NodeInfo* node_info_arr = <NodeInfo*> self.node_info_arr.data
* cdef NodeInfo* node_info = node_info_arr # <<<<<<<<<<<<<<
*
* cdef DTYPE_t p = self.p
*/
__pyx_v_node_info = __pyx_v_node_info_arr;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1168
* cdef NodeInfo* node_info = node_info_arr
*
* cdef DTYPE_t p = self.p # <<<<<<<<<<<<<<
* cdef ITYPE_t n_features = self.data.shape[1]
* cdef ITYPE_t i, i_node
*/
__pyx_v_p = __pyx_v_self->p;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1169
*
* cdef DTYPE_t p = self.p
* cdef ITYPE_t n_features = self.data.shape[1] # <<<<<<<<<<<<<<
* cdef ITYPE_t i, i_node
* cdef ITYPE_t idx_i = 0
*/
__pyx_v_n_features = (__pyx_v_self->data->dimensions[1]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1171
* cdef ITYPE_t n_features = self.data.shape[1]
* cdef ITYPE_t i, i_node
* cdef ITYPE_t idx_i = 0 # <<<<<<<<<<<<<<
* cdef DTYPE_t r_p = dist_p_from_dist(r, p)
* cdef DTYPE_t dist_pt
*/
__pyx_v_idx_i = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1172
* cdef ITYPE_t i, i_node
* cdef ITYPE_t idx_i = 0
* cdef DTYPE_t r_p = dist_p_from_dist(r, p) # <<<<<<<<<<<<<<
* cdef DTYPE_t dist_pt
*
*/
__pyx_v_r_p = __pyx_f_7sklearn_9ball_tree_dist_p_from_dist(__pyx_v_r, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1177
* cdef stack_item item
*
* item.i_node = 0 # <<<<<<<<<<<<<<
* stack_push(node_stack, item)
*
*/
__pyx_v_item.i_node = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1178
*
* item.i_node = 0
* stack_push(node_stack, item) # <<<<<<<<<<<<<<
*
* while(node_stack.n > 0):
*/
__pyx_f_7sklearn_9ball_tree_stack_push(__pyx_v_node_stack, __pyx_v_item);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1180
* stack_push(node_stack, item)
*
* while(node_stack.n > 0): # <<<<<<<<<<<<<<
* item = stack_pop(node_stack)
* i_node = item.i_node
*/
while (1) {
__pyx_t_1 = (__pyx_v_node_stack->n > 0);
if (!__pyx_t_1) break;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1181
*
* while(node_stack.n > 0):
* item = stack_pop(node_stack) # <<<<<<<<<<<<<<
* i_node = item.i_node
* node_info = node_info_arr + i_node
*/
__pyx_v_item = __pyx_f_7sklearn_9ball_tree_stack_pop(__pyx_v_node_stack);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1182
* while(node_stack.n > 0):
* item = stack_pop(node_stack)
* i_node = item.i_node # <<<<<<<<<<<<<<
* node_info = node_info_arr + i_node
*
*/
__pyx_v_i_node = __pyx_v_item.i_node;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1183
* item = stack_pop(node_stack)
* i_node = item.i_node
* node_info = node_info_arr + i_node # <<<<<<<<<<<<<<
*
* dist_pt = dist(pt, node_centroid_arr + n_features * i_node,
*/
__pyx_v_node_info = (__pyx_v_node_info_arr + __pyx_v_i_node);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1186
*
* dist_pt = dist(pt, node_centroid_arr + n_features * i_node,
* n_features, p) # <<<<<<<<<<<<<<
*
* #------------------------------------------------------------
*/
__pyx_v_dist_pt = __pyx_f_7sklearn_9ball_tree_dist(__pyx_v_pt, (__pyx_v_node_centroid_arr + (__pyx_v_n_features * __pyx_v_i_node)), __pyx_v_n_features, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1191
* # Case 1: all node points are outside distance r.
* # prune this branch.
* if dist_pt - node_info.radius > r: # <<<<<<<<<<<<<<
* continue
*
*/
__pyx_t_1 = ((__pyx_v_dist_pt - __pyx_v_node_info->radius) > __pyx_v_r);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1192
* # prune this branch.
* if dist_pt - node_info.radius > r:
* continue # <<<<<<<<<<<<<<
*
* #------------------------------------------------------------
*/
goto __pyx_L3_continue;
goto __pyx_L5;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1197
* # Case 2: all node points are within distance r
* # add all points
* elif dist_pt + node_info.radius < r: # <<<<<<<<<<<<<<
* for i from node_info.idx_start <= i < node_info.idx_end:
* dist_pt = dist(pt,
*/
__pyx_t_1 = ((__pyx_v_dist_pt + __pyx_v_node_info->radius) < __pyx_v_r);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1198
* # add all points
* elif dist_pt + node_info.radius < r:
* for i from node_info.idx_start <= i < node_info.idx_end: # <<<<<<<<<<<<<<
* dist_pt = dist(pt,
* data + idx_array[i] * n_features,
*/
__pyx_t_2 = __pyx_v_node_info->idx_end;
for (__pyx_v_i = __pyx_v_node_info->idx_start; __pyx_v_i < __pyx_t_2; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1201
* dist_pt = dist(pt,
* data + idx_array[i] * n_features,
* n_features, p) # <<<<<<<<<<<<<<
* indices[idx_i] = idx_array[i]
* distances[idx_i] = dist_pt
*/
__pyx_v_dist_pt = __pyx_f_7sklearn_9ball_tree_dist(__pyx_v_pt, (__pyx_v_data + ((__pyx_v_idx_array[__pyx_v_i]) * __pyx_v_n_features)), __pyx_v_n_features, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1202
* data + idx_array[i] * n_features,
* n_features, p)
* indices[idx_i] = idx_array[i] # <<<<<<<<<<<<<<
* distances[idx_i] = dist_pt
* idx_i += 1
*/
(__pyx_v_indices[__pyx_v_idx_i]) = (__pyx_v_idx_array[__pyx_v_i]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1203
* n_features, p)
* indices[idx_i] = idx_array[i]
* distances[idx_i] = dist_pt # <<<<<<<<<<<<<<
* idx_i += 1
*
*/
(__pyx_v_distances[__pyx_v_idx_i]) = __pyx_v_dist_pt;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1204
* indices[idx_i] = idx_array[i]
* distances[idx_i] = dist_pt
* idx_i += 1 # <<<<<<<<<<<<<<
*
* #------------------------------------------------------------
*/
__pyx_v_idx_i += 1;
}
goto __pyx_L5;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1209
* # Case 3: this is a leaf node. Go through all points to
* # determine if they fall within radius
* elif node_info.is_leaf: # <<<<<<<<<<<<<<
* for i from node_info.idx_start <= i < node_info.idx_end:
* dist_pt = dist_p(pt,
*/
if (__pyx_v_node_info->is_leaf) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1210
* # determine if they fall within radius
* elif node_info.is_leaf:
* for i from node_info.idx_start <= i < node_info.idx_end: # <<<<<<<<<<<<<<
* dist_pt = dist_p(pt,
* data + idx_array[i] * n_features,
*/
__pyx_t_2 = __pyx_v_node_info->idx_end;
for (__pyx_v_i = __pyx_v_node_info->idx_start; __pyx_v_i < __pyx_t_2; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1213
* dist_pt = dist_p(pt,
* data + idx_array[i] * n_features,
* n_features, p) # <<<<<<<<<<<<<<
* if dist_pt <= r_p:
* indices[idx_i] = idx_array[i]
*/
__pyx_v_dist_pt = __pyx_f_7sklearn_9ball_tree_dist_p(__pyx_v_pt, (__pyx_v_data + ((__pyx_v_idx_array[__pyx_v_i]) * __pyx_v_n_features)), __pyx_v_n_features, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1214
* data + idx_array[i] * n_features,
* n_features, p)
* if dist_pt <= r_p: # <<<<<<<<<<<<<<
* indices[idx_i] = idx_array[i]
* distances[idx_i] = dist_from_dist_p(dist_pt, p)
*/
__pyx_t_1 = (__pyx_v_dist_pt <= __pyx_v_r_p);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1215
* n_features, p)
* if dist_pt <= r_p:
* indices[idx_i] = idx_array[i] # <<<<<<<<<<<<<<
* distances[idx_i] = dist_from_dist_p(dist_pt, p)
* idx_i += 1
*/
(__pyx_v_indices[__pyx_v_idx_i]) = (__pyx_v_idx_array[__pyx_v_i]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1216
* if dist_pt <= r_p:
* indices[idx_i] = idx_array[i]
* distances[idx_i] = dist_from_dist_p(dist_pt, p) # <<<<<<<<<<<<<<
* idx_i += 1
*
*/
(__pyx_v_distances[__pyx_v_idx_i]) = __pyx_f_7sklearn_9ball_tree_dist_from_dist_p(__pyx_v_dist_pt, __pyx_v_p);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1217
* indices[idx_i] = idx_array[i]
* distances[idx_i] = dist_from_dist_p(dist_pt, p)
* idx_i += 1 # <<<<<<<<<<<<<<
*
* #------------------------------------------------------------
*/
__pyx_v_idx_i += 1;
goto __pyx_L10;
}
__pyx_L10:;
}
goto __pyx_L5;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1222
* # Case 4: Node is not a leaf. Recursively query subnodes
* else:
* item.i_node = 2 * i_node + 1 # <<<<<<<<<<<<<<
* stack_push(node_stack, item)
*
*/
__pyx_v_item.i_node = ((2 * __pyx_v_i_node) + 1);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1223
* else:
* item.i_node = 2 * i_node + 1
* stack_push(node_stack, item) # <<<<<<<<<<<<<<
*
* item.i_node = i = 2 * i_node + 2
*/
__pyx_f_7sklearn_9ball_tree_stack_push(__pyx_v_node_stack, __pyx_v_item);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1225
* stack_push(node_stack, item)
*
* item.i_node = i = 2 * i_node + 2 # <<<<<<<<<<<<<<
* stack_push(node_stack, item)
*
*/
__pyx_t_3 = ((2 * __pyx_v_i_node) + 2);
__pyx_v_item.i_node = __pyx_t_3;
__pyx_v_i = __pyx_t_3;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1226
*
* item.i_node = i = 2 * i_node + 2
* stack_push(node_stack, item) # <<<<<<<<<<<<<<
*
* return idx_i
*/
__pyx_f_7sklearn_9ball_tree_stack_push(__pyx_v_node_stack, __pyx_v_item);
}
__pyx_L5:;
__pyx_L3_continue:;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1228
* stack_push(node_stack, item)
*
* return idx_i # <<<<<<<<<<<<<<
*
*
*/
__pyx_r = __pyx_v_idx_i;
goto __pyx_L0;
__pyx_r = 0;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1235
* #
* @cython.profile(False)
* cdef inline void copy_array(DTYPE_t* x, DTYPE_t* y, ITYPE_t n): # <<<<<<<<<<<<<<
* # copy array y into array x
* cdef ITYPE_t i
*/
static CYTHON_INLINE void __pyx_f_7sklearn_9ball_tree_copy_array(__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_x, __pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_y, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n) {
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_1;
__Pyx_RefNannySetupContext("copy_array");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1238
* # copy array y into array x
* cdef ITYPE_t i
* for i from 0 <= i < n: # <<<<<<<<<<<<<<
* x[i] = y[i]
*
*/
__pyx_t_1 = __pyx_v_n;
for (__pyx_v_i = 0; __pyx_v_i < __pyx_t_1; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1239
* cdef ITYPE_t i
* for i from 0 <= i < n:
* x[i] = y[i] # <<<<<<<<<<<<<<
*
*
*/
(__pyx_v_x[__pyx_v_i]) = (__pyx_v_y[__pyx_v_i]);
}
__Pyx_RefNannyFinishContext();
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1243
*
* @cython.cdivision(True)
* cdef void compute_centroid(DTYPE_t* centroid, # <<<<<<<<<<<<<<
* DTYPE_t* data,
* ITYPE_t* node_indices,
*/
static void __pyx_f_7sklearn_9ball_tree_compute_centroid(__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_centroid, __pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_data, __pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_node_indices, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_features, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_points) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_this_pt;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_j;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_1;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_2;
__Pyx_RefNannySetupContext("compute_centroid");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1254
* cdef ITYPE_t i, j
*
* for j from 0 <= j < n_features: # <<<<<<<<<<<<<<
* centroid[j] = 0
*
*/
__pyx_t_1 = __pyx_v_n_features;
for (__pyx_v_j = 0; __pyx_v_j < __pyx_t_1; __pyx_v_j++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1255
*
* for j from 0 <= j < n_features:
* centroid[j] = 0 # <<<<<<<<<<<<<<
*
* for i from 0 <= i < n_points:
*/
(__pyx_v_centroid[__pyx_v_j]) = 0.0;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1257
* centroid[j] = 0
*
* for i from 0 <= i < n_points: # <<<<<<<<<<<<<<
* this_pt = data + n_features * node_indices[i]
* for j from 0 <= j < n_features:
*/
__pyx_t_1 = __pyx_v_n_points;
for (__pyx_v_i = 0; __pyx_v_i < __pyx_t_1; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1258
*
* for i from 0 <= i < n_points:
* this_pt = data + n_features * node_indices[i] # <<<<<<<<<<<<<<
* for j from 0 <= j < n_features:
* centroid[j] += this_pt[j]
*/
__pyx_v_this_pt = (__pyx_v_data + (__pyx_v_n_features * (__pyx_v_node_indices[__pyx_v_i])));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1259
* for i from 0 <= i < n_points:
* this_pt = data + n_features * node_indices[i]
* for j from 0 <= j < n_features: # <<<<<<<<<<<<<<
* centroid[j] += this_pt[j]
*
*/
__pyx_t_2 = __pyx_v_n_features;
for (__pyx_v_j = 0; __pyx_v_j < __pyx_t_2; __pyx_v_j++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1260
* this_pt = data + n_features * node_indices[i]
* for j from 0 <= j < n_features:
* centroid[j] += this_pt[j] # <<<<<<<<<<<<<<
*
* for j from 0 <= j < n_features:
*/
(__pyx_v_centroid[__pyx_v_j]) += (__pyx_v_this_pt[__pyx_v_j]);
}
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1262
* centroid[j] += this_pt[j]
*
* for j from 0 <= j < n_features: # <<<<<<<<<<<<<<
* centroid[j] /= n_points
*
*/
__pyx_t_1 = __pyx_v_n_features;
for (__pyx_v_j = 0; __pyx_v_j < __pyx_t_1; __pyx_v_j++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1263
*
* for j from 0 <= j < n_features:
* centroid[j] /= n_points # <<<<<<<<<<<<<<
*
*
*/
(__pyx_v_centroid[__pyx_v_j]) /= __pyx_v_n_points;
}
__Pyx_RefNannyFinishContext();
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1266
*
*
* cdef ITYPE_t find_split_dim(DTYPE_t* data, # <<<<<<<<<<<<<<
* ITYPE_t* node_indices,
* ITYPE_t n_features,
*/
static __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_f_7sklearn_9ball_tree_find_split_dim(__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_data, __pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_node_indices, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_features, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_points) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_min_val;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_max_val;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_val;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_spread;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_max_spread;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_j;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_j_max;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_r;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_1;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_2;
int __pyx_t_3;
__Pyx_RefNannySetupContext("find_split_dim");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1275
* cdef ITYPE_t i, j, j_max
*
* j_max = 0 # <<<<<<<<<<<<<<
* max_spread = 0
*
*/
__pyx_v_j_max = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1276
*
* j_max = 0
* max_spread = 0 # <<<<<<<<<<<<<<
*
* for j from 0 <= j < n_features:
*/
__pyx_v_max_spread = 0.0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1278
* max_spread = 0
*
* for j from 0 <= j < n_features: # <<<<<<<<<<<<<<
* max_val = data[node_indices[0] * n_features + j]
* min_val = max_val
*/
__pyx_t_1 = __pyx_v_n_features;
for (__pyx_v_j = 0; __pyx_v_j < __pyx_t_1; __pyx_v_j++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1279
*
* for j from 0 <= j < n_features:
* max_val = data[node_indices[0] * n_features + j] # <<<<<<<<<<<<<<
* min_val = max_val
* for i from 1 <= i < n_points:
*/
__pyx_v_max_val = (__pyx_v_data[(((__pyx_v_node_indices[0]) * __pyx_v_n_features) + __pyx_v_j)]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1280
* for j from 0 <= j < n_features:
* max_val = data[node_indices[0] * n_features + j]
* min_val = max_val # <<<<<<<<<<<<<<
* for i from 1 <= i < n_points:
* val = data[node_indices[i] * n_features + j]
*/
__pyx_v_min_val = __pyx_v_max_val;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1281
* max_val = data[node_indices[0] * n_features + j]
* min_val = max_val
* for i from 1 <= i < n_points: # <<<<<<<<<<<<<<
* val = data[node_indices[i] * n_features + j]
* max_val = dmax(max_val, val)
*/
__pyx_t_2 = __pyx_v_n_points;
for (__pyx_v_i = 1; __pyx_v_i < __pyx_t_2; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1282
* min_val = max_val
* for i from 1 <= i < n_points:
* val = data[node_indices[i] * n_features + j] # <<<<<<<<<<<<<<
* max_val = dmax(max_val, val)
* min_val = dmin(min_val, val)
*/
__pyx_v_val = (__pyx_v_data[(((__pyx_v_node_indices[__pyx_v_i]) * __pyx_v_n_features) + __pyx_v_j)]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1283
* for i from 1 <= i < n_points:
* val = data[node_indices[i] * n_features + j]
* max_val = dmax(max_val, val) # <<<<<<<<<<<<<<
* min_val = dmin(min_val, val)
* spread = max_val - min_val
*/
__pyx_v_max_val = __pyx_f_7sklearn_9ball_tree_dmax(__pyx_v_max_val, __pyx_v_val);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1284
* val = data[node_indices[i] * n_features + j]
* max_val = dmax(max_val, val)
* min_val = dmin(min_val, val) # <<<<<<<<<<<<<<
* spread = max_val - min_val
* if spread > max_spread:
*/
__pyx_v_min_val = __pyx_f_7sklearn_9ball_tree_dmin(__pyx_v_min_val, __pyx_v_val);
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1285
* max_val = dmax(max_val, val)
* min_val = dmin(min_val, val)
* spread = max_val - min_val # <<<<<<<<<<<<<<
* if spread > max_spread:
* max_spread = spread
*/
__pyx_v_spread = (__pyx_v_max_val - __pyx_v_min_val);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1286
* min_val = dmin(min_val, val)
* spread = max_val - min_val
* if spread > max_spread: # <<<<<<<<<<<<<<
* max_spread = spread
* j_max = j
*/
__pyx_t_3 = (__pyx_v_spread > __pyx_v_max_spread);
if (__pyx_t_3) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1287
* spread = max_val - min_val
* if spread > max_spread:
* max_spread = spread # <<<<<<<<<<<<<<
* j_max = j
* return j_max
*/
__pyx_v_max_spread = __pyx_v_spread;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1288
* if spread > max_spread:
* max_spread = spread
* j_max = j # <<<<<<<<<<<<<<
* return j_max
*
*/
__pyx_v_j_max = __pyx_v_j;
goto __pyx_L7;
}
__pyx_L7:;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1289
* max_spread = spread
* j_max = j
* return j_max # <<<<<<<<<<<<<<
*
*
*/
__pyx_r = __pyx_v_j_max;
goto __pyx_L0;
__pyx_r = 0;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1293
*
* @cython.profile(False)
* cdef inline void iswap(ITYPE_t* arr, ITYPE_t i1, ITYPE_t i2): # <<<<<<<<<<<<<<
* cdef ITYPE_t tmp = arr[i1]
* arr[i1] = arr[i2]
*/
static CYTHON_INLINE void __pyx_f_7sklearn_9ball_tree_iswap(__pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_arr, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i1, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i2) {
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_tmp;
__Pyx_RefNannySetupContext("iswap");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1294
* @cython.profile(False)
* cdef inline void iswap(ITYPE_t* arr, ITYPE_t i1, ITYPE_t i2):
* cdef ITYPE_t tmp = arr[i1] # <<<<<<<<<<<<<<
* arr[i1] = arr[i2]
* arr[i2] = tmp
*/
__pyx_v_tmp = (__pyx_v_arr[__pyx_v_i1]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1295
* cdef inline void iswap(ITYPE_t* arr, ITYPE_t i1, ITYPE_t i2):
* cdef ITYPE_t tmp = arr[i1]
* arr[i1] = arr[i2] # <<<<<<<<<<<<<<
* arr[i2] = tmp
*
*/
(__pyx_v_arr[__pyx_v_i1]) = (__pyx_v_arr[__pyx_v_i2]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1296
* cdef ITYPE_t tmp = arr[i1]
* arr[i1] = arr[i2]
* arr[i2] = tmp # <<<<<<<<<<<<<<
*
*
*/
(__pyx_v_arr[__pyx_v_i2]) = __pyx_v_tmp;
__Pyx_RefNannyFinishContext();
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1300
*
* @cython.profile(False)
* cdef inline void dswap(DTYPE_t* arr, ITYPE_t i1, ITYPE_t i2): # <<<<<<<<<<<<<<
* cdef DTYPE_t tmp = arr[i1]
* arr[i1] = arr[i2]
*/
static CYTHON_INLINE void __pyx_f_7sklearn_9ball_tree_dswap(__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_arr, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i1, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i2) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_tmp;
__Pyx_RefNannySetupContext("dswap");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1301
* @cython.profile(False)
* cdef inline void dswap(DTYPE_t* arr, ITYPE_t i1, ITYPE_t i2):
* cdef DTYPE_t tmp = arr[i1] # <<<<<<<<<<<<<<
* arr[i1] = arr[i2]
* arr[i2] = tmp
*/
__pyx_v_tmp = (__pyx_v_arr[__pyx_v_i1]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1302
* cdef inline void dswap(DTYPE_t* arr, ITYPE_t i1, ITYPE_t i2):
* cdef DTYPE_t tmp = arr[i1]
* arr[i1] = arr[i2] # <<<<<<<<<<<<<<
* arr[i2] = tmp
*
*/
(__pyx_v_arr[__pyx_v_i1]) = (__pyx_v_arr[__pyx_v_i2]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1303
* cdef DTYPE_t tmp = arr[i1]
* arr[i1] = arr[i2]
* arr[i2] = tmp # <<<<<<<<<<<<<<
*
*
*/
(__pyx_v_arr[__pyx_v_i2]) = __pyx_v_tmp;
__Pyx_RefNannyFinishContext();
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1306
*
*
* cdef void partition_indices(DTYPE_t* data, # <<<<<<<<<<<<<<
* ITYPE_t* node_indices,
* ITYPE_t split_dim,
*/
static void __pyx_f_7sklearn_9ball_tree_partition_indices(__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_data, __pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_node_indices, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_split_dim, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_split_index, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_features, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_points) {
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_left;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_right;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_midindex;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_d1;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_d2;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_1;
int __pyx_t_2;
__Pyx_RefNannySetupContext("partition_indices");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1322
* cdef ITYPE_t left, right, midindex, i
* cdef DTYPE_t d1, d2
* left = 0 # <<<<<<<<<<<<<<
* right = n_points - 1
*
*/
__pyx_v_left = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1323
* cdef DTYPE_t d1, d2
* left = 0
* right = n_points - 1 # <<<<<<<<<<<<<<
*
* while True:
*/
__pyx_v_right = (__pyx_v_n_points - 1);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1325
* right = n_points - 1
*
* while True: # <<<<<<<<<<<<<<
* midindex = left
* for i from left <= i < right:
*/
while (1) {
if (!1) break;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1326
*
* while True:
* midindex = left # <<<<<<<<<<<<<<
* for i from left <= i < right:
* d1 = data[node_indices[i] * n_features + split_dim]
*/
__pyx_v_midindex = __pyx_v_left;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1327
* while True:
* midindex = left
* for i from left <= i < right: # <<<<<<<<<<<<<<
* d1 = data[node_indices[i] * n_features + split_dim]
* d2 = data[node_indices[right] * n_features + split_dim]
*/
__pyx_t_1 = __pyx_v_right;
for (__pyx_v_i = __pyx_v_left; __pyx_v_i < __pyx_t_1; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1328
* midindex = left
* for i from left <= i < right:
* d1 = data[node_indices[i] * n_features + split_dim] # <<<<<<<<<<<<<<
* d2 = data[node_indices[right] * n_features + split_dim]
* if d1 < d2:
*/
__pyx_v_d1 = (__pyx_v_data[(((__pyx_v_node_indices[__pyx_v_i]) * __pyx_v_n_features) + __pyx_v_split_dim)]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1329
* for i from left <= i < right:
* d1 = data[node_indices[i] * n_features + split_dim]
* d2 = data[node_indices[right] * n_features + split_dim] # <<<<<<<<<<<<<<
* if d1 < d2:
* iswap(node_indices, i, midindex)
*/
__pyx_v_d2 = (__pyx_v_data[(((__pyx_v_node_indices[__pyx_v_right]) * __pyx_v_n_features) + __pyx_v_split_dim)]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1330
* d1 = data[node_indices[i] * n_features + split_dim]
* d2 = data[node_indices[right] * n_features + split_dim]
* if d1 < d2: # <<<<<<<<<<<<<<
* iswap(node_indices, i, midindex)
* midindex += 1
*/
__pyx_t_2 = (__pyx_v_d1 < __pyx_v_d2);
if (__pyx_t_2) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1331
* d2 = data[node_indices[right] * n_features + split_dim]
* if d1 < d2:
* iswap(node_indices, i, midindex) # <<<<<<<<<<<<<<
* midindex += 1
* iswap(node_indices, midindex, right)
*/
__pyx_f_7sklearn_9ball_tree_iswap(__pyx_v_node_indices, __pyx_v_i, __pyx_v_midindex);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1332
* if d1 < d2:
* iswap(node_indices, i, midindex)
* midindex += 1 # <<<<<<<<<<<<<<
* iswap(node_indices, midindex, right)
* if midindex == split_index:
*/
__pyx_v_midindex += 1;
goto __pyx_L7;
}
__pyx_L7:;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1333
* iswap(node_indices, i, midindex)
* midindex += 1
* iswap(node_indices, midindex, right) # <<<<<<<<<<<<<<
* if midindex == split_index:
* break
*/
__pyx_f_7sklearn_9ball_tree_iswap(__pyx_v_node_indices, __pyx_v_midindex, __pyx_v_right);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1334
* midindex += 1
* iswap(node_indices, midindex, right)
* if midindex == split_index: # <<<<<<<<<<<<<<
* break
* elif midindex < split_index:
*/
__pyx_t_2 = (__pyx_v_midindex == __pyx_v_split_index);
if (__pyx_t_2) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1335
* iswap(node_indices, midindex, right)
* if midindex == split_index:
* break # <<<<<<<<<<<<<<
* elif midindex < split_index:
* left = midindex + 1
*/
goto __pyx_L4_break;
goto __pyx_L8;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1336
* if midindex == split_index:
* break
* elif midindex < split_index: # <<<<<<<<<<<<<<
* left = midindex + 1
* else:
*/
__pyx_t_2 = (__pyx_v_midindex < __pyx_v_split_index);
if (__pyx_t_2) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1337
* break
* elif midindex < split_index:
* left = midindex + 1 # <<<<<<<<<<<<<<
* else:
* right = midindex - 1
*/
__pyx_v_left = (__pyx_v_midindex + 1);
goto __pyx_L8;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1339
* left = midindex + 1
* else:
* right = midindex - 1 # <<<<<<<<<<<<<<
*
*
*/
__pyx_v_right = (__pyx_v_midindex - 1);
}
__pyx_L8:;
}
__pyx_L4_break:;
__Pyx_RefNannyFinishContext();
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1347
* # This calculates the lower-bound distance between a point and a node
* @cython.profile(False)
* cdef inline DTYPE_t calc_dist_LB(DTYPE_t* pt, # <<<<<<<<<<<<<<
* DTYPE_t* centroid,
* DTYPE_t radius,
*/
static CYTHON_INLINE __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_calc_dist_LB(__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_pt, __pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_centroid, __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_radius, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_features, __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_p) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_r;
__Pyx_RefNannySetupContext("calc_dist_LB");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1353
* DTYPE_t p):
* return dmax(0, (dist(pt, centroid, n_features, p)
* - radius)) # <<<<<<<<<<<<<<
*
*
*/
__pyx_r = __pyx_f_7sklearn_9ball_tree_dmax(0.0, (__pyx_f_7sklearn_9ball_tree_dist(__pyx_v_pt, __pyx_v_centroid, __pyx_v_n_features, __pyx_v_p) - __pyx_v_radius));
goto __pyx_L0;
__pyx_r = 0;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1357
*
* @cython.profile(False)
* cdef inline DTYPE_t calc_dist_p_LB(DTYPE_t* pt, # <<<<<<<<<<<<<<
* DTYPE_t* centroid,
* DTYPE_t radius,
*/
static CYTHON_INLINE __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_calc_dist_p_LB(__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_pt, __pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_centroid, __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_radius, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_n_features, __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_p) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_r;
__Pyx_RefNannySetupContext("calc_dist_p_LB");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1363
* DTYPE_t p):
* return dist_p_from_dist(dmax(0, (dist(pt, centroid, n_features, p)
* - radius)), p) # <<<<<<<<<<<<<<
*
*
*/
__pyx_r = __pyx_f_7sklearn_9ball_tree_dist_p_from_dist(__pyx_f_7sklearn_9ball_tree_dmax(0.0, (__pyx_f_7sklearn_9ball_tree_dist(__pyx_v_pt, __pyx_v_centroid, __pyx_v_n_features, __pyx_v_p) - __pyx_v_radius)), __pyx_v_p);
goto __pyx_L0;
__pyx_r = 0;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1373
* # are represented by infinities.
* @cython.profile(False)
* cdef inline DTYPE_t pqueue_largest(DTYPE_t* queue, ITYPE_t queue_size): # <<<<<<<<<<<<<<
* return queue[queue_size - 1]
*
*/
static CYTHON_INLINE __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_pqueue_largest(__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_queue, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_queue_size) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_r;
__Pyx_RefNannySetupContext("pqueue_largest");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1374
* @cython.profile(False)
* cdef inline DTYPE_t pqueue_largest(DTYPE_t* queue, ITYPE_t queue_size):
* return queue[queue_size - 1] # <<<<<<<<<<<<<<
*
*
*/
__pyx_r = (__pyx_v_queue[(__pyx_v_queue_size - 1)]);
goto __pyx_L0;
__pyx_r = 0;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1377
*
*
* cdef inline void pqueue_insert(DTYPE_t val, ITYPE_t i_val, # <<<<<<<<<<<<<<
* DTYPE_t* queue, ITYPE_t* idx_array,
* ITYPE_t queue_size):
*/
static CYTHON_INLINE void __pyx_f_7sklearn_9ball_tree_pqueue_insert(__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_val, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i_val, __pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_queue, __pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_idx_array, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_queue_size) {
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i_lower;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i_upper;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i_mid;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i;
int __pyx_t_1;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_t_2;
__Pyx_RefNannySetupContext("pqueue_insert");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1380
* DTYPE_t* queue, ITYPE_t* idx_array,
* ITYPE_t queue_size):
* cdef ITYPE_t i_lower = 0 # <<<<<<<<<<<<<<
* cdef ITYPE_t i_upper = queue_size - 1
* cdef ITYPE_t i_mid
*/
__pyx_v_i_lower = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1381
* ITYPE_t queue_size):
* cdef ITYPE_t i_lower = 0
* cdef ITYPE_t i_upper = queue_size - 1 # <<<<<<<<<<<<<<
* cdef ITYPE_t i_mid
* cdef ITYPE_t i
*/
__pyx_v_i_upper = (__pyx_v_queue_size - 1);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1385
* cdef ITYPE_t i
*
* if val >= queue[i_upper]: # <<<<<<<<<<<<<<
* return
* elif val <= queue[i_lower]:
*/
__pyx_t_1 = (__pyx_v_val >= (__pyx_v_queue[__pyx_v_i_upper]));
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1386
*
* if val >= queue[i_upper]:
* return # <<<<<<<<<<<<<<
* elif val <= queue[i_lower]:
* i_mid = i_lower
*/
goto __pyx_L0;
goto __pyx_L3;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1387
* if val >= queue[i_upper]:
* return
* elif val <= queue[i_lower]: # <<<<<<<<<<<<<<
* i_mid = i_lower
* else:
*/
__pyx_t_1 = (__pyx_v_val <= (__pyx_v_queue[__pyx_v_i_lower]));
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1388
* return
* elif val <= queue[i_lower]:
* i_mid = i_lower # <<<<<<<<<<<<<<
* else:
* while True:
*/
__pyx_v_i_mid = __pyx_v_i_lower;
goto __pyx_L3;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1390
* i_mid = i_lower
* else:
* while True: # <<<<<<<<<<<<<<
* if (i_upper - i_lower) < 2:
* i_mid = i_lower + 1
*/
while (1) {
if (!1) break;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1391
* else:
* while True:
* if (i_upper - i_lower) < 2: # <<<<<<<<<<<<<<
* i_mid = i_lower + 1
* break
*/
__pyx_t_1 = ((__pyx_v_i_upper - __pyx_v_i_lower) < 2);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1392
* while True:
* if (i_upper - i_lower) < 2:
* i_mid = i_lower + 1 # <<<<<<<<<<<<<<
* break
* else:
*/
__pyx_v_i_mid = (__pyx_v_i_lower + 1);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1393
* if (i_upper - i_lower) < 2:
* i_mid = i_lower + 1
* break # <<<<<<<<<<<<<<
* else:
* i_mid = (i_lower + i_upper) / 2
*/
goto __pyx_L5_break;
goto __pyx_L6;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1395
* break
* else:
* i_mid = (i_lower + i_upper) / 2 # <<<<<<<<<<<<<<
*
* if i_mid == i_lower:
*/
__pyx_v_i_mid = __Pyx_div_long((__pyx_v_i_lower + __pyx_v_i_upper), 2);
}
__pyx_L6:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1397
* i_mid = (i_lower + i_upper) / 2
*
* if i_mid == i_lower: # <<<<<<<<<<<<<<
* i_mid += 1
* break
*/
__pyx_t_1 = (__pyx_v_i_mid == __pyx_v_i_lower);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1398
*
* if i_mid == i_lower:
* i_mid += 1 # <<<<<<<<<<<<<<
* break
*
*/
__pyx_v_i_mid += 1;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1399
* if i_mid == i_lower:
* i_mid += 1
* break # <<<<<<<<<<<<<<
*
* if val >= queue[i_mid]:
*/
goto __pyx_L5_break;
goto __pyx_L7;
}
__pyx_L7:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1401
* break
*
* if val >= queue[i_mid]: # <<<<<<<<<<<<<<
* i_lower = i_mid
* else:
*/
__pyx_t_1 = (__pyx_v_val >= (__pyx_v_queue[__pyx_v_i_mid]));
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1402
*
* if val >= queue[i_mid]:
* i_lower = i_mid # <<<<<<<<<<<<<<
* else:
* i_upper = i_mid
*/
__pyx_v_i_lower = __pyx_v_i_mid;
goto __pyx_L8;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1404
* i_lower = i_mid
* else:
* i_upper = i_mid # <<<<<<<<<<<<<<
*
* for i from queue_size > i > i_mid:
*/
__pyx_v_i_upper = __pyx_v_i_mid;
}
__pyx_L8:;
}
__pyx_L5_break:;
}
__pyx_L3:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1406
* i_upper = i_mid
*
* for i from queue_size > i > i_mid: # <<<<<<<<<<<<<<
* queue[i] = queue[i - 1]
* idx_array[i] = idx_array[i - 1]
*/
__pyx_t_2 = __pyx_v_i_mid;
for (__pyx_v_i = __pyx_v_queue_size-1; __pyx_v_i > __pyx_t_2; __pyx_v_i--) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1407
*
* for i from queue_size > i > i_mid:
* queue[i] = queue[i - 1] # <<<<<<<<<<<<<<
* idx_array[i] = idx_array[i - 1]
*
*/
(__pyx_v_queue[__pyx_v_i]) = (__pyx_v_queue[(__pyx_v_i - 1)]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1408
* for i from queue_size > i > i_mid:
* queue[i] = queue[i - 1]
* idx_array[i] = idx_array[i - 1] # <<<<<<<<<<<<<<
*
* queue[i_mid] = val
*/
(__pyx_v_idx_array[__pyx_v_i]) = (__pyx_v_idx_array[(__pyx_v_i - 1)]);
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1410
* idx_array[i] = idx_array[i - 1]
*
* queue[i_mid] = val # <<<<<<<<<<<<<<
* idx_array[i_mid] = i_val
*
*/
(__pyx_v_queue[__pyx_v_i_mid]) = __pyx_v_val;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1411
*
* queue[i_mid] = val
* idx_array[i_mid] = i_val # <<<<<<<<<<<<<<
*
*
*/
(__pyx_v_idx_array[__pyx_v_i_mid]) = __pyx_v_i_val;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1437
* # `sort_dist_idx()`
* @cython.profile(False)
* cdef inline DTYPE_t max_heap_largest(DTYPE_t* heap, ITYPE_t k): # <<<<<<<<<<<<<<
* return heap[0]
*
*/
static CYTHON_INLINE __pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_f_7sklearn_9ball_tree_max_heap_largest(__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_heap, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_k) {
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_r;
__Pyx_RefNannySetupContext("max_heap_largest");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1438
* @cython.profile(False)
* cdef inline DTYPE_t max_heap_largest(DTYPE_t* heap, ITYPE_t k):
* return heap[0] # <<<<<<<<<<<<<<
*
*
*/
__pyx_r = (__pyx_v_heap[0]);
goto __pyx_L0;
__pyx_r = 0;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1441
*
*
* cdef void max_heap_insert(DTYPE_t val, ITYPE_t i_val, # <<<<<<<<<<<<<<
* DTYPE_t* heap,
* ITYPE_t* idx_array,
*/
static void __pyx_f_7sklearn_9ball_tree_max_heap_insert(__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_val, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i_val, __pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_heap, __pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_idx_array, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_heap_size) {
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_ic1;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_ic2;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i_swap;
int __pyx_t_1;
__Pyx_RefNannySetupContext("max_heap_insert");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1449
*
* # check if val should be in heap
* if val > heap[0]: # <<<<<<<<<<<<<<
* return
*
*/
__pyx_t_1 = (__pyx_v_val > (__pyx_v_heap[0]));
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1450
* # check if val should be in heap
* if val > heap[0]:
* return # <<<<<<<<<<<<<<
*
* # insert val at position zero
*/
goto __pyx_L0;
goto __pyx_L3;
}
__pyx_L3:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1453
*
* # insert val at position zero
* heap[0] = val # <<<<<<<<<<<<<<
* idx_array[0] = i_val
*
*/
(__pyx_v_heap[0]) = __pyx_v_val;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1454
* # insert val at position zero
* heap[0] = val
* idx_array[0] = i_val # <<<<<<<<<<<<<<
*
* #descend the heap, swapping values until the max heap criterion is met
*/
(__pyx_v_idx_array[0]) = __pyx_v_i_val;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1457
*
* #descend the heap, swapping values until the max heap criterion is met
* i = 0 # <<<<<<<<<<<<<<
* while 1:
* ic1 = 2 * i + 1
*/
__pyx_v_i = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1458
* #descend the heap, swapping values until the max heap criterion is met
* i = 0
* while 1: # <<<<<<<<<<<<<<
* ic1 = 2 * i + 1
* ic2 = ic1 + 1
*/
while (1) {
if (!1) break;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1459
* i = 0
* while 1:
* ic1 = 2 * i + 1 # <<<<<<<<<<<<<<
* ic2 = ic1 + 1
*
*/
__pyx_v_ic1 = ((2 * __pyx_v_i) + 1);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1460
* while 1:
* ic1 = 2 * i + 1
* ic2 = ic1 + 1 # <<<<<<<<<<<<<<
*
* if ic1 >= heap_size:
*/
__pyx_v_ic2 = (__pyx_v_ic1 + 1);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1462
* ic2 = ic1 + 1
*
* if ic1 >= heap_size: # <<<<<<<<<<<<<<
* break
* elif ic2 >= heap_size:
*/
__pyx_t_1 = (__pyx_v_ic1 >= __pyx_v_heap_size);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1463
*
* if ic1 >= heap_size:
* break # <<<<<<<<<<<<<<
* elif ic2 >= heap_size:
* if heap[ic1] > val:
*/
goto __pyx_L5_break;
goto __pyx_L6;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1464
* if ic1 >= heap_size:
* break
* elif ic2 >= heap_size: # <<<<<<<<<<<<<<
* if heap[ic1] > val:
* i_swap = ic1
*/
__pyx_t_1 = (__pyx_v_ic2 >= __pyx_v_heap_size);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1465
* break
* elif ic2 >= heap_size:
* if heap[ic1] > val: # <<<<<<<<<<<<<<
* i_swap = ic1
* else:
*/
__pyx_t_1 = ((__pyx_v_heap[__pyx_v_ic1]) > __pyx_v_val);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1466
* elif ic2 >= heap_size:
* if heap[ic1] > val:
* i_swap = ic1 # <<<<<<<<<<<<<<
* else:
* break
*/
__pyx_v_i_swap = __pyx_v_ic1;
goto __pyx_L7;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1468
* i_swap = ic1
* else:
* break # <<<<<<<<<<<<<<
* elif heap[ic1] >= heap[ic2]:
* if val < heap[ic1]:
*/
goto __pyx_L5_break;
}
__pyx_L7:;
goto __pyx_L6;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1469
* else:
* break
* elif heap[ic1] >= heap[ic2]: # <<<<<<<<<<<<<<
* if val < heap[ic1]:
* i_swap = ic1
*/
__pyx_t_1 = ((__pyx_v_heap[__pyx_v_ic1]) >= (__pyx_v_heap[__pyx_v_ic2]));
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1470
* break
* elif heap[ic1] >= heap[ic2]:
* if val < heap[ic1]: # <<<<<<<<<<<<<<
* i_swap = ic1
* else:
*/
__pyx_t_1 = (__pyx_v_val < (__pyx_v_heap[__pyx_v_ic1]));
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1471
* elif heap[ic1] >= heap[ic2]:
* if val < heap[ic1]:
* i_swap = ic1 # <<<<<<<<<<<<<<
* else:
* break
*/
__pyx_v_i_swap = __pyx_v_ic1;
goto __pyx_L8;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1473
* i_swap = ic1
* else:
* break # <<<<<<<<<<<<<<
* else:
* if val < heap[ic2]:
*/
goto __pyx_L5_break;
}
__pyx_L8:;
goto __pyx_L6;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1475
* break
* else:
* if val < heap[ic2]: # <<<<<<<<<<<<<<
* i_swap = ic2
* else:
*/
__pyx_t_1 = (__pyx_v_val < (__pyx_v_heap[__pyx_v_ic2]));
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1476
* else:
* if val < heap[ic2]:
* i_swap = ic2 # <<<<<<<<<<<<<<
* else:
* break
*/
__pyx_v_i_swap = __pyx_v_ic2;
goto __pyx_L9;
}
/*else*/ {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1478
* i_swap = ic2
* else:
* break # <<<<<<<<<<<<<<
*
* heap[i] = heap[i_swap]
*/
goto __pyx_L5_break;
}
__pyx_L9:;
}
__pyx_L6:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1480
* break
*
* heap[i] = heap[i_swap] # <<<<<<<<<<<<<<
* idx_array[i] = idx_array[i_swap]
*
*/
(__pyx_v_heap[__pyx_v_i]) = (__pyx_v_heap[__pyx_v_i_swap]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1481
*
* heap[i] = heap[i_swap]
* idx_array[i] = idx_array[i_swap] # <<<<<<<<<<<<<<
*
* i = i_swap
*/
(__pyx_v_idx_array[__pyx_v_i]) = (__pyx_v_idx_array[__pyx_v_i_swap]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1483
* idx_array[i] = idx_array[i_swap]
*
* i = i_swap # <<<<<<<<<<<<<<
*
* heap[i] = val
*/
__pyx_v_i = __pyx_v_i_swap;
}
__pyx_L5_break:;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1485
* i = i_swap
*
* heap[i] = val # <<<<<<<<<<<<<<
* idx_array[i] = i_val
*
*/
(__pyx_v_heap[__pyx_v_i]) = __pyx_v_val;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1486
*
* heap[i] = val
* idx_array[i] = i_val # <<<<<<<<<<<<<<
*
*
*/
(__pyx_v_idx_array[__pyx_v_i]) = __pyx_v_i_val;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1493
* # this is a quicksort implementation which sorts `dist` and
* # simultaneously performs the same swaps on `idx`.
* cdef void sort_dist_idx(DTYPE_t* dist, ITYPE_t* idx, ITYPE_t k): # <<<<<<<<<<<<<<
* cdef ITYPE_t pivot_idx
* if k > 1:
*/
static void __pyx_f_7sklearn_9ball_tree_sort_dist_idx(__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_dist, __pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_idx, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_k) {
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_pivot_idx;
int __pyx_t_1;
__Pyx_RefNannySetupContext("sort_dist_idx");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1495
* cdef void sort_dist_idx(DTYPE_t* dist, ITYPE_t* idx, ITYPE_t k):
* cdef ITYPE_t pivot_idx
* if k > 1: # <<<<<<<<<<<<<<
* pivot_idx = partition_dist_idx(dist, idx, k)
*
*/
__pyx_t_1 = (__pyx_v_k > 1);
if (__pyx_t_1) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1496
* cdef ITYPE_t pivot_idx
* if k > 1:
* pivot_idx = partition_dist_idx(dist, idx, k) # <<<<<<<<<<<<<<
*
* sort_dist_idx(dist, idx, pivot_idx)
*/
__pyx_v_pivot_idx = __pyx_f_7sklearn_9ball_tree_partition_dist_idx(__pyx_v_dist, __pyx_v_idx, __pyx_v_k);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1498
* pivot_idx = partition_dist_idx(dist, idx, k)
*
* sort_dist_idx(dist, idx, pivot_idx) # <<<<<<<<<<<<<<
*
* sort_dist_idx(dist + pivot_idx + 1,
*/
__pyx_f_7sklearn_9ball_tree_sort_dist_idx(__pyx_v_dist, __pyx_v_idx, __pyx_v_pivot_idx);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1502
* sort_dist_idx(dist + pivot_idx + 1,
* idx + pivot_idx + 1,
* k - pivot_idx - 1) # <<<<<<<<<<<<<<
*
*
*/
__pyx_f_7sklearn_9ball_tree_sort_dist_idx(((__pyx_v_dist + __pyx_v_pivot_idx) + 1), ((__pyx_v_idx + __pyx_v_pivot_idx) + 1), ((__pyx_v_k - __pyx_v_pivot_idx) - 1));
goto __pyx_L3;
}
__pyx_L3:;
__Pyx_RefNannyFinishContext();
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1505
*
*
* cdef ITYPE_t partition_dist_idx(DTYPE_t* dist, ITYPE_t* idx, ITYPE_t k): # <<<<<<<<<<<<<<
* cdef ITYPE_t pivot_idx = k / 2
* cdef DTYPE_t pivot_val = dist[pivot_idx]
*/
static __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_f_7sklearn_9ball_tree_partition_dist_idx(__pyx_t_7sklearn_9ball_tree_DTYPE_t *__pyx_v_dist, __pyx_t_7sklearn_9ball_tree_ITYPE_t *__pyx_v_idx, __pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_k) {
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_pivot_idx;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_v_pivot_val;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_store_idx;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_v_i;
__pyx_t_7sklearn_9ball_tree_ITYPE_t __pyx_r;
long __pyx_t_1;
int __pyx_t_2;
__Pyx_RefNannySetupContext("partition_dist_idx");
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1506
*
* cdef ITYPE_t partition_dist_idx(DTYPE_t* dist, ITYPE_t* idx, ITYPE_t k):
* cdef ITYPE_t pivot_idx = k / 2 # <<<<<<<<<<<<<<
* cdef DTYPE_t pivot_val = dist[pivot_idx]
* cdef ITYPE_t store_idx = 0
*/
__pyx_v_pivot_idx = __Pyx_div_long(__pyx_v_k, 2);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1507
* cdef ITYPE_t partition_dist_idx(DTYPE_t* dist, ITYPE_t* idx, ITYPE_t k):
* cdef ITYPE_t pivot_idx = k / 2
* cdef DTYPE_t pivot_val = dist[pivot_idx] # <<<<<<<<<<<<<<
* cdef ITYPE_t store_idx = 0
* cdef ITYPE_t i
*/
__pyx_v_pivot_val = (__pyx_v_dist[__pyx_v_pivot_idx]);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1508
* cdef ITYPE_t pivot_idx = k / 2
* cdef DTYPE_t pivot_val = dist[pivot_idx]
* cdef ITYPE_t store_idx = 0 # <<<<<<<<<<<<<<
* cdef ITYPE_t i
*
*/
__pyx_v_store_idx = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1511
* cdef ITYPE_t i
*
* dswap(dist, pivot_idx, k - 1) # <<<<<<<<<<<<<<
* iswap(idx, pivot_idx, k - 1)
*
*/
__pyx_f_7sklearn_9ball_tree_dswap(__pyx_v_dist, __pyx_v_pivot_idx, (__pyx_v_k - 1));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1512
*
* dswap(dist, pivot_idx, k - 1)
* iswap(idx, pivot_idx, k - 1) # <<<<<<<<<<<<<<
*
* for i from 0 <= i < k - 1:
*/
__pyx_f_7sklearn_9ball_tree_iswap(__pyx_v_idx, __pyx_v_pivot_idx, (__pyx_v_k - 1));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1514
* iswap(idx, pivot_idx, k - 1)
*
* for i from 0 <= i < k - 1: # <<<<<<<<<<<<<<
* if dist[i] < pivot_val:
* dswap(dist, i, store_idx)
*/
__pyx_t_1 = (__pyx_v_k - 1);
for (__pyx_v_i = 0; __pyx_v_i < __pyx_t_1; __pyx_v_i++) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1515
*
* for i from 0 <= i < k - 1:
* if dist[i] < pivot_val: # <<<<<<<<<<<<<<
* dswap(dist, i, store_idx)
* iswap(idx, i, store_idx)
*/
__pyx_t_2 = ((__pyx_v_dist[__pyx_v_i]) < __pyx_v_pivot_val);
if (__pyx_t_2) {
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1516
* for i from 0 <= i < k - 1:
* if dist[i] < pivot_val:
* dswap(dist, i, store_idx) # <<<<<<<<<<<<<<
* iswap(idx, i, store_idx)
* store_idx += 1
*/
__pyx_f_7sklearn_9ball_tree_dswap(__pyx_v_dist, __pyx_v_i, __pyx_v_store_idx);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1517
* if dist[i] < pivot_val:
* dswap(dist, i, store_idx)
* iswap(idx, i, store_idx) # <<<<<<<<<<<<<<
* store_idx += 1
* dswap(dist, store_idx, k - 1)
*/
__pyx_f_7sklearn_9ball_tree_iswap(__pyx_v_idx, __pyx_v_i, __pyx_v_store_idx);
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1518
* dswap(dist, i, store_idx)
* iswap(idx, i, store_idx)
* store_idx += 1 # <<<<<<<<<<<<<<
* dswap(dist, store_idx, k - 1)
* iswap(idx, store_idx, k - 1)
*/
__pyx_v_store_idx += 1;
goto __pyx_L5;
}
__pyx_L5:;
}
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1519
* iswap(idx, i, store_idx)
* store_idx += 1
* dswap(dist, store_idx, k - 1) # <<<<<<<<<<<<<<
* iswap(idx, store_idx, k - 1)
* return store_idx
*/
__pyx_f_7sklearn_9ball_tree_dswap(__pyx_v_dist, __pyx_v_store_idx, (__pyx_v_k - 1));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1520
* store_idx += 1
* dswap(dist, store_idx, k - 1)
* iswap(idx, store_idx, k - 1) # <<<<<<<<<<<<<<
* return store_idx
*/
__pyx_f_7sklearn_9ball_tree_iswap(__pyx_v_idx, __pyx_v_store_idx, (__pyx_v_k - 1));
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":1521
* dswap(dist, store_idx, k - 1)
* iswap(idx, store_idx, k - 1)
* return store_idx # <<<<<<<<<<<<<<
*/
__pyx_r = __pyx_v_store_idx;
goto __pyx_L0;
__pyx_r = 0;
__pyx_L0:;
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":188
* # experimental exception made for __getbuffer__ and __releasebuffer__
* # -- the details of this may change.
* def __getbuffer__(ndarray self, Py_buffer* info, int flags): # <<<<<<<<<<<<<<
* # This implementation of getbuffer is geared towards Cython
* # requirements, and does not yet fullfill the PEP.
*/
static CYTHON_UNUSED int __pyx_pf_5numpy_7ndarray___getbuffer__(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags); /*proto*/
static CYTHON_UNUSED int __pyx_pf_5numpy_7ndarray___getbuffer__(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags) {
int __pyx_v_copy_shape;
int __pyx_v_i;
int __pyx_v_ndim;
int __pyx_v_endian_detector;
int __pyx_v_little_endian;
int __pyx_v_t;
char *__pyx_v_f;
PyArray_Descr *__pyx_v_descr = 0;
int __pyx_v_offset;
int __pyx_v_hasfields;
int __pyx_r;
int __pyx_t_1;
int __pyx_t_2;
int __pyx_t_3;
PyObject *__pyx_t_4 = NULL;
PyObject *__pyx_t_5 = NULL;
int __pyx_t_6;
int __pyx_t_7;
int __pyx_t_8;
char *__pyx_t_9;
__Pyx_RefNannySetupContext("__getbuffer__");
if (__pyx_v_info == NULL) return 0;
__pyx_v_info->obj = Py_None; __Pyx_INCREF(Py_None);
__Pyx_GIVEREF(__pyx_v_info->obj);
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":194
* # of flags
* cdef int copy_shape, i, ndim
* cdef int endian_detector = 1 # <<<<<<<<<<<<<<
* cdef bint little_endian = ((<char*>&endian_detector)[0] != 0)
*
*/
__pyx_v_endian_detector = 1;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":195
* cdef int copy_shape, i, ndim
* cdef int endian_detector = 1
* cdef bint little_endian = ((<char*>&endian_detector)[0] != 0) # <<<<<<<<<<<<<<
*
* ndim = PyArray_NDIM(self)
*/
__pyx_v_little_endian = ((((char *)(&__pyx_v_endian_detector))[0]) != 0);
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":197
* cdef bint little_endian = ((<char*>&endian_detector)[0] != 0)
*
* ndim = PyArray_NDIM(self) # <<<<<<<<<<<<<<
*
* if sizeof(npy_intp) != sizeof(Py_ssize_t):
*/
__pyx_v_ndim = PyArray_NDIM(((PyArrayObject *)__pyx_v_self));
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":199
* ndim = PyArray_NDIM(self)
*
* if sizeof(npy_intp) != sizeof(Py_ssize_t): # <<<<<<<<<<<<<<
* copy_shape = 1
* else:
*/
__pyx_t_1 = ((sizeof(npy_intp)) != (sizeof(Py_ssize_t)));
if (__pyx_t_1) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":200
*
* if sizeof(npy_intp) != sizeof(Py_ssize_t):
* copy_shape = 1 # <<<<<<<<<<<<<<
* else:
* copy_shape = 0
*/
__pyx_v_copy_shape = 1;
goto __pyx_L5;
}
/*else*/ {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":202
* copy_shape = 1
* else:
* copy_shape = 0 # <<<<<<<<<<<<<<
*
* if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS)
*/
__pyx_v_copy_shape = 0;
}
__pyx_L5:;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":204
* copy_shape = 0
*
* if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS) # <<<<<<<<<<<<<<
* and not PyArray_CHKFLAGS(self, NPY_C_CONTIGUOUS)):
* raise ValueError(u"ndarray is not C contiguous")
*/
__pyx_t_1 = ((__pyx_v_flags & PyBUF_C_CONTIGUOUS) == PyBUF_C_CONTIGUOUS);
if (__pyx_t_1) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":205
*
* if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS)
* and not PyArray_CHKFLAGS(self, NPY_C_CONTIGUOUS)): # <<<<<<<<<<<<<<
* raise ValueError(u"ndarray is not C contiguous")
*
*/
__pyx_t_2 = (!PyArray_CHKFLAGS(((PyArrayObject *)__pyx_v_self), NPY_C_CONTIGUOUS));
__pyx_t_3 = __pyx_t_2;
} else {
__pyx_t_3 = __pyx_t_1;
}
if (__pyx_t_3) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":206
* if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS)
* and not PyArray_CHKFLAGS(self, NPY_C_CONTIGUOUS)):
* raise ValueError(u"ndarray is not C contiguous") # <<<<<<<<<<<<<<
*
* if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS)
*/
__pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 206; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_INCREF(((PyObject *)__pyx_kp_u_20));
PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_kp_u_20));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_u_20));
__pyx_t_5 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_4, NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 206; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_Raise(__pyx_t_5, 0, 0);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
{__pyx_filename = __pyx_f[1]; __pyx_lineno = 206; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L6;
}
__pyx_L6:;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":208
* raise ValueError(u"ndarray is not C contiguous")
*
* if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS) # <<<<<<<<<<<<<<
* and not PyArray_CHKFLAGS(self, NPY_F_CONTIGUOUS)):
* raise ValueError(u"ndarray is not Fortran contiguous")
*/
__pyx_t_3 = ((__pyx_v_flags & PyBUF_F_CONTIGUOUS) == PyBUF_F_CONTIGUOUS);
if (__pyx_t_3) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":209
*
* if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS)
* and not PyArray_CHKFLAGS(self, NPY_F_CONTIGUOUS)): # <<<<<<<<<<<<<<
* raise ValueError(u"ndarray is not Fortran contiguous")
*
*/
__pyx_t_1 = (!PyArray_CHKFLAGS(((PyArrayObject *)__pyx_v_self), NPY_F_CONTIGUOUS));
__pyx_t_2 = __pyx_t_1;
} else {
__pyx_t_2 = __pyx_t_3;
}
if (__pyx_t_2) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":210
* if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS)
* and not PyArray_CHKFLAGS(self, NPY_F_CONTIGUOUS)):
* raise ValueError(u"ndarray is not Fortran contiguous") # <<<<<<<<<<<<<<
*
* info.buf = PyArray_DATA(self)
*/
__pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 210; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_INCREF(((PyObject *)__pyx_kp_u_21));
PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_kp_u_21));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_u_21));
__pyx_t_4 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_5, NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 210; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__Pyx_Raise(__pyx_t_4, 0, 0);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
{__pyx_filename = __pyx_f[1]; __pyx_lineno = 210; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L7;
}
__pyx_L7:;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":212
* raise ValueError(u"ndarray is not Fortran contiguous")
*
* info.buf = PyArray_DATA(self) # <<<<<<<<<<<<<<
* info.ndim = ndim
* if copy_shape:
*/
__pyx_v_info->buf = PyArray_DATA(((PyArrayObject *)__pyx_v_self));
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":213
*
* info.buf = PyArray_DATA(self)
* info.ndim = ndim # <<<<<<<<<<<<<<
* if copy_shape:
* # Allocate new buffer for strides and shape info. This is allocated
*/
__pyx_v_info->ndim = __pyx_v_ndim;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":214
* info.buf = PyArray_DATA(self)
* info.ndim = ndim
* if copy_shape: # <<<<<<<<<<<<<<
* # Allocate new buffer for strides and shape info. This is allocated
* # as one block, strides first.
*/
if (__pyx_v_copy_shape) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":217
* # Allocate new buffer for strides and shape info. This is allocated
* # as one block, strides first.
* info.strides = <Py_ssize_t*>stdlib.malloc(sizeof(Py_ssize_t) * ndim * 2) # <<<<<<<<<<<<<<
* info.shape = info.strides + ndim
* for i in range(ndim):
*/
__pyx_v_info->strides = ((Py_ssize_t *)malloc((((sizeof(Py_ssize_t)) * __pyx_v_ndim) * 2)));
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":218
* # as one block, strides first.
* info.strides = <Py_ssize_t*>stdlib.malloc(sizeof(Py_ssize_t) * ndim * 2)
* info.shape = info.strides + ndim # <<<<<<<<<<<<<<
* for i in range(ndim):
* info.strides[i] = PyArray_STRIDES(self)[i]
*/
__pyx_v_info->shape = (__pyx_v_info->strides + __pyx_v_ndim);
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":219
* info.strides = <Py_ssize_t*>stdlib.malloc(sizeof(Py_ssize_t) * ndim * 2)
* info.shape = info.strides + ndim
* for i in range(ndim): # <<<<<<<<<<<<<<
* info.strides[i] = PyArray_STRIDES(self)[i]
* info.shape[i] = PyArray_DIMS(self)[i]
*/
__pyx_t_6 = __pyx_v_ndim;
for (__pyx_t_7 = 0; __pyx_t_7 < __pyx_t_6; __pyx_t_7+=1) {
__pyx_v_i = __pyx_t_7;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":220
* info.shape = info.strides + ndim
* for i in range(ndim):
* info.strides[i] = PyArray_STRIDES(self)[i] # <<<<<<<<<<<<<<
* info.shape[i] = PyArray_DIMS(self)[i]
* else:
*/
(__pyx_v_info->strides[__pyx_v_i]) = (PyArray_STRIDES(((PyArrayObject *)__pyx_v_self))[__pyx_v_i]);
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":221
* for i in range(ndim):
* info.strides[i] = PyArray_STRIDES(self)[i]
* info.shape[i] = PyArray_DIMS(self)[i] # <<<<<<<<<<<<<<
* else:
* info.strides = <Py_ssize_t*>PyArray_STRIDES(self)
*/
(__pyx_v_info->shape[__pyx_v_i]) = (PyArray_DIMS(((PyArrayObject *)__pyx_v_self))[__pyx_v_i]);
}
goto __pyx_L8;
}
/*else*/ {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":223
* info.shape[i] = PyArray_DIMS(self)[i]
* else:
* info.strides = <Py_ssize_t*>PyArray_STRIDES(self) # <<<<<<<<<<<<<<
* info.shape = <Py_ssize_t*>PyArray_DIMS(self)
* info.suboffsets = NULL
*/
__pyx_v_info->strides = ((Py_ssize_t *)PyArray_STRIDES(((PyArrayObject *)__pyx_v_self)));
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":224
* else:
* info.strides = <Py_ssize_t*>PyArray_STRIDES(self)
* info.shape = <Py_ssize_t*>PyArray_DIMS(self) # <<<<<<<<<<<<<<
* info.suboffsets = NULL
* info.itemsize = PyArray_ITEMSIZE(self)
*/
__pyx_v_info->shape = ((Py_ssize_t *)PyArray_DIMS(((PyArrayObject *)__pyx_v_self)));
}
__pyx_L8:;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":225
* info.strides = <Py_ssize_t*>PyArray_STRIDES(self)
* info.shape = <Py_ssize_t*>PyArray_DIMS(self)
* info.suboffsets = NULL # <<<<<<<<<<<<<<
* info.itemsize = PyArray_ITEMSIZE(self)
* info.readonly = not PyArray_ISWRITEABLE(self)
*/
__pyx_v_info->suboffsets = NULL;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":226
* info.shape = <Py_ssize_t*>PyArray_DIMS(self)
* info.suboffsets = NULL
* info.itemsize = PyArray_ITEMSIZE(self) # <<<<<<<<<<<<<<
* info.readonly = not PyArray_ISWRITEABLE(self)
*
*/
__pyx_v_info->itemsize = PyArray_ITEMSIZE(((PyArrayObject *)__pyx_v_self));
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":227
* info.suboffsets = NULL
* info.itemsize = PyArray_ITEMSIZE(self)
* info.readonly = not PyArray_ISWRITEABLE(self) # <<<<<<<<<<<<<<
*
* cdef int t
*/
__pyx_v_info->readonly = (!PyArray_ISWRITEABLE(((PyArrayObject *)__pyx_v_self)));
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":230
*
* cdef int t
* cdef char* f = NULL # <<<<<<<<<<<<<<
* cdef dtype descr = self.descr
* cdef list stack
*/
__pyx_v_f = NULL;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":231
* cdef int t
* cdef char* f = NULL
* cdef dtype descr = self.descr # <<<<<<<<<<<<<<
* cdef list stack
* cdef int offset
*/
__Pyx_INCREF(((PyObject *)((PyArrayObject *)__pyx_v_self)->descr));
__pyx_v_descr = ((PyArrayObject *)__pyx_v_self)->descr;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":235
* cdef int offset
*
* cdef bint hasfields = PyDataType_HASFIELDS(descr) # <<<<<<<<<<<<<<
*
* if not hasfields and not copy_shape:
*/
__pyx_v_hasfields = PyDataType_HASFIELDS(__pyx_v_descr);
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":237
* cdef bint hasfields = PyDataType_HASFIELDS(descr)
*
* if not hasfields and not copy_shape: # <<<<<<<<<<<<<<
* # do not call releasebuffer
* info.obj = None
*/
__pyx_t_2 = (!__pyx_v_hasfields);
if (__pyx_t_2) {
__pyx_t_3 = (!__pyx_v_copy_shape);
__pyx_t_1 = __pyx_t_3;
} else {
__pyx_t_1 = __pyx_t_2;
}
if (__pyx_t_1) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":239
* if not hasfields and not copy_shape:
* # do not call releasebuffer
* info.obj = None # <<<<<<<<<<<<<<
* else:
* # need to call releasebuffer
*/
__Pyx_INCREF(Py_None);
__Pyx_GIVEREF(Py_None);
__Pyx_GOTREF(__pyx_v_info->obj);
__Pyx_DECREF(__pyx_v_info->obj);
__pyx_v_info->obj = Py_None;
goto __pyx_L11;
}
/*else*/ {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":242
* else:
* # need to call releasebuffer
* info.obj = self # <<<<<<<<<<<<<<
*
* if not hasfields:
*/
__Pyx_INCREF(__pyx_v_self);
__Pyx_GIVEREF(__pyx_v_self);
__Pyx_GOTREF(__pyx_v_info->obj);
__Pyx_DECREF(__pyx_v_info->obj);
__pyx_v_info->obj = __pyx_v_self;
}
__pyx_L11:;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":244
* info.obj = self
*
* if not hasfields: # <<<<<<<<<<<<<<
* t = descr.type_num
* if ((descr.byteorder == '>' and little_endian) or
*/
__pyx_t_1 = (!__pyx_v_hasfields);
if (__pyx_t_1) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":245
*
* if not hasfields:
* t = descr.type_num # <<<<<<<<<<<<<<
* if ((descr.byteorder == '>' and little_endian) or
* (descr.byteorder == '<' and not little_endian)):
*/
__pyx_v_t = __pyx_v_descr->type_num;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":246
* if not hasfields:
* t = descr.type_num
* if ((descr.byteorder == '>' and little_endian) or # <<<<<<<<<<<<<<
* (descr.byteorder == '<' and not little_endian)):
* raise ValueError(u"Non-native byte order not supported")
*/
__pyx_t_1 = (__pyx_v_descr->byteorder == '>');
if (__pyx_t_1) {
__pyx_t_2 = __pyx_v_little_endian;
} else {
__pyx_t_2 = __pyx_t_1;
}
if (!__pyx_t_2) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":247
* t = descr.type_num
* if ((descr.byteorder == '>' and little_endian) or
* (descr.byteorder == '<' and not little_endian)): # <<<<<<<<<<<<<<
* raise ValueError(u"Non-native byte order not supported")
* if t == NPY_BYTE: f = "b"
*/
__pyx_t_1 = (__pyx_v_descr->byteorder == '<');
if (__pyx_t_1) {
__pyx_t_3 = (!__pyx_v_little_endian);
__pyx_t_8 = __pyx_t_3;
} else {
__pyx_t_8 = __pyx_t_1;
}
__pyx_t_1 = __pyx_t_8;
} else {
__pyx_t_1 = __pyx_t_2;
}
if (__pyx_t_1) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":248
* if ((descr.byteorder == '>' and little_endian) or
* (descr.byteorder == '<' and not little_endian)):
* raise ValueError(u"Non-native byte order not supported") # <<<<<<<<<<<<<<
* if t == NPY_BYTE: f = "b"
* elif t == NPY_UBYTE: f = "B"
*/
__pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 248; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_INCREF(((PyObject *)__pyx_kp_u_22));
PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_kp_u_22));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_u_22));
__pyx_t_5 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_4, NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 248; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_Raise(__pyx_t_5, 0, 0);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
{__pyx_filename = __pyx_f[1]; __pyx_lineno = 248; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L13;
}
__pyx_L13:;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":249
* (descr.byteorder == '<' and not little_endian)):
* raise ValueError(u"Non-native byte order not supported")
* if t == NPY_BYTE: f = "b" # <<<<<<<<<<<<<<
* elif t == NPY_UBYTE: f = "B"
* elif t == NPY_SHORT: f = "h"
*/
__pyx_t_1 = (__pyx_v_t == NPY_BYTE);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__b;
goto __pyx_L14;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":250
* raise ValueError(u"Non-native byte order not supported")
* if t == NPY_BYTE: f = "b"
* elif t == NPY_UBYTE: f = "B" # <<<<<<<<<<<<<<
* elif t == NPY_SHORT: f = "h"
* elif t == NPY_USHORT: f = "H"
*/
__pyx_t_1 = (__pyx_v_t == NPY_UBYTE);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__B;
goto __pyx_L14;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":251
* if t == NPY_BYTE: f = "b"
* elif t == NPY_UBYTE: f = "B"
* elif t == NPY_SHORT: f = "h" # <<<<<<<<<<<<<<
* elif t == NPY_USHORT: f = "H"
* elif t == NPY_INT: f = "i"
*/
__pyx_t_1 = (__pyx_v_t == NPY_SHORT);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__h;
goto __pyx_L14;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":252
* elif t == NPY_UBYTE: f = "B"
* elif t == NPY_SHORT: f = "h"
* elif t == NPY_USHORT: f = "H" # <<<<<<<<<<<<<<
* elif t == NPY_INT: f = "i"
* elif t == NPY_UINT: f = "I"
*/
__pyx_t_1 = (__pyx_v_t == NPY_USHORT);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__H;
goto __pyx_L14;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":253
* elif t == NPY_SHORT: f = "h"
* elif t == NPY_USHORT: f = "H"
* elif t == NPY_INT: f = "i" # <<<<<<<<<<<<<<
* elif t == NPY_UINT: f = "I"
* elif t == NPY_LONG: f = "l"
*/
__pyx_t_1 = (__pyx_v_t == NPY_INT);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__i;
goto __pyx_L14;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":254
* elif t == NPY_USHORT: f = "H"
* elif t == NPY_INT: f = "i"
* elif t == NPY_UINT: f = "I" # <<<<<<<<<<<<<<
* elif t == NPY_LONG: f = "l"
* elif t == NPY_ULONG: f = "L"
*/
__pyx_t_1 = (__pyx_v_t == NPY_UINT);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__I;
goto __pyx_L14;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":255
* elif t == NPY_INT: f = "i"
* elif t == NPY_UINT: f = "I"
* elif t == NPY_LONG: f = "l" # <<<<<<<<<<<<<<
* elif t == NPY_ULONG: f = "L"
* elif t == NPY_LONGLONG: f = "q"
*/
__pyx_t_1 = (__pyx_v_t == NPY_LONG);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__l;
goto __pyx_L14;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":256
* elif t == NPY_UINT: f = "I"
* elif t == NPY_LONG: f = "l"
* elif t == NPY_ULONG: f = "L" # <<<<<<<<<<<<<<
* elif t == NPY_LONGLONG: f = "q"
* elif t == NPY_ULONGLONG: f = "Q"
*/
__pyx_t_1 = (__pyx_v_t == NPY_ULONG);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__L;
goto __pyx_L14;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":257
* elif t == NPY_LONG: f = "l"
* elif t == NPY_ULONG: f = "L"
* elif t == NPY_LONGLONG: f = "q" # <<<<<<<<<<<<<<
* elif t == NPY_ULONGLONG: f = "Q"
* elif t == NPY_FLOAT: f = "f"
*/
__pyx_t_1 = (__pyx_v_t == NPY_LONGLONG);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__q;
goto __pyx_L14;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":258
* elif t == NPY_ULONG: f = "L"
* elif t == NPY_LONGLONG: f = "q"
* elif t == NPY_ULONGLONG: f = "Q" # <<<<<<<<<<<<<<
* elif t == NPY_FLOAT: f = "f"
* elif t == NPY_DOUBLE: f = "d"
*/
__pyx_t_1 = (__pyx_v_t == NPY_ULONGLONG);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__Q;
goto __pyx_L14;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":259
* elif t == NPY_LONGLONG: f = "q"
* elif t == NPY_ULONGLONG: f = "Q"
* elif t == NPY_FLOAT: f = "f" # <<<<<<<<<<<<<<
* elif t == NPY_DOUBLE: f = "d"
* elif t == NPY_LONGDOUBLE: f = "g"
*/
__pyx_t_1 = (__pyx_v_t == NPY_FLOAT);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__f;
goto __pyx_L14;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":260
* elif t == NPY_ULONGLONG: f = "Q"
* elif t == NPY_FLOAT: f = "f"
* elif t == NPY_DOUBLE: f = "d" # <<<<<<<<<<<<<<
* elif t == NPY_LONGDOUBLE: f = "g"
* elif t == NPY_CFLOAT: f = "Zf"
*/
__pyx_t_1 = (__pyx_v_t == NPY_DOUBLE);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__d;
goto __pyx_L14;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":261
* elif t == NPY_FLOAT: f = "f"
* elif t == NPY_DOUBLE: f = "d"
* elif t == NPY_LONGDOUBLE: f = "g" # <<<<<<<<<<<<<<
* elif t == NPY_CFLOAT: f = "Zf"
* elif t == NPY_CDOUBLE: f = "Zd"
*/
__pyx_t_1 = (__pyx_v_t == NPY_LONGDOUBLE);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__g;
goto __pyx_L14;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":262
* elif t == NPY_DOUBLE: f = "d"
* elif t == NPY_LONGDOUBLE: f = "g"
* elif t == NPY_CFLOAT: f = "Zf" # <<<<<<<<<<<<<<
* elif t == NPY_CDOUBLE: f = "Zd"
* elif t == NPY_CLONGDOUBLE: f = "Zg"
*/
__pyx_t_1 = (__pyx_v_t == NPY_CFLOAT);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__Zf;
goto __pyx_L14;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":263
* elif t == NPY_LONGDOUBLE: f = "g"
* elif t == NPY_CFLOAT: f = "Zf"
* elif t == NPY_CDOUBLE: f = "Zd" # <<<<<<<<<<<<<<
* elif t == NPY_CLONGDOUBLE: f = "Zg"
* elif t == NPY_OBJECT: f = "O"
*/
__pyx_t_1 = (__pyx_v_t == NPY_CDOUBLE);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__Zd;
goto __pyx_L14;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":264
* elif t == NPY_CFLOAT: f = "Zf"
* elif t == NPY_CDOUBLE: f = "Zd"
* elif t == NPY_CLONGDOUBLE: f = "Zg" # <<<<<<<<<<<<<<
* elif t == NPY_OBJECT: f = "O"
* else:
*/
__pyx_t_1 = (__pyx_v_t == NPY_CLONGDOUBLE);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__Zg;
goto __pyx_L14;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":265
* elif t == NPY_CDOUBLE: f = "Zd"
* elif t == NPY_CLONGDOUBLE: f = "Zg"
* elif t == NPY_OBJECT: f = "O" # <<<<<<<<<<<<<<
* else:
* raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t)
*/
__pyx_t_1 = (__pyx_v_t == NPY_OBJECT);
if (__pyx_t_1) {
__pyx_v_f = __pyx_k__O;
goto __pyx_L14;
}
/*else*/ {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":267
* elif t == NPY_OBJECT: f = "O"
* else:
* raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t) # <<<<<<<<<<<<<<
* info.format = f
* return
*/
__pyx_t_5 = PyInt_FromLong(__pyx_v_t); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 267; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_4 = PyNumber_Remainder(((PyObject *)__pyx_kp_u_23), __pyx_t_5); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 267; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_4));
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 267; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_t_4));
__Pyx_GIVEREF(((PyObject *)__pyx_t_4));
__pyx_t_4 = 0;
__pyx_t_4 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_5, NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 267; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__Pyx_Raise(__pyx_t_4, 0, 0);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
{__pyx_filename = __pyx_f[1]; __pyx_lineno = 267; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
__pyx_L14:;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":268
* else:
* raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t)
* info.format = f # <<<<<<<<<<<<<<
* return
* else:
*/
__pyx_v_info->format = __pyx_v_f;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":269
* raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t)
* info.format = f
* return # <<<<<<<<<<<<<<
* else:
* info.format = <char*>stdlib.malloc(_buffer_format_string_len)
*/
__pyx_r = 0;
goto __pyx_L0;
goto __pyx_L12;
}
/*else*/ {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":271
* return
* else:
* info.format = <char*>stdlib.malloc(_buffer_format_string_len) # <<<<<<<<<<<<<<
* info.format[0] = '^' # Native data types, manual alignment
* offset = 0
*/
__pyx_v_info->format = ((char *)malloc(255));
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":272
* else:
* info.format = <char*>stdlib.malloc(_buffer_format_string_len)
* info.format[0] = '^' # Native data types, manual alignment # <<<<<<<<<<<<<<
* offset = 0
* f = _util_dtypestring(descr, info.format + 1,
*/
(__pyx_v_info->format[0]) = '^';
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":273
* info.format = <char*>stdlib.malloc(_buffer_format_string_len)
* info.format[0] = '^' # Native data types, manual alignment
* offset = 0 # <<<<<<<<<<<<<<
* f = _util_dtypestring(descr, info.format + 1,
* info.format + _buffer_format_string_len,
*/
__pyx_v_offset = 0;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":276
* f = _util_dtypestring(descr, info.format + 1,
* info.format + _buffer_format_string_len,
* &offset) # <<<<<<<<<<<<<<
* f[0] = 0 # Terminate format string
*
*/
__pyx_t_9 = __pyx_f_5numpy__util_dtypestring(__pyx_v_descr, (__pyx_v_info->format + 1), (__pyx_v_info->format + 255), (&__pyx_v_offset)); if (unlikely(__pyx_t_9 == NULL)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 274; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_v_f = __pyx_t_9;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":277
* info.format + _buffer_format_string_len,
* &offset)
* f[0] = 0 # Terminate format string # <<<<<<<<<<<<<<
*
* def __releasebuffer__(ndarray self, Py_buffer* info):
*/
(__pyx_v_f[0]) = 0;
}
__pyx_L12:;
__pyx_r = 0;
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_4);
__Pyx_XDECREF(__pyx_t_5);
__Pyx_AddTraceback("numpy.ndarray.__getbuffer__");
__pyx_r = -1;
__Pyx_GOTREF(__pyx_v_info->obj);
__Pyx_DECREF(__pyx_v_info->obj); __pyx_v_info->obj = NULL;
goto __pyx_L2;
__pyx_L0:;
if (__pyx_v_info->obj == Py_None) {
__Pyx_GOTREF(Py_None);
__Pyx_DECREF(Py_None); __pyx_v_info->obj = NULL;
}
__pyx_L2:;
__Pyx_XDECREF((PyObject *)__pyx_v_descr);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":279
* f[0] = 0 # Terminate format string
*
* def __releasebuffer__(ndarray self, Py_buffer* info): # <<<<<<<<<<<<<<
* if PyArray_HASFIELDS(self):
* stdlib.free(info.format)
*/
static CYTHON_UNUSED void __pyx_pf_5numpy_7ndarray___releasebuffer__(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info); /*proto*/
static CYTHON_UNUSED void __pyx_pf_5numpy_7ndarray___releasebuffer__(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info) {
int __pyx_t_1;
__Pyx_RefNannySetupContext("__releasebuffer__");
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":280
*
* def __releasebuffer__(ndarray self, Py_buffer* info):
* if PyArray_HASFIELDS(self): # <<<<<<<<<<<<<<
* stdlib.free(info.format)
* if sizeof(npy_intp) != sizeof(Py_ssize_t):
*/
__pyx_t_1 = PyArray_HASFIELDS(((PyArrayObject *)__pyx_v_self));
if (__pyx_t_1) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":281
* def __releasebuffer__(ndarray self, Py_buffer* info):
* if PyArray_HASFIELDS(self):
* stdlib.free(info.format) # <<<<<<<<<<<<<<
* if sizeof(npy_intp) != sizeof(Py_ssize_t):
* stdlib.free(info.strides)
*/
free(__pyx_v_info->format);
goto __pyx_L5;
}
__pyx_L5:;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":282
* if PyArray_HASFIELDS(self):
* stdlib.free(info.format)
* if sizeof(npy_intp) != sizeof(Py_ssize_t): # <<<<<<<<<<<<<<
* stdlib.free(info.strides)
* # info.shape was stored after info.strides in the same block
*/
__pyx_t_1 = ((sizeof(npy_intp)) != (sizeof(Py_ssize_t)));
if (__pyx_t_1) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":283
* stdlib.free(info.format)
* if sizeof(npy_intp) != sizeof(Py_ssize_t):
* stdlib.free(info.strides) # <<<<<<<<<<<<<<
* # info.shape was stored after info.strides in the same block
*
*/
free(__pyx_v_info->strides);
goto __pyx_L6;
}
__pyx_L6:;
__Pyx_RefNannyFinishContext();
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":756
* ctypedef npy_cdouble complex_t
*
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
* return PyArray_MultiIterNew(1, <void*>a)
*
*/
static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__pyx_v_a) {
PyObject *__pyx_r = NULL;
PyObject *__pyx_t_1 = NULL;
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1");
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":757
*
* cdef inline object PyArray_MultiIterNew1(a):
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
*
* cdef inline object PyArray_MultiIterNew2(a, b):
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_1 = PyArray_MultiIterNew(1, ((void *)__pyx_v_a)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 757; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_r = __pyx_t_1;
__pyx_t_1 = 0;
goto __pyx_L0;
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_AddTraceback("numpy.PyArray_MultiIterNew1");
__pyx_r = 0;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":759
* return PyArray_MultiIterNew(1, <void*>a)
*
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
*
*/
static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__pyx_v_a, PyObject *__pyx_v_b) {
PyObject *__pyx_r = NULL;
PyObject *__pyx_t_1 = NULL;
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2");
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":760
*
* cdef inline object PyArray_MultiIterNew2(a, b):
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
*
* cdef inline object PyArray_MultiIterNew3(a, b, c):
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_1 = PyArray_MultiIterNew(2, ((void *)__pyx_v_a), ((void *)__pyx_v_b)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 760; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_r = __pyx_t_1;
__pyx_t_1 = 0;
goto __pyx_L0;
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_AddTraceback("numpy.PyArray_MultiIterNew2");
__pyx_r = 0;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":762
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
*
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
*
*/
static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__pyx_v_a, PyObject *__pyx_v_b, PyObject *__pyx_v_c) {
PyObject *__pyx_r = NULL;
PyObject *__pyx_t_1 = NULL;
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3");
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":763
*
* cdef inline object PyArray_MultiIterNew3(a, b, c):
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
*
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_1 = PyArray_MultiIterNew(3, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 763; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_r = __pyx_t_1;
__pyx_t_1 = 0;
goto __pyx_L0;
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_AddTraceback("numpy.PyArray_MultiIterNew3");
__pyx_r = 0;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":765
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
*
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
*
*/
static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__pyx_v_a, PyObject *__pyx_v_b, PyObject *__pyx_v_c, PyObject *__pyx_v_d) {
PyObject *__pyx_r = NULL;
PyObject *__pyx_t_1 = NULL;
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4");
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":766
*
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
*
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_1 = PyArray_MultiIterNew(4, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c), ((void *)__pyx_v_d)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 766; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_r = __pyx_t_1;
__pyx_t_1 = 0;
goto __pyx_L0;
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_AddTraceback("numpy.PyArray_MultiIterNew4");
__pyx_r = 0;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":768
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
*
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
*
*/
static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__pyx_v_a, PyObject *__pyx_v_b, PyObject *__pyx_v_c, PyObject *__pyx_v_d, PyObject *__pyx_v_e) {
PyObject *__pyx_r = NULL;
PyObject *__pyx_t_1 = NULL;
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5");
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":769
*
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
*
* cdef inline char* _util_dtypestring(dtype descr, char* f, char* end, int* offset) except NULL:
*/
__Pyx_XDECREF(__pyx_r);
__pyx_t_1 = PyArray_MultiIterNew(5, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c), ((void *)__pyx_v_d), ((void *)__pyx_v_e)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 769; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_r = __pyx_t_1;
__pyx_t_1 = 0;
goto __pyx_L0;
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_AddTraceback("numpy.PyArray_MultiIterNew5");
__pyx_r = 0;
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":771
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
*
* cdef inline char* _util_dtypestring(dtype descr, char* f, char* end, int* offset) except NULL: # <<<<<<<<<<<<<<
* # Recursive utility function used in __getbuffer__ to get format
* # string. The new location in the format string is returned.
*/
static CYTHON_INLINE char *__pyx_f_5numpy__util_dtypestring(PyArray_Descr *__pyx_v_descr, char *__pyx_v_f, char *__pyx_v_end, int *__pyx_v_offset) {
PyArray_Descr *__pyx_v_child;
int __pyx_v_endian_detector;
int __pyx_v_little_endian;
PyObject *__pyx_v_fields;
PyObject *__pyx_v_childname;
PyObject *__pyx_v_new_offset;
PyObject *__pyx_v_t;
char *__pyx_r;
Py_ssize_t __pyx_t_1;
PyObject *__pyx_t_2 = NULL;
PyObject *__pyx_t_3 = NULL;
PyObject *__pyx_t_4 = NULL;
PyObject *__pyx_t_5 = NULL;
int __pyx_t_6;
int __pyx_t_7;
int __pyx_t_8;
int __pyx_t_9;
char *__pyx_t_10;
__Pyx_RefNannySetupContext("_util_dtypestring");
__pyx_v_child = ((PyArray_Descr *)Py_None); __Pyx_INCREF(Py_None);
__pyx_v_fields = ((PyObject *)Py_None); __Pyx_INCREF(Py_None);
__pyx_v_childname = Py_None; __Pyx_INCREF(Py_None);
__pyx_v_new_offset = Py_None; __Pyx_INCREF(Py_None);
__pyx_v_t = Py_None; __Pyx_INCREF(Py_None);
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":778
* cdef int delta_offset
* cdef tuple i
* cdef int endian_detector = 1 # <<<<<<<<<<<<<<
* cdef bint little_endian = ((<char*>&endian_detector)[0] != 0)
* cdef tuple fields
*/
__pyx_v_endian_detector = 1;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":779
* cdef tuple i
* cdef int endian_detector = 1
* cdef bint little_endian = ((<char*>&endian_detector)[0] != 0) # <<<<<<<<<<<<<<
* cdef tuple fields
*
*/
__pyx_v_little_endian = ((((char *)(&__pyx_v_endian_detector))[0]) != 0);
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":782
* cdef tuple fields
*
* for childname in descr.names: # <<<<<<<<<<<<<<
* fields = descr.fields[childname]
* child, new_offset = fields
*/
if (likely(((PyObject *)__pyx_v_descr->names) != Py_None)) {
__pyx_t_1 = 0; __pyx_t_2 = ((PyObject *)__pyx_v_descr->names); __Pyx_INCREF(__pyx_t_2);
} else {
PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[1]; __pyx_lineno = 782; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
for (;;) {
if (__pyx_t_1 >= PyTuple_GET_SIZE(__pyx_t_2)) break;
__pyx_t_3 = PyTuple_GET_ITEM(__pyx_t_2, __pyx_t_1); __Pyx_INCREF(__pyx_t_3); __pyx_t_1++;
__Pyx_DECREF(__pyx_v_childname);
__pyx_v_childname = __pyx_t_3;
__pyx_t_3 = 0;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":783
*
* for childname in descr.names:
* fields = descr.fields[childname] # <<<<<<<<<<<<<<
* child, new_offset = fields
*
*/
__pyx_t_3 = PyObject_GetItem(__pyx_v_descr->fields, __pyx_v_childname); if (!__pyx_t_3) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 783; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
if (!(likely(PyTuple_CheckExact(__pyx_t_3))||((__pyx_t_3) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected tuple, got %.200s", Py_TYPE(__pyx_t_3)->tp_name), 0))) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 783; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(((PyObject *)__pyx_v_fields));
__pyx_v_fields = ((PyObject *)__pyx_t_3);
__pyx_t_3 = 0;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":784
* for childname in descr.names:
* fields = descr.fields[childname]
* child, new_offset = fields # <<<<<<<<<<<<<<
*
* if (end - f) - (new_offset - offset[0]) < 15:
*/
if (likely(((PyObject *)__pyx_v_fields) != Py_None) && likely(PyTuple_GET_SIZE(((PyObject *)__pyx_v_fields)) == 2)) {
PyObject* tuple = ((PyObject *)__pyx_v_fields);
__pyx_t_3 = PyTuple_GET_ITEM(tuple, 0); __Pyx_INCREF(__pyx_t_3);
if (!(likely(((__pyx_t_3) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_3, __pyx_ptype_5numpy_dtype))))) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 784; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_t_4 = PyTuple_GET_ITEM(tuple, 1); __Pyx_INCREF(__pyx_t_4);
__Pyx_DECREF(((PyObject *)__pyx_v_child));
__pyx_v_child = ((PyArray_Descr *)__pyx_t_3);
__pyx_t_3 = 0;
__Pyx_DECREF(__pyx_v_new_offset);
__pyx_v_new_offset = __pyx_t_4;
__pyx_t_4 = 0;
} else {
__Pyx_UnpackTupleError(((PyObject *)__pyx_v_fields), 2);
{__pyx_filename = __pyx_f[1]; __pyx_lineno = 784; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":786
* child, new_offset = fields
*
* if (end - f) - (new_offset - offset[0]) < 15: # <<<<<<<<<<<<<<
* raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd")
*
*/
__pyx_t_4 = PyInt_FromLong((__pyx_v_end - __pyx_v_f)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 786; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__pyx_t_3 = PyInt_FromLong((__pyx_v_offset[0])); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 786; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_5 = PyNumber_Subtract(__pyx_v_new_offset, __pyx_t_3); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 786; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_3 = PyNumber_Subtract(__pyx_t_4, __pyx_t_5); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 786; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_5 = PyObject_RichCompare(__pyx_t_3, __pyx_int_15, Py_LT); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 786; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 786; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
if (__pyx_t_6) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":787
*
* if (end - f) - (new_offset - offset[0]) < 15:
* raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") # <<<<<<<<<<<<<<
*
* if ((child.byteorder == '>' and little_endian) or
*/
__pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 787; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_INCREF(((PyObject *)__pyx_kp_u_24));
PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_kp_u_24));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_u_24));
__pyx_t_3 = PyObject_Call(__pyx_builtin_RuntimeError, __pyx_t_5, NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 787; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__Pyx_Raise(__pyx_t_3, 0, 0);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
{__pyx_filename = __pyx_f[1]; __pyx_lineno = 787; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L5;
}
__pyx_L5:;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":789
* raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd")
*
* if ((child.byteorder == '>' and little_endian) or # <<<<<<<<<<<<<<
* (child.byteorder == '<' and not little_endian)):
* raise ValueError(u"Non-native byte order not supported")
*/
__pyx_t_6 = (__pyx_v_child->byteorder == '>');
if (__pyx_t_6) {
__pyx_t_7 = __pyx_v_little_endian;
} else {
__pyx_t_7 = __pyx_t_6;
}
if (!__pyx_t_7) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":790
*
* if ((child.byteorder == '>' and little_endian) or
* (child.byteorder == '<' and not little_endian)): # <<<<<<<<<<<<<<
* raise ValueError(u"Non-native byte order not supported")
* # One could encode it in the format string and have Cython
*/
__pyx_t_6 = (__pyx_v_child->byteorder == '<');
if (__pyx_t_6) {
__pyx_t_8 = (!__pyx_v_little_endian);
__pyx_t_9 = __pyx_t_8;
} else {
__pyx_t_9 = __pyx_t_6;
}
__pyx_t_6 = __pyx_t_9;
} else {
__pyx_t_6 = __pyx_t_7;
}
if (__pyx_t_6) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":791
* if ((child.byteorder == '>' and little_endian) or
* (child.byteorder == '<' and not little_endian)):
* raise ValueError(u"Non-native byte order not supported") # <<<<<<<<<<<<<<
* # One could encode it in the format string and have Cython
* # complain instead, BUT: < and > in format strings also imply
*/
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 791; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_INCREF(((PyObject *)__pyx_kp_u_22));
PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)__pyx_kp_u_22));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_u_22));
__pyx_t_5 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_3, NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 791; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_Raise(__pyx_t_5, 0, 0);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
{__pyx_filename = __pyx_f[1]; __pyx_lineno = 791; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L6;
}
__pyx_L6:;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":801
*
* # Output padding bytes
* while offset[0] < new_offset: # <<<<<<<<<<<<<<
* f[0] = 120 # "x"; pad byte
* f += 1
*/
while (1) {
__pyx_t_5 = PyInt_FromLong((__pyx_v_offset[0])); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 801; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_3 = PyObject_RichCompare(__pyx_t_5, __pyx_v_new_offset, Py_LT); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 801; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 801; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
if (!__pyx_t_6) break;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":802
* # Output padding bytes
* while offset[0] < new_offset:
* f[0] = 120 # "x"; pad byte # <<<<<<<<<<<<<<
* f += 1
* offset[0] += 1
*/
(__pyx_v_f[0]) = 120;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":803
* while offset[0] < new_offset:
* f[0] = 120 # "x"; pad byte
* f += 1 # <<<<<<<<<<<<<<
* offset[0] += 1
*
*/
__pyx_v_f += 1;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":804
* f[0] = 120 # "x"; pad byte
* f += 1
* offset[0] += 1 # <<<<<<<<<<<<<<
*
* offset[0] += child.itemsize
*/
(__pyx_v_offset[0]) += 1;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":806
* offset[0] += 1
*
* offset[0] += child.itemsize # <<<<<<<<<<<<<<
*
* if not PyDataType_HASFIELDS(child):
*/
(__pyx_v_offset[0]) += __pyx_v_child->elsize;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":808
* offset[0] += child.itemsize
*
* if not PyDataType_HASFIELDS(child): # <<<<<<<<<<<<<<
* t = child.type_num
* if end - f < 5:
*/
__pyx_t_6 = (!PyDataType_HASFIELDS(__pyx_v_child));
if (__pyx_t_6) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":809
*
* if not PyDataType_HASFIELDS(child):
* t = child.type_num # <<<<<<<<<<<<<<
* if end - f < 5:
* raise RuntimeError(u"Format string allocated too short.")
*/
__pyx_t_3 = PyInt_FromLong(__pyx_v_child->type_num); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 809; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_v_t);
__pyx_v_t = __pyx_t_3;
__pyx_t_3 = 0;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":810
* if not PyDataType_HASFIELDS(child):
* t = child.type_num
* if end - f < 5: # <<<<<<<<<<<<<<
* raise RuntimeError(u"Format string allocated too short.")
*
*/
__pyx_t_6 = ((__pyx_v_end - __pyx_v_f) < 5);
if (__pyx_t_6) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":811
* t = child.type_num
* if end - f < 5:
* raise RuntimeError(u"Format string allocated too short.") # <<<<<<<<<<<<<<
*
* # Until ticket #99 is fixed, use integers to avoid warnings
*/
__pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_INCREF(((PyObject *)__pyx_kp_u_25));
PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)__pyx_kp_u_25));
__Pyx_GIVEREF(((PyObject *)__pyx_kp_u_25));
__pyx_t_5 = PyObject_Call(__pyx_builtin_RuntimeError, __pyx_t_3, NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__Pyx_Raise(__pyx_t_5, 0, 0);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
{__pyx_filename = __pyx_f[1]; __pyx_lineno = 811; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
goto __pyx_L10;
}
__pyx_L10:;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":814
*
* # Until ticket #99 is fixed, use integers to avoid warnings
* if t == NPY_BYTE: f[0] = 98 #"b" # <<<<<<<<<<<<<<
* elif t == NPY_UBYTE: f[0] = 66 #"B"
* elif t == NPY_SHORT: f[0] = 104 #"h"
*/
__pyx_t_5 = PyInt_FromLong(NPY_BYTE); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 814; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_5, Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 814; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 814; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 98;
goto __pyx_L11;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":815
* # Until ticket #99 is fixed, use integers to avoid warnings
* if t == NPY_BYTE: f[0] = 98 #"b"
* elif t == NPY_UBYTE: f[0] = 66 #"B" # <<<<<<<<<<<<<<
* elif t == NPY_SHORT: f[0] = 104 #"h"
* elif t == NPY_USHORT: f[0] = 72 #"H"
*/
__pyx_t_3 = PyInt_FromLong(NPY_UBYTE); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 815; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_5 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 815; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 815; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 66;
goto __pyx_L11;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":816
* if t == NPY_BYTE: f[0] = 98 #"b"
* elif t == NPY_UBYTE: f[0] = 66 #"B"
* elif t == NPY_SHORT: f[0] = 104 #"h" # <<<<<<<<<<<<<<
* elif t == NPY_USHORT: f[0] = 72 #"H"
* elif t == NPY_INT: f[0] = 105 #"i"
*/
__pyx_t_5 = PyInt_FromLong(NPY_SHORT); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 816; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_5, Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 816; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 816; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 104;
goto __pyx_L11;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":817
* elif t == NPY_UBYTE: f[0] = 66 #"B"
* elif t == NPY_SHORT: f[0] = 104 #"h"
* elif t == NPY_USHORT: f[0] = 72 #"H" # <<<<<<<<<<<<<<
* elif t == NPY_INT: f[0] = 105 #"i"
* elif t == NPY_UINT: f[0] = 73 #"I"
*/
__pyx_t_3 = PyInt_FromLong(NPY_USHORT); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_5 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 817; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 72;
goto __pyx_L11;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":818
* elif t == NPY_SHORT: f[0] = 104 #"h"
* elif t == NPY_USHORT: f[0] = 72 #"H"
* elif t == NPY_INT: f[0] = 105 #"i" # <<<<<<<<<<<<<<
* elif t == NPY_UINT: f[0] = 73 #"I"
* elif t == NPY_LONG: f[0] = 108 #"l"
*/
__pyx_t_5 = PyInt_FromLong(NPY_INT); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 818; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_5, Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 818; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 818; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 105;
goto __pyx_L11;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":819
* elif t == NPY_USHORT: f[0] = 72 #"H"
* elif t == NPY_INT: f[0] = 105 #"i"
* elif t == NPY_UINT: f[0] = 73 #"I" # <<<<<<<<<<<<<<
* elif t == NPY_LONG: f[0] = 108 #"l"
* elif t == NPY_ULONG: f[0] = 76 #"L"
*/
__pyx_t_3 = PyInt_FromLong(NPY_UINT); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 819; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_5 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 819; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 819; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 73;
goto __pyx_L11;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":820
* elif t == NPY_INT: f[0] = 105 #"i"
* elif t == NPY_UINT: f[0] = 73 #"I"
* elif t == NPY_LONG: f[0] = 108 #"l" # <<<<<<<<<<<<<<
* elif t == NPY_ULONG: f[0] = 76 #"L"
* elif t == NPY_LONGLONG: f[0] = 113 #"q"
*/
__pyx_t_5 = PyInt_FromLong(NPY_LONG); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 820; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_5, Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 820; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 820; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 108;
goto __pyx_L11;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":821
* elif t == NPY_UINT: f[0] = 73 #"I"
* elif t == NPY_LONG: f[0] = 108 #"l"
* elif t == NPY_ULONG: f[0] = 76 #"L" # <<<<<<<<<<<<<<
* elif t == NPY_LONGLONG: f[0] = 113 #"q"
* elif t == NPY_ULONGLONG: f[0] = 81 #"Q"
*/
__pyx_t_3 = PyInt_FromLong(NPY_ULONG); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 821; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_5 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 821; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 821; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 76;
goto __pyx_L11;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":822
* elif t == NPY_LONG: f[0] = 108 #"l"
* elif t == NPY_ULONG: f[0] = 76 #"L"
* elif t == NPY_LONGLONG: f[0] = 113 #"q" # <<<<<<<<<<<<<<
* elif t == NPY_ULONGLONG: f[0] = 81 #"Q"
* elif t == NPY_FLOAT: f[0] = 102 #"f"
*/
__pyx_t_5 = PyInt_FromLong(NPY_LONGLONG); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 822; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_5, Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 822; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 822; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 113;
goto __pyx_L11;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":823
* elif t == NPY_ULONG: f[0] = 76 #"L"
* elif t == NPY_LONGLONG: f[0] = 113 #"q"
* elif t == NPY_ULONGLONG: f[0] = 81 #"Q" # <<<<<<<<<<<<<<
* elif t == NPY_FLOAT: f[0] = 102 #"f"
* elif t == NPY_DOUBLE: f[0] = 100 #"d"
*/
__pyx_t_3 = PyInt_FromLong(NPY_ULONGLONG); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 823; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_5 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 823; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 823; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 81;
goto __pyx_L11;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":824
* elif t == NPY_LONGLONG: f[0] = 113 #"q"
* elif t == NPY_ULONGLONG: f[0] = 81 #"Q"
* elif t == NPY_FLOAT: f[0] = 102 #"f" # <<<<<<<<<<<<<<
* elif t == NPY_DOUBLE: f[0] = 100 #"d"
* elif t == NPY_LONGDOUBLE: f[0] = 103 #"g"
*/
__pyx_t_5 = PyInt_FromLong(NPY_FLOAT); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 824; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_5, Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 824; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 824; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 102;
goto __pyx_L11;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":825
* elif t == NPY_ULONGLONG: f[0] = 81 #"Q"
* elif t == NPY_FLOAT: f[0] = 102 #"f"
* elif t == NPY_DOUBLE: f[0] = 100 #"d" # <<<<<<<<<<<<<<
* elif t == NPY_LONGDOUBLE: f[0] = 103 #"g"
* elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf
*/
__pyx_t_3 = PyInt_FromLong(NPY_DOUBLE); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 825; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_5 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 825; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 825; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 100;
goto __pyx_L11;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":826
* elif t == NPY_FLOAT: f[0] = 102 #"f"
* elif t == NPY_DOUBLE: f[0] = 100 #"d"
* elif t == NPY_LONGDOUBLE: f[0] = 103 #"g" # <<<<<<<<<<<<<<
* elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf
* elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd
*/
__pyx_t_5 = PyInt_FromLong(NPY_LONGDOUBLE); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 826; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_5, Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 826; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 826; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 103;
goto __pyx_L11;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":827
* elif t == NPY_DOUBLE: f[0] = 100 #"d"
* elif t == NPY_LONGDOUBLE: f[0] = 103 #"g"
* elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf # <<<<<<<<<<<<<<
* elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd
* elif t == NPY_CLONGDOUBLE: f[0] = 90; f[1] = 103; f += 1 # Zg
*/
__pyx_t_3 = PyInt_FromLong(NPY_CFLOAT); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 827; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_5 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 827; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 827; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 90;
(__pyx_v_f[1]) = 102;
__pyx_v_f += 1;
goto __pyx_L11;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":828
* elif t == NPY_LONGDOUBLE: f[0] = 103 #"g"
* elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf
* elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd # <<<<<<<<<<<<<<
* elif t == NPY_CLONGDOUBLE: f[0] = 90; f[1] = 103; f += 1 # Zg
* elif t == NPY_OBJECT: f[0] = 79 #"O"
*/
__pyx_t_5 = PyInt_FromLong(NPY_CDOUBLE); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 828; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_5, Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 828; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 828; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 90;
(__pyx_v_f[1]) = 100;
__pyx_v_f += 1;
goto __pyx_L11;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":829
* elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf
* elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd
* elif t == NPY_CLONGDOUBLE: f[0] = 90; f[1] = 103; f += 1 # Zg # <<<<<<<<<<<<<<
* elif t == NPY_OBJECT: f[0] = 79 #"O"
* else:
*/
__pyx_t_3 = PyInt_FromLong(NPY_CLONGDOUBLE); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 829; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__pyx_t_5 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 829; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 829; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 90;
(__pyx_v_f[1]) = 103;
__pyx_v_f += 1;
goto __pyx_L11;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":830
* elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd
* elif t == NPY_CLONGDOUBLE: f[0] = 90; f[1] = 103; f += 1 # Zg
* elif t == NPY_OBJECT: f[0] = 79 #"O" # <<<<<<<<<<<<<<
* else:
* raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t)
*/
__pyx_t_5 = PyInt_FromLong(NPY_OBJECT); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 830; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
__pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_5, Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 830; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 830; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
if (__pyx_t_6) {
(__pyx_v_f[0]) = 79;
goto __pyx_L11;
}
/*else*/ {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":832
* elif t == NPY_OBJECT: f[0] = 79 #"O"
* else:
* raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t) # <<<<<<<<<<<<<<
* f += 1
* else:
*/
__pyx_t_3 = PyNumber_Remainder(((PyObject *)__pyx_kp_u_23), __pyx_v_t); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 832; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_3));
__pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 832; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_5);
PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_t_3));
__Pyx_GIVEREF(((PyObject *)__pyx_t_3));
__pyx_t_3 = 0;
__pyx_t_3 = PyObject_Call(__pyx_builtin_ValueError, __pyx_t_5, NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 832; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_3);
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
__Pyx_Raise(__pyx_t_3, 0, 0);
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
{__pyx_filename = __pyx_f[1]; __pyx_lineno = 832; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
}
__pyx_L11:;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":833
* else:
* raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t)
* f += 1 # <<<<<<<<<<<<<<
* else:
* # Cython ignores struct boundary information ("T{...}"),
*/
__pyx_v_f += 1;
goto __pyx_L9;
}
/*else*/ {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":837
* # Cython ignores struct boundary information ("T{...}"),
* # so don't output it
* f = _util_dtypestring(child, f, end, offset) # <<<<<<<<<<<<<<
* return f
*
*/
__pyx_t_10 = __pyx_f_5numpy__util_dtypestring(__pyx_v_child, __pyx_v_f, __pyx_v_end, __pyx_v_offset); if (unlikely(__pyx_t_10 == NULL)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 837; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_v_f = __pyx_t_10;
}
__pyx_L9:;
}
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":838
* # so don't output it
* f = _util_dtypestring(child, f, end, offset)
* return f # <<<<<<<<<<<<<<
*
*
*/
__pyx_r = __pyx_v_f;
goto __pyx_L0;
__pyx_r = 0;
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_3);
__Pyx_XDECREF(__pyx_t_4);
__Pyx_XDECREF(__pyx_t_5);
__Pyx_AddTraceback("numpy._util_dtypestring");
__pyx_r = NULL;
__pyx_L0:;
__Pyx_DECREF((PyObject *)__pyx_v_child);
__Pyx_DECREF(__pyx_v_fields);
__Pyx_DECREF(__pyx_v_childname);
__Pyx_DECREF(__pyx_v_new_offset);
__Pyx_DECREF(__pyx_v_t);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":953
*
*
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
* cdef PyObject* baseptr
* if base is None:
*/
static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
PyObject *__pyx_v_baseptr;
int __pyx_t_1;
__Pyx_RefNannySetupContext("set_array_base");
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":955
* cdef inline void set_array_base(ndarray arr, object base):
* cdef PyObject* baseptr
* if base is None: # <<<<<<<<<<<<<<
* baseptr = NULL
* else:
*/
__pyx_t_1 = (__pyx_v_base == Py_None);
if (__pyx_t_1) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":956
* cdef PyObject* baseptr
* if base is None:
* baseptr = NULL # <<<<<<<<<<<<<<
* else:
* Py_INCREF(base) # important to do this before decref below!
*/
__pyx_v_baseptr = NULL;
goto __pyx_L3;
}
/*else*/ {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":958
* baseptr = NULL
* else:
* Py_INCREF(base) # important to do this before decref below! # <<<<<<<<<<<<<<
* baseptr = <PyObject*>base
* Py_XDECREF(arr.base)
*/
Py_INCREF(__pyx_v_base);
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":959
* else:
* Py_INCREF(base) # important to do this before decref below!
* baseptr = <PyObject*>base # <<<<<<<<<<<<<<
* Py_XDECREF(arr.base)
* arr.base = baseptr
*/
__pyx_v_baseptr = ((PyObject *)__pyx_v_base);
}
__pyx_L3:;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":960
* Py_INCREF(base) # important to do this before decref below!
* baseptr = <PyObject*>base
* Py_XDECREF(arr.base) # <<<<<<<<<<<<<<
* arr.base = baseptr
*
*/
Py_XDECREF(__pyx_v_arr->base);
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":961
* baseptr = <PyObject*>base
* Py_XDECREF(arr.base)
* arr.base = baseptr # <<<<<<<<<<<<<<
*
* cdef inline object get_array_base(ndarray arr):
*/
__pyx_v_arr->base = __pyx_v_baseptr;
__Pyx_RefNannyFinishContext();
}
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":963
* arr.base = baseptr
*
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
* if arr.base is NULL:
* return None
*/
static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__pyx_v_arr) {
PyObject *__pyx_r = NULL;
int __pyx_t_1;
__Pyx_RefNannySetupContext("get_array_base");
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":964
*
* cdef inline object get_array_base(ndarray arr):
* if arr.base is NULL: # <<<<<<<<<<<<<<
* return None
* else:
*/
__pyx_t_1 = (__pyx_v_arr->base == NULL);
if (__pyx_t_1) {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":965
* cdef inline object get_array_base(ndarray arr):
* if arr.base is NULL:
* return None # <<<<<<<<<<<<<<
* else:
* return <object>arr.base
*/
__Pyx_XDECREF(__pyx_r);
__Pyx_INCREF(Py_None);
__pyx_r = Py_None;
goto __pyx_L0;
goto __pyx_L3;
}
/*else*/ {
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/numpy.pxd":967
* return None
* else:
* return <object>arr.base # <<<<<<<<<<<<<<
*/
__Pyx_XDECREF(__pyx_r);
__Pyx_INCREF(((PyObject *)__pyx_v_arr->base));
__pyx_r = ((PyObject *)__pyx_v_arr->base);
goto __pyx_L0;
}
__pyx_L3:;
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
__pyx_L0:;
__Pyx_XGIVEREF(__pyx_r);
__Pyx_RefNannyFinishContext();
return __pyx_r;
}
static struct __pyx_vtabstruct_7sklearn_9ball_tree_BallTree __pyx_vtable_7sklearn_9ball_tree_BallTree;
static PyObject *__pyx_tp_new_7sklearn_9ball_tree_BallTree(PyTypeObject *t, PyObject *a, PyObject *k) {
struct __pyx_obj_7sklearn_9ball_tree_BallTree *p;
PyObject *o = (*t->tp_alloc)(t, 0);
if (!o) return 0;
p = ((struct __pyx_obj_7sklearn_9ball_tree_BallTree *)o);
p->__pyx_vtab = __pyx_vtabptr_7sklearn_9ball_tree_BallTree;
p->data = ((PyArrayObject *)Py_None); Py_INCREF(Py_None);
p->idx_array = ((PyArrayObject *)Py_None); Py_INCREF(Py_None);
p->node_centroid_arr = ((PyArrayObject *)Py_None); Py_INCREF(Py_None);
p->node_info_arr = ((PyArrayObject *)Py_None); Py_INCREF(Py_None);
if (__pyx_pf_7sklearn_9ball_tree_8BallTree___cinit__(o, __pyx_empty_tuple, NULL) < 0) {
Py_DECREF(o); o = 0;
}
return o;
}
static void __pyx_tp_dealloc_7sklearn_9ball_tree_BallTree(PyObject *o) {
struct __pyx_obj_7sklearn_9ball_tree_BallTree *p = (struct __pyx_obj_7sklearn_9ball_tree_BallTree *)o;
Py_XDECREF(((PyObject *)p->data));
Py_XDECREF(((PyObject *)p->idx_array));
Py_XDECREF(((PyObject *)p->node_centroid_arr));
Py_XDECREF(((PyObject *)p->node_info_arr));
(*Py_TYPE(o)->tp_free)(o);
}
static int __pyx_tp_traverse_7sklearn_9ball_tree_BallTree(PyObject *o, visitproc v, void *a) {
int e;
struct __pyx_obj_7sklearn_9ball_tree_BallTree *p = (struct __pyx_obj_7sklearn_9ball_tree_BallTree *)o;
if (p->data) {
e = (*v)(((PyObject*)p->data), a); if (e) return e;
}
if (p->idx_array) {
e = (*v)(((PyObject*)p->idx_array), a); if (e) return e;
}
if (p->node_centroid_arr) {
e = (*v)(((PyObject*)p->node_centroid_arr), a); if (e) return e;
}
if (p->node_info_arr) {
e = (*v)(((PyObject*)p->node_info_arr), a); if (e) return e;
}
return 0;
}
static int __pyx_tp_clear_7sklearn_9ball_tree_BallTree(PyObject *o) {
struct __pyx_obj_7sklearn_9ball_tree_BallTree *p = (struct __pyx_obj_7sklearn_9ball_tree_BallTree *)o;
PyObject* tmp;
tmp = ((PyObject*)p->data);
p->data = ((PyArrayObject *)Py_None); Py_INCREF(Py_None);
Py_XDECREF(tmp);
tmp = ((PyObject*)p->idx_array);
p->idx_array = ((PyArrayObject *)Py_None); Py_INCREF(Py_None);
Py_XDECREF(tmp);
tmp = ((PyObject*)p->node_centroid_arr);
p->node_centroid_arr = ((PyArrayObject *)Py_None); Py_INCREF(Py_None);
Py_XDECREF(tmp);
tmp = ((PyObject*)p->node_info_arr);
p->node_info_arr = ((PyArrayObject *)Py_None); Py_INCREF(Py_None);
Py_XDECREF(tmp);
return 0;
}
static PyObject *__pyx_getprop_7sklearn_9ball_tree_8BallTree_data(PyObject *o, void *x) {
return __pyx_pf_7sklearn_9ball_tree_8BallTree_4data___get__(o);
}
static PyMethodDef __pyx_methods_7sklearn_9ball_tree_BallTree[] = {
{__Pyx_NAMESTR("__reduce__"), (PyCFunction)__pyx_pf_7sklearn_9ball_tree_8BallTree___reduce__, METH_NOARGS, __Pyx_DOCSTR(__pyx_doc_7sklearn_9ball_tree_8BallTree___reduce__)},
{__Pyx_NAMESTR("__getstate__"), (PyCFunction)__pyx_pf_7sklearn_9ball_tree_8BallTree___getstate__, METH_NOARGS, __Pyx_DOCSTR(__pyx_doc_7sklearn_9ball_tree_8BallTree___getstate__)},
{__Pyx_NAMESTR("__setstate__"), (PyCFunction)__pyx_pf_7sklearn_9ball_tree_8BallTree___setstate__, METH_O, __Pyx_DOCSTR(__pyx_doc_7sklearn_9ball_tree_8BallTree___setstate__)},
{__Pyx_NAMESTR("query"), (PyCFunction)__pyx_pf_7sklearn_9ball_tree_8BallTree_query, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_7sklearn_9ball_tree_8BallTree_query)},
{__Pyx_NAMESTR("query_radius"), (PyCFunction)__pyx_pf_7sklearn_9ball_tree_8BallTree_query_radius, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_7sklearn_9ball_tree_8BallTree_query_radius)},
{0, 0, 0, 0}
};
static struct PyGetSetDef __pyx_getsets_7sklearn_9ball_tree_BallTree[] = {
{(char *)"data", __pyx_getprop_7sklearn_9ball_tree_8BallTree_data, 0, 0, 0},
{0, 0, 0, 0, 0}
};
static PyNumberMethods __pyx_tp_as_number_BallTree = {
0, /*nb_add*/
0, /*nb_subtract*/
0, /*nb_multiply*/
#if PY_MAJOR_VERSION < 3
0, /*nb_divide*/
#endif
0, /*nb_remainder*/
0, /*nb_divmod*/
0, /*nb_power*/
0, /*nb_negative*/
0, /*nb_positive*/
0, /*nb_absolute*/
0, /*nb_nonzero*/
0, /*nb_invert*/
0, /*nb_lshift*/
0, /*nb_rshift*/
0, /*nb_and*/
0, /*nb_xor*/
0, /*nb_or*/
#if PY_MAJOR_VERSION < 3
0, /*nb_coerce*/
#endif
0, /*nb_int*/
#if PY_MAJOR_VERSION < 3
0, /*nb_long*/
#else
0, /*reserved*/
#endif
0, /*nb_float*/
#if PY_MAJOR_VERSION < 3
0, /*nb_oct*/
#endif
#if PY_MAJOR_VERSION < 3
0, /*nb_hex*/
#endif
0, /*nb_inplace_add*/
0, /*nb_inplace_subtract*/
0, /*nb_inplace_multiply*/
#if PY_MAJOR_VERSION < 3
0, /*nb_inplace_divide*/
#endif
0, /*nb_inplace_remainder*/
0, /*nb_inplace_power*/
0, /*nb_inplace_lshift*/
0, /*nb_inplace_rshift*/
0, /*nb_inplace_and*/
0, /*nb_inplace_xor*/
0, /*nb_inplace_or*/
0, /*nb_floor_divide*/
0, /*nb_true_divide*/
0, /*nb_inplace_floor_divide*/
0, /*nb_inplace_true_divide*/
#if PY_VERSION_HEX >= 0x02050000
0, /*nb_index*/
#endif
};
static PySequenceMethods __pyx_tp_as_sequence_BallTree = {
0, /*sq_length*/
0, /*sq_concat*/
0, /*sq_repeat*/
0, /*sq_item*/
0, /*sq_slice*/
0, /*sq_ass_item*/
0, /*sq_ass_slice*/
0, /*sq_contains*/
0, /*sq_inplace_concat*/
0, /*sq_inplace_repeat*/
};
static PyMappingMethods __pyx_tp_as_mapping_BallTree = {
0, /*mp_length*/
0, /*mp_subscript*/
0, /*mp_ass_subscript*/
};
static PyBufferProcs __pyx_tp_as_buffer_BallTree = {
#if PY_MAJOR_VERSION < 3
0, /*bf_getreadbuffer*/
#endif
#if PY_MAJOR_VERSION < 3
0, /*bf_getwritebuffer*/
#endif
#if PY_MAJOR_VERSION < 3
0, /*bf_getsegcount*/
#endif
#if PY_MAJOR_VERSION < 3
0, /*bf_getcharbuffer*/
#endif
#if PY_VERSION_HEX >= 0x02060000
0, /*bf_getbuffer*/
#endif
#if PY_VERSION_HEX >= 0x02060000
0, /*bf_releasebuffer*/
#endif
};
PyTypeObject __pyx_type_7sklearn_9ball_tree_BallTree = {
PyVarObject_HEAD_INIT(0, 0)
__Pyx_NAMESTR("sklearn.ball_tree.BallTree"), /*tp_name*/
sizeof(struct __pyx_obj_7sklearn_9ball_tree_BallTree), /*tp_basicsize*/
0, /*tp_itemsize*/
__pyx_tp_dealloc_7sklearn_9ball_tree_BallTree, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
#if PY_MAJOR_VERSION < 3
0, /*tp_compare*/
#else
0, /*reserved*/
#endif
0, /*tp_repr*/
&__pyx_tp_as_number_BallTree, /*tp_as_number*/
&__pyx_tp_as_sequence_BallTree, /*tp_as_sequence*/
&__pyx_tp_as_mapping_BallTree, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
&__pyx_tp_as_buffer_BallTree, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_HAVE_GC, /*tp_flags*/
__Pyx_DOCSTR("\n Ball Tree for fast nearest-neighbor searches :\n\n BallTree(X, leaf_size=20, p=2.0)\n\n Parameters\n ----------\n X : array-like, shape = [n_samples, n_features]\n n_samples is the number of points in the data set, and\n n_features is the dimension of the parameter space.\n Note: if X is a C-contiguous array of doubles then data will\n not be copied. Otherwise, an internal copy will be made.\n\n leaf_size : positive integer (default = 20)\n Number of points at which to switch to brute-force. Changing\n leaf_size will not affect the results of a query, but can\n significantly impact the speed of a query and the memory required\n to store the built ball tree. The amount of memory needed to\n store the tree scales as\n 2 ** (1 + floor(log2((n_samples - 1) / leaf_size))) - 1\n For a specified ``leaf_size``, a leaf node is guaranteed to\n satisfy ``leaf_size <= n_points <= 2 * leaf_size``, except in\n the case that ``n_samples < leaf_size``.\n\n p : distance metric for the BallTree. ``p`` encodes the Minkowski\n p-distance:\n D = sum((X[i] - X[j]) ** p) ** (1. / p)\n p must be greater than or equal to 1, so that the triangle\n inequality will hold. If ``p == np.inf``, then the distance is\n equivalent to\n D = max(X[i] - X[j])\n\n Examples\n --------\n Query for k-nearest neighbors\n\n >>> import numpy as np\n >>> np.random.seed(0)\n >>> X = np.random.random((10,3)) # 10 points in 3 dimensions\n >>> ball_tree = BallTree(X, leaf_size=2)\n >>> dist, ind = ball_tree.query(X[0], n_neighbors=3)\n >>> print ind # indices of 3 closest neighbors\n [0 3 1]\n >>> print dist # distances to 3 closest neighbors\n [ 0. 0.19662693 0.29473397]\n\n Pickle and Unpickle a ball tree (using protocol = 2). Note that the\n state of the tree is saved in the pickle operation: the tree is not\n rebuilt on un-pickling\n\n >>> import numpy as np\n >>> import pickle\n >>> np.random.seed(0)\n >>> X = np.random.random((10,3)) # 10 points in 3 dimensions\n >>> ball_tree = BallTree(X, leaf_size=2)\n >>> s = pickle.dumps(ball_tree, protocol=2)\n >>> ball_tree_copy = pickle.loads(s)\n >>> dist, ind = ball_tree_copy.query(X[0], k=3)\n >>> print ind # indices of 3 closest neighbors\n [0 3 1]\n >>> print dist # distances to 3 closest neighbors\n [ 0. 0.19662693 0.29473397]\n "), /*tp_doc*/
__pyx_tp_traverse_7sklearn_9ball_tree_BallTree, /*tp_traverse*/
__pyx_tp_clear_7sklearn_9ball_tree_BallTree, /*tp_clear*/
0, /*tp_richcompare*/
0, /*tp_weaklistoffset*/
0, /*tp_iter*/
0, /*tp_iternext*/
__pyx_methods_7sklearn_9ball_tree_BallTree, /*tp_methods*/
0, /*tp_members*/
__pyx_getsets_7sklearn_9ball_tree_BallTree, /*tp_getset*/
0, /*tp_base*/
0, /*tp_dict*/
0, /*tp_descr_get*/
0, /*tp_descr_set*/
0, /*tp_dictoffset*/
__pyx_pf_7sklearn_9ball_tree_8BallTree___init__, /*tp_init*/
0, /*tp_alloc*/
__pyx_tp_new_7sklearn_9ball_tree_BallTree, /*tp_new*/
0, /*tp_free*/
0, /*tp_is_gc*/
0, /*tp_bases*/
0, /*tp_mro*/
0, /*tp_cache*/
0, /*tp_subclasses*/
0, /*tp_weaklist*/
0, /*tp_del*/
#if PY_VERSION_HEX >= 0x02060000
0, /*tp_version_tag*/
#endif
};
static PyMethodDef __pyx_methods[] = {
{__Pyx_NAMESTR("newObj"), (PyCFunction)__pyx_pf_7sklearn_9ball_tree_newObj, METH_O, __Pyx_DOCSTR(0)},
{0, 0, 0, 0}
};
#if PY_MAJOR_VERSION >= 3
static struct PyModuleDef __pyx_moduledef = {
PyModuleDef_HEAD_INIT,
__Pyx_NAMESTR("ball_tree"),
__Pyx_DOCSTR(__pyx_k_26), /* m_doc */
-1, /* m_size */
__pyx_methods /* m_methods */,
NULL, /* m_reload */
NULL, /* m_traverse */
NULL, /* m_clear */
NULL /* m_free */
};
#endif
static __Pyx_StringTabEntry __pyx_string_tab[] = {
{&__pyx_kp_s_1, __pyx_k_1, sizeof(__pyx_k_1), 0, 0, 1, 0},
{&__pyx_kp_s_13, __pyx_k_13, sizeof(__pyx_k_13), 0, 0, 1, 0},
{&__pyx_kp_s_14, __pyx_k_14, sizeof(__pyx_k_14), 0, 0, 1, 0},
{&__pyx_kp_s_15, __pyx_k_15, sizeof(__pyx_k_15), 0, 0, 1, 0},
{&__pyx_n_s_16, __pyx_k_16, sizeof(__pyx_k_16), 0, 0, 1, 1},
{&__pyx_n_s_17, __pyx_k_17, sizeof(__pyx_k_17), 0, 0, 1, 1},
{&__pyx_kp_s_18, __pyx_k_18, sizeof(__pyx_k_18), 0, 0, 1, 0},
{&__pyx_kp_s_19, __pyx_k_19, sizeof(__pyx_k_19), 0, 0, 1, 0},
{&__pyx_kp_s_2, __pyx_k_2, sizeof(__pyx_k_2), 0, 0, 1, 0},
{&__pyx_kp_u_20, __pyx_k_20, sizeof(__pyx_k_20), 0, 1, 0, 0},
{&__pyx_kp_u_21, __pyx_k_21, sizeof(__pyx_k_21), 0, 1, 0, 0},
{&__pyx_kp_u_22, __pyx_k_22, sizeof(__pyx_k_22), 0, 1, 0, 0},
{&__pyx_kp_u_23, __pyx_k_23, sizeof(__pyx_k_23), 0, 1, 0, 0},
{&__pyx_kp_u_24, __pyx_k_24, sizeof(__pyx_k_24), 0, 1, 0, 0},
{&__pyx_kp_u_25, __pyx_k_25, sizeof(__pyx_k_25), 0, 1, 0, 0},
{&__pyx_kp_u_27, __pyx_k_27, sizeof(__pyx_k_27), 0, 1, 0, 0},
{&__pyx_kp_u_28, __pyx_k_28, sizeof(__pyx_k_28), 0, 1, 0, 0},
{&__pyx_kp_u_29, __pyx_k_29, sizeof(__pyx_k_29), 0, 1, 0, 0},
{&__pyx_kp_s_3, __pyx_k_3, sizeof(__pyx_k_3), 0, 0, 1, 0},
{&__pyx_kp_u_30, __pyx_k_30, sizeof(__pyx_k_30), 0, 1, 0, 0},
{&__pyx_kp_u_31, __pyx_k_31, sizeof(__pyx_k_31), 0, 1, 0, 0},
{&__pyx_kp_s_4, __pyx_k_4, sizeof(__pyx_k_4), 0, 0, 1, 0},
{&__pyx_kp_s_5, __pyx_k_5, sizeof(__pyx_k_5), 0, 0, 1, 0},
{&__pyx_kp_s_6, __pyx_k_6, sizeof(__pyx_k_6), 0, 0, 1, 0},
{&__pyx_kp_s_8, __pyx_k_8, sizeof(__pyx_k_8), 0, 0, 1, 0},
{&__pyx_kp_s_9, __pyx_k_9, sizeof(__pyx_k_9), 0, 0, 1, 0},
{&__pyx_n_s__BallTree, __pyx_k__BallTree, sizeof(__pyx_k__BallTree), 0, 0, 1, 1},
{&__pyx_n_s__C, __pyx_k__C, sizeof(__pyx_k__C), 0, 0, 1, 1},
{&__pyx_n_s__DTYPE, __pyx_k__DTYPE, sizeof(__pyx_k__DTYPE), 0, 0, 1, 1},
{&__pyx_n_s__ITYPE, __pyx_k__ITYPE, sizeof(__pyx_k__ITYPE), 0, 0, 1, 1},
{&__pyx_n_s__RuntimeError, __pyx_k__RuntimeError, sizeof(__pyx_k__RuntimeError), 0, 0, 1, 1},
{&__pyx_n_s__ValueError, __pyx_k__ValueError, sizeof(__pyx_k__ValueError), 0, 0, 1, 1},
{&__pyx_n_s__X, __pyx_k__X, sizeof(__pyx_k__X), 0, 0, 1, 1},
{&__pyx_n_s____getstate__, __pyx_k____getstate__, sizeof(__pyx_k____getstate__), 0, 0, 1, 1},
{&__pyx_n_s____main__, __pyx_k____main__, sizeof(__pyx_k____main__), 0, 0, 1, 1},
{&__pyx_n_s____new__, __pyx_k____new__, sizeof(__pyx_k____new__), 0, 0, 1, 1},
{&__pyx_n_s____reduce__, __pyx_k____reduce__, sizeof(__pyx_k____reduce__), 0, 0, 1, 1},
{&__pyx_n_s____setstate__, __pyx_k____setstate__, sizeof(__pyx_k____setstate__), 0, 0, 1, 1},
{&__pyx_n_s____test__, __pyx_k____test__, sizeof(__pyx_k____test__), 0, 0, 1, 1},
{&__pyx_n_s__arange, __pyx_k__arange, sizeof(__pyx_k__arange), 0, 0, 1, 1},
{&__pyx_n_s__asarray, __pyx_k__asarray, sizeof(__pyx_k__asarray), 0, 0, 1, 1},
{&__pyx_n_s__atleast_1d, __pyx_k__atleast_1d, sizeof(__pyx_k__atleast_1d), 0, 0, 1, 1},
{&__pyx_n_s__atleast_2d, __pyx_k__atleast_2d, sizeof(__pyx_k__atleast_2d), 0, 0, 1, 1},
{&__pyx_n_s__base, __pyx_k__base, sizeof(__pyx_k__base), 0, 0, 1, 1},
{&__pyx_n_s__buf, __pyx_k__buf, sizeof(__pyx_k__buf), 0, 0, 1, 1},
{&__pyx_n_s__build_tree_, __pyx_k__build_tree_, sizeof(__pyx_k__build_tree_), 0, 0, 1, 1},
{&__pyx_n_s__byteorder, __pyx_k__byteorder, sizeof(__pyx_k__byteorder), 0, 0, 1, 1},
{&__pyx_n_s__c, __pyx_k__c, sizeof(__pyx_k__c), 0, 0, 1, 1},
{&__pyx_n_s__copy, __pyx_k__copy, sizeof(__pyx_k__copy), 0, 0, 1, 1},
{&__pyx_n_s__count_only, __pyx_k__count_only, sizeof(__pyx_k__count_only), 0, 0, 1, 1},
{&__pyx_n_s__data, __pyx_k__data, sizeof(__pyx_k__data), 0, 0, 1, 1},
{&__pyx_n_s__descr, __pyx_k__descr, sizeof(__pyx_k__descr), 0, 0, 1, 1},
{&__pyx_n_s__dist_p_LB, __pyx_k__dist_p_LB, sizeof(__pyx_k__dist_p_LB), 0, 0, 1, 1},
{&__pyx_n_s__double, __pyx_k__double, sizeof(__pyx_k__double), 0, 0, 1, 1},
{&__pyx_n_s__dtype, __pyx_k__dtype, sizeof(__pyx_k__dtype), 0, 0, 1, 1},
{&__pyx_n_s__empty, __pyx_k__empty, sizeof(__pyx_k__empty), 0, 0, 1, 1},
{&__pyx_n_s__enumerate, __pyx_k__enumerate, sizeof(__pyx_k__enumerate), 0, 0, 1, 1},
{&__pyx_n_s__fields, __pyx_k__fields, sizeof(__pyx_k__fields), 0, 0, 1, 1},
{&__pyx_n_s__float64, __pyx_k__float64, sizeof(__pyx_k__float64), 0, 0, 1, 1},
{&__pyx_n_s__format, __pyx_k__format, sizeof(__pyx_k__format), 0, 0, 1, 1},
{&__pyx_n_s__heap, __pyx_k__heap, sizeof(__pyx_k__heap), 0, 0, 1, 1},
{&__pyx_n_s__i_node, __pyx_k__i_node, sizeof(__pyx_k__i_node), 0, 0, 1, 1},
{&__pyx_n_s__idx_array, __pyx_k__idx_array, sizeof(__pyx_k__idx_array), 0, 0, 1, 1},
{&__pyx_n_s__idx_end, __pyx_k__idx_end, sizeof(__pyx_k__idx_end), 0, 0, 1, 1},
{&__pyx_n_s__idx_start, __pyx_k__idx_start, sizeof(__pyx_k__idx_start), 0, 0, 1, 1},
{&__pyx_n_s__inf, __pyx_k__inf, sizeof(__pyx_k__inf), 0, 0, 1, 1},
{&__pyx_n_s__int32, __pyx_k__int32, sizeof(__pyx_k__int32), 0, 0, 1, 1},
{&__pyx_n_s__is_leaf, __pyx_k__is_leaf, sizeof(__pyx_k__is_leaf), 0, 0, 1, 1},
{&__pyx_n_s__itemsize, __pyx_k__itemsize, sizeof(__pyx_k__itemsize), 0, 0, 1, 1},
{&__pyx_n_s__k, __pyx_k__k, sizeof(__pyx_k__k), 0, 0, 1, 1},
{&__pyx_n_s__leaf_size, __pyx_k__leaf_size, sizeof(__pyx_k__leaf_size), 0, 0, 1, 1},
{&__pyx_n_s__log2, __pyx_k__log2, sizeof(__pyx_k__log2), 0, 0, 1, 1},
{&__pyx_n_s__n, __pyx_k__n, sizeof(__pyx_k__n), 0, 0, 1, 1},
{&__pyx_n_s__n_levels, __pyx_k__n_levels, sizeof(__pyx_k__n_levels), 0, 0, 1, 1},
{&__pyx_n_s__n_nodes, __pyx_k__n_nodes, sizeof(__pyx_k__n_nodes), 0, 0, 1, 1},
{&__pyx_n_s__names, __pyx_k__names, sizeof(__pyx_k__names), 0, 0, 1, 1},
{&__pyx_n_s__ndim, __pyx_k__ndim, sizeof(__pyx_k__ndim), 0, 0, 1, 1},
{&__pyx_n_s__newObj, __pyx_k__newObj, sizeof(__pyx_k__newObj), 0, 0, 1, 1},
{&__pyx_n_s__node_centroid_arr, __pyx_k__node_centroid_arr, sizeof(__pyx_k__node_centroid_arr), 0, 0, 1, 1},
{&__pyx_n_s__node_info_arr, __pyx_k__node_info_arr, sizeof(__pyx_k__node_info_arr), 0, 0, 1, 1},
{&__pyx_n_s__np, __pyx_k__np, sizeof(__pyx_k__np), 0, 0, 1, 1},
{&__pyx_n_s__numpy, __pyx_k__numpy, sizeof(__pyx_k__numpy), 0, 0, 1, 1},
{&__pyx_n_s__obj, __pyx_k__obj, sizeof(__pyx_k__obj), 0, 0, 1, 1},
{&__pyx_n_s__object, __pyx_k__object, sizeof(__pyx_k__object), 0, 0, 1, 1},
{&__pyx_n_s__ones, __pyx_k__ones, sizeof(__pyx_k__ones), 0, 0, 1, 1},
{&__pyx_n_s__order, __pyx_k__order, sizeof(__pyx_k__order), 0, 0, 1, 1},
{&__pyx_n_s__p, __pyx_k__p, sizeof(__pyx_k__p), 0, 0, 1, 1},
{&__pyx_n_s__query, __pyx_k__query, sizeof(__pyx_k__query), 0, 0, 1, 1},
{&__pyx_n_s__query_one_, __pyx_k__query_one_, sizeof(__pyx_k__query_one_), 0, 0, 1, 1},
{&__pyx_n_s__query_radius, __pyx_k__query_radius, sizeof(__pyx_k__query_radius), 0, 0, 1, 1},
{&__pyx_n_s__query_radius_count_, __pyx_k__query_radius_count_, sizeof(__pyx_k__query_radius_count_), 0, 0, 1, 1},
{&__pyx_n_s__r, __pyx_k__r, sizeof(__pyx_k__r), 0, 0, 1, 1},
{&__pyx_n_s__radius, __pyx_k__radius, sizeof(__pyx_k__radius), 0, 0, 1, 1},
{&__pyx_n_s__range, __pyx_k__range, sizeof(__pyx_k__range), 0, 0, 1, 1},
{&__pyx_n_s__readonly, __pyx_k__readonly, sizeof(__pyx_k__readonly), 0, 0, 1, 1},
{&__pyx_n_s__reshape, __pyx_k__reshape, sizeof(__pyx_k__reshape), 0, 0, 1, 1},
{&__pyx_n_s__return_distance, __pyx_k__return_distance, sizeof(__pyx_k__return_distance), 0, 0, 1, 1},
{&__pyx_n_s__shape, __pyx_k__shape, sizeof(__pyx_k__shape), 0, 0, 1, 1},
{&__pyx_n_s__size, __pyx_k__size, sizeof(__pyx_k__size), 0, 0, 1, 1},
{&__pyx_n_s__sort_results, __pyx_k__sort_results, sizeof(__pyx_k__sort_results), 0, 0, 1, 1},
{&__pyx_n_s__strides, __pyx_k__strides, sizeof(__pyx_k__strides), 0, 0, 1, 1},
{&__pyx_n_s__suboffsets, __pyx_k__suboffsets, sizeof(__pyx_k__suboffsets), 0, 0, 1, 1},
{&__pyx_n_s__type_num, __pyx_k__type_num, sizeof(__pyx_k__type_num), 0, 0, 1, 1},
{&__pyx_n_s__zeros, __pyx_k__zeros, sizeof(__pyx_k__zeros), 0, 0, 1, 1},
{0, 0, 0, 0, 0, 0, 0}
};
static int __Pyx_InitCachedBuiltins(void) {
__pyx_builtin_ValueError = __Pyx_GetName(__pyx_b, __pyx_n_s__ValueError); if (!__pyx_builtin_ValueError) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 360; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_builtin_enumerate = __Pyx_GetName(__pyx_b, __pyx_n_s__enumerate); if (!__pyx_builtin_enumerate) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 624; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_builtin_range = __Pyx_GetName(__pyx_b, __pyx_n_s__range); if (!__pyx_builtin_range) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 219; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_builtin_RuntimeError = __Pyx_GetName(__pyx_b, __pyx_n_s__RuntimeError); if (!__pyx_builtin_RuntimeError) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 787; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
return 0;
__pyx_L1_error:;
return -1;
}
static int __Pyx_InitGlobals(void) {
if (__Pyx_InitStrings(__pyx_string_tab) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
__pyx_int_0 = PyInt_FromLong(0); if (unlikely(!__pyx_int_0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
__pyx_int_1 = PyInt_FromLong(1); if (unlikely(!__pyx_int_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
__pyx_int_5 = PyInt_FromLong(5); if (unlikely(!__pyx_int_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
__pyx_int_neg_1 = PyInt_FromLong(-1); if (unlikely(!__pyx_int_neg_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
__pyx_int_15 = PyInt_FromLong(15); if (unlikely(!__pyx_int_15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
return 0;
__pyx_L1_error:;
return -1;
}
#if PY_MAJOR_VERSION < 3
PyMODINIT_FUNC initball_tree(void); /*proto*/
PyMODINIT_FUNC initball_tree(void)
#else
PyMODINIT_FUNC PyInit_ball_tree(void); /*proto*/
PyMODINIT_FUNC PyInit_ball_tree(void)
#endif
{
PyObject *__pyx_t_1 = NULL;
PyObject *__pyx_t_2 = NULL;
__pyx_t_7sklearn_9ball_tree_DTYPE_t __pyx_t_3;
PyObject *__pyx_t_4 = NULL;
#if CYTHON_REFNANNY
void* __pyx_refnanny = NULL;
__Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny");
if (!__Pyx_RefNanny) {
PyErr_Clear();
__Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny");
if (!__Pyx_RefNanny)
Py_FatalError("failed to import 'refnanny' module");
}
__pyx_refnanny = __Pyx_RefNanny->SetupContext("PyMODINIT_FUNC PyInit_ball_tree(void)", __LINE__, __FILE__);
#endif
__pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_bytes)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
#ifdef __pyx_binding_PyCFunctionType_USED
if (__pyx_binding_PyCFunctionType_init() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
#endif
/*--- Library function declarations ---*/
/*--- Threads initialization code ---*/
#if defined(__PYX_FORCE_INIT_THREADS) && __PYX_FORCE_INIT_THREADS
#ifdef WITH_THREAD /* Python build with threading support? */
PyEval_InitThreads();
#endif
#endif
/*--- Module creation code ---*/
#if PY_MAJOR_VERSION < 3
__pyx_m = Py_InitModule4(__Pyx_NAMESTR("ball_tree"), __pyx_methods, __Pyx_DOCSTR(__pyx_k_26), 0, PYTHON_API_VERSION);
#else
__pyx_m = PyModule_Create(&__pyx_moduledef);
#endif
if (!__pyx_m) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
#if PY_MAJOR_VERSION < 3
Py_INCREF(__pyx_m);
#endif
__pyx_b = PyImport_AddModule(__Pyx_NAMESTR(__Pyx_BUILTIN_MODULE_NAME));
if (!__pyx_b) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
if (__Pyx_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
/*--- Initialize various global constants etc. ---*/
if (unlikely(__Pyx_InitGlobals() < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
if (__pyx_module_is_main_sklearn__ball_tree) {
if (__Pyx_SetAttrString(__pyx_m, "__name__", __pyx_n_s____main__) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
}
/*--- Builtin init code ---*/
if (unlikely(__Pyx_InitCachedBuiltins() < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/*--- Global init code ---*/
/*--- Function export code ---*/
/*--- Type init code ---*/
__pyx_vtabptr_7sklearn_9ball_tree_BallTree = &__pyx_vtable_7sklearn_9ball_tree_BallTree;
#if PY_MAJOR_VERSION >= 3
__pyx_vtable_7sklearn_9ball_tree_BallTree.build_tree_ = (void (*)(struct __pyx_obj_7sklearn_9ball_tree_BallTree *))__pyx_f_7sklearn_9ball_tree_8BallTree_build_tree_;
__pyx_vtable_7sklearn_9ball_tree_BallTree.query_one_ = (void (*)(struct __pyx_obj_7sklearn_9ball_tree_BallTree *, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_ITYPE_t *, struct __pyx_t_7sklearn_9ball_tree_stack *, __pyx_t_7sklearn_9ball_tree_ITYPE_t))__pyx_f_7sklearn_9ball_tree_8BallTree_query_one_;
__pyx_vtable_7sklearn_9ball_tree_BallTree.query_radius_count_ = (__pyx_t_7sklearn_9ball_tree_ITYPE_t (*)(struct __pyx_obj_7sklearn_9ball_tree_BallTree *, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_DTYPE_t, struct __pyx_t_7sklearn_9ball_tree_stack *))__pyx_f_7sklearn_9ball_tree_8BallTree_query_radius_count_;
__pyx_vtable_7sklearn_9ball_tree_BallTree.query_radius_idx_only_ = (__pyx_t_7sklearn_9ball_tree_ITYPE_t (*)(struct __pyx_obj_7sklearn_9ball_tree_BallTree *, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_DTYPE_t, __pyx_t_7sklearn_9ball_tree_ITYPE_t *, struct __pyx_t_7sklearn_9ball_tree_stack *))__pyx_f_7sklearn_9ball_tree_8BallTree_query_radius_idx_only_;
__pyx_vtable_7sklearn_9ball_tree_BallTree.query_radius_distances_ = (__pyx_t_7sklearn_9ball_tree_ITYPE_t (*)(struct __pyx_obj_7sklearn_9ball_tree_BallTree *, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, __pyx_t_7sklearn_9ball_tree_DTYPE_t, __pyx_t_7sklearn_9ball_tree_ITYPE_t *, __pyx_t_7sklearn_9ball_tree_DTYPE_t *, struct __pyx_t_7sklearn_9ball_tree_stack *))__pyx_f_7sklearn_9ball_tree_8BallTree_query_radius_distances_;
#else
*(void(**)(void))&__pyx_vtable_7sklearn_9ball_tree_BallTree.build_tree_ = (void(*)(void))__pyx_f_7sklearn_9ball_tree_8BallTree_build_tree_;
*(void(**)(void))&__pyx_vtable_7sklearn_9ball_tree_BallTree.query_one_ = (void(*)(void))__pyx_f_7sklearn_9ball_tree_8BallTree_query_one_;
*(void(**)(void))&__pyx_vtable_7sklearn_9ball_tree_BallTree.query_radius_count_ = (void(*)(void))__pyx_f_7sklearn_9ball_tree_8BallTree_query_radius_count_;
*(void(**)(void))&__pyx_vtable_7sklearn_9ball_tree_BallTree.query_radius_idx_only_ = (void(*)(void))__pyx_f_7sklearn_9ball_tree_8BallTree_query_radius_idx_only_;
*(void(**)(void))&__pyx_vtable_7sklearn_9ball_tree_BallTree.query_radius_distances_ = (void(*)(void))__pyx_f_7sklearn_9ball_tree_8BallTree_query_radius_distances_;
#endif
if (PyType_Ready(&__pyx_type_7sklearn_9ball_tree_BallTree) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 395; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
if (__Pyx_SetVtable(__pyx_type_7sklearn_9ball_tree_BallTree.tp_dict, __pyx_vtabptr_7sklearn_9ball_tree_BallTree) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 395; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
if (__Pyx_SetAttrString(__pyx_m, "BallTree", (PyObject *)&__pyx_type_7sklearn_9ball_tree_BallTree) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 395; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_ptype_7sklearn_9ball_tree_BallTree = &__pyx_type_7sklearn_9ball_tree_BallTree;
/*--- Type import code ---*/
__pyx_ptype_5numpy_dtype = __Pyx_ImportType("numpy", "dtype", sizeof(PyArray_Descr), 0); if (unlikely(!__pyx_ptype_5numpy_dtype)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 149; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_ptype_5numpy_flatiter = __Pyx_ImportType("numpy", "flatiter", sizeof(PyArrayIterObject), 0); if (unlikely(!__pyx_ptype_5numpy_flatiter)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 159; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_ptype_5numpy_broadcast = __Pyx_ImportType("numpy", "broadcast", sizeof(PyArrayMultiIterObject), 0); if (unlikely(!__pyx_ptype_5numpy_broadcast)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 163; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_ptype_5numpy_ndarray = __Pyx_ImportType("numpy", "ndarray", sizeof(PyArrayObject), 0); if (unlikely(!__pyx_ptype_5numpy_ndarray)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 172; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__pyx_ptype_5numpy_ufunc = __Pyx_ImportType("numpy", "ufunc", sizeof(PyUFuncObject), 0); if (unlikely(!__pyx_ptype_5numpy_ufunc)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 849; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
/*--- Function import code ---*/
/*--- Execution code ---*/
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":190
* """
*
* import numpy as np # <<<<<<<<<<<<<<
*
* cimport numpy as np
*/
__pyx_t_1 = __Pyx_Import(((PyObject *)__pyx_n_s__numpy), 0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 190; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
if (PyObject_SetAttr(__pyx_m, __pyx_n_s__np, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 190; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":200
* #
* # type used for data
* DTYPE = np.float64 # <<<<<<<<<<<<<<
* ctypedef np.float64_t DTYPE_t
*
*/
__pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 200; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__float64); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 200; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
if (PyObject_SetAttr(__pyx_m, __pyx_n_s__DTYPE, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 200; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":204
*
* # type used for indices & counts
* ITYPE = np.int32 # <<<<<<<<<<<<<<
* ctypedef np.int32_t ITYPE_t
*
*/
__pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 204; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_t_1 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__int32); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 204; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
if (PyObject_SetAttr(__pyx_m, __pyx_n_s__ITYPE, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 204; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":208
*
* # infinity
* cdef DTYPE_t infinity = np.inf # <<<<<<<<<<<<<<
*
*
*/
__pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__np); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 208; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__inf); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 208; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_3 = __pyx_PyFloat_AsDouble(__pyx_t_2); if (unlikely((__pyx_t_3 == (npy_float64)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 208; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
__pyx_v_7sklearn_9ball_tree_infinity = __pyx_t_3;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":544
* self.n_nodes = state[7]
*
* def query(self, X, k=1, return_distance=True): # <<<<<<<<<<<<<<
* """
* query(X, k=1, return_distance=True)
*/
__pyx_t_2 = __Pyx_PyBool_FromLong(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 544; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_k_7 = __pyx_t_2;
__Pyx_GIVEREF(__pyx_t_2);
__pyx_t_2 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":644
* return idx_array.reshape((orig_shape[:-1]) + (k,))
*
* def query_radius(self, X, r, return_distance=False, # <<<<<<<<<<<<<<
* count_only=False, sort_results=False):
* """
*/
__pyx_t_2 = __Pyx_PyBool_FromLong(0); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 644; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_k_10 = __pyx_t_2;
__Pyx_GIVEREF(__pyx_t_2);
__pyx_t_2 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":645
*
* def query_radius(self, X, r, return_distance=False,
* count_only=False, sort_results=False): # <<<<<<<<<<<<<<
* """
* query_radius(self, X, r, count_only = False):
*/
__pyx_t_2 = __Pyx_PyBool_FromLong(0); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 645; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_k_11 = __pyx_t_2;
__Pyx_GIVEREF(__pyx_t_2);
__pyx_t_2 = 0;
__pyx_t_2 = __Pyx_PyBool_FromLong(0); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 645; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_2);
__pyx_k_12 = __pyx_t_2;
__Pyx_GIVEREF(__pyx_t_2);
__pyx_t_2 = 0;
/* "/home/fabian/dev/scikit-learn/sklearn/ball_tree.pyx":2
*
* # Author: Jake Vanderplas <vanderplas@astro.washington.edu> # <<<<<<<<<<<<<<
* # License: BSD
*
*/
__pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(((PyObject *)__pyx_t_2));
__pyx_t_1 = PyObject_GetAttr(__pyx_m, __pyx_n_s__BallTree); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_4 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s____reduce__); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = __Pyx_GetAttrString(__pyx_t_4, "__doc__"); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_kp_u_27), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = PyObject_GetAttr(__pyx_m, __pyx_n_s__BallTree); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_4 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s____getstate__); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = __Pyx_GetAttrString(__pyx_t_4, "__doc__"); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_kp_u_28), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = PyObject_GetAttr(__pyx_m, __pyx_n_s__BallTree); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_4 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s____setstate__); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = __Pyx_GetAttrString(__pyx_t_4, "__doc__"); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_kp_u_29), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = PyObject_GetAttr(__pyx_m, __pyx_n_s__BallTree); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_4 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__query); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = __Pyx_GetAttrString(__pyx_t_4, "__doc__"); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_kp_u_30), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = PyObject_GetAttr(__pyx_m, __pyx_n_s__BallTree); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__pyx_t_4 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__query_radius); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_4);
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
__pyx_t_1 = __Pyx_GetAttrString(__pyx_t_4, "__doc__"); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_kp_u_31), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
if (PyObject_SetAttr(__pyx_m, __pyx_n_s____test__, ((PyObject *)__pyx_t_2)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
/* "/home/fabian/envs/p27/lib/python2.7/site-packages/Cython-0.13-py2.7-linux-x86_64.egg/Cython/Includes/libc/stdio.pxd":1
* # 7.19 Input/output <stdio.h> # <<<<<<<<<<<<<<
*
* cdef extern from *:
*/
goto __pyx_L0;
__pyx_L1_error:;
__Pyx_XDECREF(__pyx_t_1);
__Pyx_XDECREF(__pyx_t_2);
__Pyx_XDECREF(__pyx_t_4);
if (__pyx_m) {
__Pyx_AddTraceback("init sklearn.ball_tree");
Py_DECREF(__pyx_m); __pyx_m = 0;
} else if (!PyErr_Occurred()) {
PyErr_SetString(PyExc_ImportError, "init sklearn.ball_tree");
}
__pyx_L0:;
__Pyx_RefNannyFinishContext();
#if PY_MAJOR_VERSION < 3
return;
#else
return __pyx_m;
#endif
}
/* Runtime support code */
static PyObject *__Pyx_GetName(PyObject *dict, PyObject *name) {
PyObject *result;
result = PyObject_GetAttr(dict, name);
if (!result)
PyErr_SetObject(PyExc_NameError, name);
return result;
}
static void __Pyx_RaiseArgtupleInvalid(
const char* func_name,
int exact,
Py_ssize_t num_min,
Py_ssize_t num_max,
Py_ssize_t num_found)
{
Py_ssize_t num_expected;
const char *number, *more_or_less;
if (num_found < num_min) {
num_expected = num_min;
more_or_less = "at least";
} else {
num_expected = num_max;
more_or_less = "at most";
}
if (exact) {
more_or_less = "exactly";
}
number = (num_expected == 1) ? "" : "s";
PyErr_Format(PyExc_TypeError,
#if PY_VERSION_HEX < 0x02050000
"%s() takes %s %d positional argument%s (%d given)",
#else
"%s() takes %s %zd positional argument%s (%zd given)",
#endif
func_name, more_or_less, num_expected, number, num_found);
}
static CYTHON_INLINE int __Pyx_CheckKeywordStrings(
PyObject *kwdict,
const char* function_name,
int kw_allowed)
{
PyObject* key = 0;
Py_ssize_t pos = 0;
while (PyDict_Next(kwdict, &pos, &key, 0)) {
#if PY_MAJOR_VERSION < 3
if (unlikely(!PyString_CheckExact(key)) && unlikely(!PyString_Check(key)))
#else
if (unlikely(!PyUnicode_CheckExact(key)) && unlikely(!PyUnicode_Check(key)))
#endif
goto invalid_keyword_type;
}
if ((!kw_allowed) && unlikely(key))
goto invalid_keyword;
return 1;
invalid_keyword_type:
PyErr_Format(PyExc_TypeError,
"%s() keywords must be strings", function_name);
return 0;
invalid_keyword:
PyErr_Format(PyExc_TypeError,
#if PY_MAJOR_VERSION < 3
"%s() got an unexpected keyword argument '%s'",
function_name, PyString_AsString(key));
#else
"%s() got an unexpected keyword argument '%U'",
function_name, key);
#endif
return 0;
}
static CYTHON_INLINE int __Pyx_TypeTest(PyObject *obj, PyTypeObject *type) {
if (unlikely(!type)) {
PyErr_Format(PyExc_SystemError, "Missing type object");
return 0;
}
if (likely(PyObject_TypeCheck(obj, type)))
return 1;
PyErr_Format(PyExc_TypeError, "Cannot convert %.200s to %.200s",
Py_TYPE(obj)->tp_name, type->tp_name);
return 0;
}
static void __Pyx_RaiseDoubleKeywordsError(
const char* func_name,
PyObject* kw_name)
{
PyErr_Format(PyExc_TypeError,
#if PY_MAJOR_VERSION >= 3
"%s() got multiple values for keyword argument '%U'", func_name, kw_name);
#else
"%s() got multiple values for keyword argument '%s'", func_name,
PyString_AS_STRING(kw_name));
#endif
}
static int __Pyx_ParseOptionalKeywords(
PyObject *kwds,
PyObject **argnames[],
PyObject *kwds2,
PyObject *values[],
Py_ssize_t num_pos_args,
const char* function_name)
{
PyObject *key = 0, *value = 0;
Py_ssize_t pos = 0;
PyObject*** name;
PyObject*** first_kw_arg = argnames + num_pos_args;
while (PyDict_Next(kwds, &pos, &key, &value)) {
name = first_kw_arg;
while (*name && (**name != key)) name++;
if (*name) {
values[name-argnames] = value;
} else {
#if PY_MAJOR_VERSION < 3
if (unlikely(!PyString_CheckExact(key)) && unlikely(!PyString_Check(key))) {
#else
if (unlikely(!PyUnicode_CheckExact(key)) && unlikely(!PyUnicode_Check(key))) {
#endif
goto invalid_keyword_type;
} else {
for (name = first_kw_arg; *name; name++) {
#if PY_MAJOR_VERSION >= 3
if (PyUnicode_GET_SIZE(**name) == PyUnicode_GET_SIZE(key) &&
PyUnicode_Compare(**name, key) == 0) break;
#else
if (PyString_GET_SIZE(**name) == PyString_GET_SIZE(key) &&
_PyString_Eq(**name, key)) break;
#endif
}
if (*name) {
values[name-argnames] = value;
} else {
/* unexpected keyword found */
for (name=argnames; name != first_kw_arg; name++) {
if (**name == key) goto arg_passed_twice;
#if PY_MAJOR_VERSION >= 3
if (PyUnicode_GET_SIZE(**name) == PyUnicode_GET_SIZE(key) &&
PyUnicode_Compare(**name, key) == 0) goto arg_passed_twice;
#else
if (PyString_GET_SIZE(**name) == PyString_GET_SIZE(key) &&
_PyString_Eq(**name, key)) goto arg_passed_twice;
#endif
}
if (kwds2) {
if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad;
} else {
goto invalid_keyword;
}
}
}
}
}
return 0;
arg_passed_twice:
__Pyx_RaiseDoubleKeywordsError(function_name, **name);
goto bad;
invalid_keyword_type:
PyErr_Format(PyExc_TypeError,
"%s() keywords must be strings", function_name);
goto bad;
invalid_keyword:
PyErr_Format(PyExc_TypeError,
#if PY_MAJOR_VERSION < 3
"%s() got an unexpected keyword argument '%s'",
function_name, PyString_AsString(key));
#else
"%s() got an unexpected keyword argument '%U'",
function_name, key);
#endif
bad:
return -1;
}
static CYTHON_INLINE long __Pyx_div_long(long a, long b) {
long q = a / b;
long r = a - q*b;
q -= ((r != 0) & ((r ^ b) < 0));
return q;
}
static CYTHON_INLINE void __Pyx_RaiseNoneNotIterableError(void) {
PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable");
}
static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) {
PyErr_Format(PyExc_ValueError,
#if PY_VERSION_HEX < 0x02050000
"need more than %d value%s to unpack", (int)index,
#else
"need more than %zd value%s to unpack", index,
#endif
(index == 1) ? "" : "s");
}
static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected) {
PyErr_Format(PyExc_ValueError,
#if PY_VERSION_HEX < 0x02050000
"too many values to unpack (expected %d)", (int)expected);
#else
"too many values to unpack (expected %zd)", expected);
#endif
}
static void __Pyx_UnpackTupleError(PyObject *t, Py_ssize_t index) {
if (t == Py_None) {
__Pyx_RaiseNoneNotIterableError();
} else if (PyTuple_GET_SIZE(t) < index) {
__Pyx_RaiseNeedMoreValuesError(PyTuple_GET_SIZE(t));
} else {
__Pyx_RaiseTooManyValuesError(index);
}
}
static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list) {
PyObject *py_import = 0;
PyObject *empty_list = 0;
PyObject *module = 0;
PyObject *global_dict = 0;
PyObject *empty_dict = 0;
PyObject *list;
py_import = __Pyx_GetAttrString(__pyx_b, "__import__");
if (!py_import)
goto bad;
if (from_list)
list = from_list;
else {
empty_list = PyList_New(0);
if (!empty_list)
goto bad;
list = empty_list;
}
global_dict = PyModule_GetDict(__pyx_m);
if (!global_dict)
goto bad;
empty_dict = PyDict_New();
if (!empty_dict)
goto bad;
module = PyObject_CallFunctionObjArgs(py_import,
name, global_dict, empty_dict, list, NULL);
bad:
Py_XDECREF(empty_list);
Py_XDECREF(py_import);
Py_XDECREF(empty_dict);
return module;
}
static CYTHON_INLINE void __Pyx_ErrRestore(PyObject *type, PyObject *value, PyObject *tb) {
PyObject *tmp_type, *tmp_value, *tmp_tb;
PyThreadState *tstate = PyThreadState_GET();
tmp_type = tstate->curexc_type;
tmp_value = tstate->curexc_value;
tmp_tb = tstate->curexc_traceback;
tstate->curexc_type = type;
tstate->curexc_value = value;
tstate->curexc_traceback = tb;
Py_XDECREF(tmp_type);
Py_XDECREF(tmp_value);
Py_XDECREF(tmp_tb);
}
static CYTHON_INLINE void __Pyx_ErrFetch(PyObject **type, PyObject **value, PyObject **tb) {
PyThreadState *tstate = PyThreadState_GET();
*type = tstate->curexc_type;
*value = tstate->curexc_value;
*tb = tstate->curexc_traceback;
tstate->curexc_type = 0;
tstate->curexc_value = 0;
tstate->curexc_traceback = 0;
}
#if PY_MAJOR_VERSION < 3
static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb) {
Py_XINCREF(type);
Py_XINCREF(value);
Py_XINCREF(tb);
/* First, check the traceback argument, replacing None with NULL. */
if (tb == Py_None) {
Py_DECREF(tb);
tb = 0;
}
else if (tb != NULL && !PyTraceBack_Check(tb)) {
PyErr_SetString(PyExc_TypeError,
"raise: arg 3 must be a traceback or None");
goto raise_error;
}
/* Next, replace a missing value with None */
if (value == NULL) {
value = Py_None;
Py_INCREF(value);
}
#if PY_VERSION_HEX < 0x02050000
if (!PyClass_Check(type))
#else
if (!PyType_Check(type))
#endif
{
/* Raising an instance. The value should be a dummy. */
if (value != Py_None) {
PyErr_SetString(PyExc_TypeError,
"instance exception may not have a separate value");
goto raise_error;
}
/* Normalize to raise <class>, <instance> */
Py_DECREF(value);
value = type;
#if PY_VERSION_HEX < 0x02050000
if (PyInstance_Check(type)) {
type = (PyObject*) ((PyInstanceObject*)type)->in_class;
Py_INCREF(type);
}
else {
type = 0;
PyErr_SetString(PyExc_TypeError,
"raise: exception must be an old-style class or instance");
goto raise_error;
}
#else
type = (PyObject*) Py_TYPE(type);
Py_INCREF(type);
if (!PyType_IsSubtype((PyTypeObject *)type, (PyTypeObject *)PyExc_BaseException)) {
PyErr_SetString(PyExc_TypeError,
"raise: exception class must be a subclass of BaseException");
goto raise_error;
}
#endif
}
__Pyx_ErrRestore(type, value, tb);
return;
raise_error:
Py_XDECREF(value);
Py_XDECREF(type);
Py_XDECREF(tb);
return;
}
#else /* Python 3+ */
static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb) {
if (tb == Py_None) {
tb = 0;
} else if (tb && !PyTraceBack_Check(tb)) {
PyErr_SetString(PyExc_TypeError,
"raise: arg 3 must be a traceback or None");
goto bad;
}
if (value == Py_None)
value = 0;
if (PyExceptionInstance_Check(type)) {
if (value) {
PyErr_SetString(PyExc_TypeError,
"instance exception may not have a separate value");
goto bad;
}
value = type;
type = (PyObject*) Py_TYPE(value);
} else if (!PyExceptionClass_Check(type)) {
PyErr_SetString(PyExc_TypeError,
"raise: exception class must be a subclass of BaseException");
goto bad;
}
PyErr_SetObject(type, value);
if (tb) {
PyThreadState *tstate = PyThreadState_GET();
PyObject* tmp_tb = tstate->curexc_traceback;
if (tb != tmp_tb) {
Py_INCREF(tb);
tstate->curexc_traceback = tb;
Py_XDECREF(tmp_tb);
}
}
bad:
return;
}
#endif
static CYTHON_INLINE npy_int32 __Pyx_PyInt_from_py_npy_int32(PyObject* x) {
const npy_int32 neg_one = (npy_int32)-1, const_zero = (npy_int32)0;
const int is_unsigned = const_zero < neg_one;
if (sizeof(npy_int32) == sizeof(char)) {
if (is_unsigned)
return (npy_int32)__Pyx_PyInt_AsUnsignedChar(x);
else
return (npy_int32)__Pyx_PyInt_AsSignedChar(x);
} else if (sizeof(npy_int32) == sizeof(short)) {
if (is_unsigned)
return (npy_int32)__Pyx_PyInt_AsUnsignedShort(x);
else
return (npy_int32)__Pyx_PyInt_AsSignedShort(x);
} else if (sizeof(npy_int32) == sizeof(int)) {
if (is_unsigned)
return (npy_int32)__Pyx_PyInt_AsUnsignedInt(x);
else
return (npy_int32)__Pyx_PyInt_AsSignedInt(x);
} else if (sizeof(npy_int32) == sizeof(long)) {
if (is_unsigned)
return (npy_int32)__Pyx_PyInt_AsUnsignedLong(x);
else
return (npy_int32)__Pyx_PyInt_AsSignedLong(x);
} else if (sizeof(npy_int32) == sizeof(PY_LONG_LONG)) {
if (is_unsigned)
return (npy_int32)__Pyx_PyInt_AsUnsignedLongLong(x);
else
return (npy_int32)__Pyx_PyInt_AsSignedLongLong(x);
} else {
npy_int32 val;
PyObject *v = __Pyx_PyNumber_Int(x);
#if PY_VERSION_HEX < 0x03000000
if (likely(v) && !PyLong_Check(v)) {
PyObject *tmp = v;
v = PyNumber_Long(tmp);
Py_DECREF(tmp);
}
#endif
if (likely(v)) {
int one = 1; int is_little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&val;
int ret = _PyLong_AsByteArray((PyLongObject *)v,
bytes, sizeof(val),
is_little, !is_unsigned);
Py_DECREF(v);
if (likely(!ret))
return val;
}
return (npy_int32)-1;
}
}
static CYTHON_INLINE long __Pyx_pow_long(long b, long e) {
long t = b;
switch (e) {
case 3:
t *= b;
case 2:
t *= b;
case 1:
return t;
case 0:
return 1;
}
if (unlikely(e<0)) return 0;
t = 1;
while (likely(e)) {
t *= (b * (e&1)) | ((~e)&1); /* 1 or b */
b *= b;
e >>= 1;
}
return t;
}
static CYTHON_INLINE PyObject *__Pyx_PyInt_to_py_npy_int32(npy_int32 val) {
const npy_int32 neg_one = (npy_int32)-1, const_zero = (npy_int32)0;
const int is_unsigned = const_zero < neg_one;
if ((sizeof(npy_int32) == sizeof(char)) ||
(sizeof(npy_int32) == sizeof(short))) {
return PyInt_FromLong((long)val);
} else if ((sizeof(npy_int32) == sizeof(int)) ||
(sizeof(npy_int32) == sizeof(long))) {
if (is_unsigned)
return PyLong_FromUnsignedLong((unsigned long)val);
else
return PyInt_FromLong((long)val);
} else if (sizeof(npy_int32) == sizeof(PY_LONG_LONG)) {
if (is_unsigned)
return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG)val);
else
return PyLong_FromLongLong((PY_LONG_LONG)val);
} else {
int one = 1; int little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&val;
return _PyLong_FromByteArray(bytes, sizeof(npy_int32),
little, !is_unsigned);
}
}
static CYTHON_INLINE PyObject *__Pyx_PyInt_to_py_Py_intptr_t(Py_intptr_t val) {
const Py_intptr_t neg_one = (Py_intptr_t)-1, const_zero = (Py_intptr_t)0;
const int is_unsigned = const_zero < neg_one;
if ((sizeof(Py_intptr_t) == sizeof(char)) ||
(sizeof(Py_intptr_t) == sizeof(short))) {
return PyInt_FromLong((long)val);
} else if ((sizeof(Py_intptr_t) == sizeof(int)) ||
(sizeof(Py_intptr_t) == sizeof(long))) {
if (is_unsigned)
return PyLong_FromUnsignedLong((unsigned long)val);
else
return PyInt_FromLong((long)val);
} else if (sizeof(Py_intptr_t) == sizeof(PY_LONG_LONG)) {
if (is_unsigned)
return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG)val);
else
return PyLong_FromLongLong((PY_LONG_LONG)val);
} else {
int one = 1; int little = (int)*(unsigned char *)&one;
unsigned char *bytes = (unsigned char *)&val;
return _PyLong_FromByteArray(bytes, sizeof(Py_intptr_t),
little, !is_unsigned);
}
}
#if CYTHON_CCOMPLEX
#ifdef __cplusplus
static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float x, float y) {
return ::std::complex< float >(x, y);
}
#else
static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float x, float y) {
return x + y*(__pyx_t_float_complex)_Complex_I;
}
#endif
#else
static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float x, float y) {
__pyx_t_float_complex z;
z.real = x;
z.imag = y;
return z;
}
#endif
#if CYTHON_CCOMPLEX
#else
static CYTHON_INLINE int __Pyx_c_eqf(__pyx_t_float_complex a, __pyx_t_float_complex b) {
return (a.real == b.real) && (a.imag == b.imag);
}
static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_sumf(__pyx_t_float_complex a, __pyx_t_float_complex b) {
__pyx_t_float_complex z;
z.real = a.real + b.real;
z.imag = a.imag + b.imag;
return z;
}
static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_difff(__pyx_t_float_complex a, __pyx_t_float_complex b) {
__pyx_t_float_complex z;
z.real = a.real - b.real;
z.imag = a.imag - b.imag;
return z;
}
static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_prodf(__pyx_t_float_complex a, __pyx_t_float_complex b) {
__pyx_t_float_complex z;
z.real = a.real * b.real - a.imag * b.imag;
z.imag = a.real * b.imag + a.imag * b.real;
return z;
}
static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_quotf(__pyx_t_float_complex a, __pyx_t_float_complex b) {
__pyx_t_float_complex z;
float denom = b.real * b.real + b.imag * b.imag;
z.real = (a.real * b.real + a.imag * b.imag) / denom;
z.imag = (a.imag * b.real - a.real * b.imag) / denom;
return z;
}
static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_negf(__pyx_t_float_complex a) {
__pyx_t_float_complex z;
z.real = -a.real;
z.imag = -a.imag;
return z;
}
static CYTHON_INLINE int __Pyx_c_is_zerof(__pyx_t_float_complex a) {
return (a.real == 0) && (a.imag == 0);
}
static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_conjf(__pyx_t_float_complex a) {
__pyx_t_float_complex z;
z.real = a.real;
z.imag = -a.imag;
return z;
}
/*
static CYTHON_INLINE float __Pyx_c_absf(__pyx_t_float_complex z) {
#if HAVE_HYPOT
return hypotf(z.real, z.imag);
#else
return sqrtf(z.real*z.real + z.imag*z.imag);
#endif
}
*/
#endif
#if CYTHON_CCOMPLEX
#ifdef __cplusplus
static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double x, double y) {
return ::std::complex< double >(x, y);
}
#else
static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double x, double y) {
return x + y*(__pyx_t_double_complex)_Complex_I;
}
#endif
#else
static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double x, double y) {
__pyx_t_double_complex z;
z.real = x;
z.imag = y;
return z;
}
#endif
#if CYTHON_CCOMPLEX
#else
static CYTHON_INLINE int __Pyx_c_eq(__pyx_t_double_complex a, __pyx_t_double_complex b) {
return (a.real == b.real) && (a.imag == b.imag);
}
static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_sum(__pyx_t_double_complex a, __pyx_t_double_complex b) {
__pyx_t_double_complex z;
z.real = a.real + b.real;
z.imag = a.imag + b.imag;
return z;
}
static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_diff(__pyx_t_double_complex a, __pyx_t_double_complex b) {
__pyx_t_double_complex z;
z.real = a.real - b.real;
z.imag = a.imag - b.imag;
return z;
}
static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_prod(__pyx_t_double_complex a, __pyx_t_double_complex b) {
__pyx_t_double_complex z;
z.real = a.real * b.real - a.imag * b.imag;
z.imag = a.real * b.imag + a.imag * b.real;
return z;
}
static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_quot(__pyx_t_double_complex a, __pyx_t_double_complex b) {
__pyx_t_double_complex z;
double denom = b.real * b.real + b.imag * b.imag;
z.real = (a.real * b.real + a.imag * b.imag) / denom;
z.imag = (a.imag * b.real - a.real * b.imag) / denom;
return z;
}
static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_neg(__pyx_t_double_complex a) {
__pyx_t_double_complex z;
z.real = -a.real;
z.imag = -a.imag;
return z;
}
static CYTHON_INLINE int __Pyx_c_is_zero(__pyx_t_double_complex a) {
return (a.real == 0) && (a.imag == 0);
}
static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_conj(__pyx_t_double_complex a) {
__pyx_t_double_complex z;
z.real = a.real;
z.imag = -a.imag;
return z;
}
/*
static CYTHON_INLINE double __Pyx_c_abs(__pyx_t_double_complex z) {
#if HAVE_HYPOT
return hypot(z.real, z.imag);
#else
return sqrt(z.real*z.real + z.imag*z.imag);
#endif
}
*/
#endif
static CYTHON_INLINE unsigned char __Pyx_PyInt_AsUnsignedChar(PyObject* x) {
const unsigned char neg_one = (unsigned char)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
if (sizeof(unsigned char) < sizeof(long)) {
long val = __Pyx_PyInt_AsLong(x);
if (unlikely(val != (long)(unsigned char)val)) {
if (!unlikely(val == -1 && PyErr_Occurred())) {
PyErr_SetString(PyExc_OverflowError,
(is_unsigned && unlikely(val < 0)) ?
"can't convert negative value to unsigned char" :
"value too large to convert to unsigned char");
}
return (unsigned char)-1;
}
return (unsigned char)val;
}
return (unsigned char)__Pyx_PyInt_AsUnsignedLong(x);
}
static CYTHON_INLINE unsigned short __Pyx_PyInt_AsUnsignedShort(PyObject* x) {
const unsigned short neg_one = (unsigned short)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
if (sizeof(unsigned short) < sizeof(long)) {
long val = __Pyx_PyInt_AsLong(x);
if (unlikely(val != (long)(unsigned short)val)) {
if (!unlikely(val == -1 && PyErr_Occurred())) {
PyErr_SetString(PyExc_OverflowError,
(is_unsigned && unlikely(val < 0)) ?
"can't convert negative value to unsigned short" :
"value too large to convert to unsigned short");
}
return (unsigned short)-1;
}
return (unsigned short)val;
}
return (unsigned short)__Pyx_PyInt_AsUnsignedLong(x);
}
static CYTHON_INLINE unsigned int __Pyx_PyInt_AsUnsignedInt(PyObject* x) {
const unsigned int neg_one = (unsigned int)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
if (sizeof(unsigned int) < sizeof(long)) {
long val = __Pyx_PyInt_AsLong(x);
if (unlikely(val != (long)(unsigned int)val)) {
if (!unlikely(val == -1 && PyErr_Occurred())) {
PyErr_SetString(PyExc_OverflowError,
(is_unsigned && unlikely(val < 0)) ?
"can't convert negative value to unsigned int" :
"value too large to convert to unsigned int");
}
return (unsigned int)-1;
}
return (unsigned int)val;
}
return (unsigned int)__Pyx_PyInt_AsUnsignedLong(x);
}
static CYTHON_INLINE char __Pyx_PyInt_AsChar(PyObject* x) {
const char neg_one = (char)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
if (sizeof(char) < sizeof(long)) {
long val = __Pyx_PyInt_AsLong(x);
if (unlikely(val != (long)(char)val)) {
if (!unlikely(val == -1 && PyErr_Occurred())) {
PyErr_SetString(PyExc_OverflowError,
(is_unsigned && unlikely(val < 0)) ?
"can't convert negative value to char" :
"value too large to convert to char");
}
return (char)-1;
}
return (char)val;
}
return (char)__Pyx_PyInt_AsLong(x);
}
static CYTHON_INLINE short __Pyx_PyInt_AsShort(PyObject* x) {
const short neg_one = (short)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
if (sizeof(short) < sizeof(long)) {
long val = __Pyx_PyInt_AsLong(x);
if (unlikely(val != (long)(short)val)) {
if (!unlikely(val == -1 && PyErr_Occurred())) {
PyErr_SetString(PyExc_OverflowError,
(is_unsigned && unlikely(val < 0)) ?
"can't convert negative value to short" :
"value too large to convert to short");
}
return (short)-1;
}
return (short)val;
}
return (short)__Pyx_PyInt_AsLong(x);
}
static CYTHON_INLINE int __Pyx_PyInt_AsInt(PyObject* x) {
const int neg_one = (int)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
if (sizeof(int) < sizeof(long)) {
long val = __Pyx_PyInt_AsLong(x);
if (unlikely(val != (long)(int)val)) {
if (!unlikely(val == -1 && PyErr_Occurred())) {
PyErr_SetString(PyExc_OverflowError,
(is_unsigned && unlikely(val < 0)) ?
"can't convert negative value to int" :
"value too large to convert to int");
}
return (int)-1;
}
return (int)val;
}
return (int)__Pyx_PyInt_AsLong(x);
}
static CYTHON_INLINE signed char __Pyx_PyInt_AsSignedChar(PyObject* x) {
const signed char neg_one = (signed char)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
if (sizeof(signed char) < sizeof(long)) {
long val = __Pyx_PyInt_AsLong(x);
if (unlikely(val != (long)(signed char)val)) {
if (!unlikely(val == -1 && PyErr_Occurred())) {
PyErr_SetString(PyExc_OverflowError,
(is_unsigned && unlikely(val < 0)) ?
"can't convert negative value to signed char" :
"value too large to convert to signed char");
}
return (signed char)-1;
}
return (signed char)val;
}
return (signed char)__Pyx_PyInt_AsSignedLong(x);
}
static CYTHON_INLINE signed short __Pyx_PyInt_AsSignedShort(PyObject* x) {
const signed short neg_one = (signed short)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
if (sizeof(signed short) < sizeof(long)) {
long val = __Pyx_PyInt_AsLong(x);
if (unlikely(val != (long)(signed short)val)) {
if (!unlikely(val == -1 && PyErr_Occurred())) {
PyErr_SetString(PyExc_OverflowError,
(is_unsigned && unlikely(val < 0)) ?
"can't convert negative value to signed short" :
"value too large to convert to signed short");
}
return (signed short)-1;
}
return (signed short)val;
}
return (signed short)__Pyx_PyInt_AsSignedLong(x);
}
static CYTHON_INLINE signed int __Pyx_PyInt_AsSignedInt(PyObject* x) {
const signed int neg_one = (signed int)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
if (sizeof(signed int) < sizeof(long)) {
long val = __Pyx_PyInt_AsLong(x);
if (unlikely(val != (long)(signed int)val)) {
if (!unlikely(val == -1 && PyErr_Occurred())) {
PyErr_SetString(PyExc_OverflowError,
(is_unsigned && unlikely(val < 0)) ?
"can't convert negative value to signed int" :
"value too large to convert to signed int");
}
return (signed int)-1;
}
return (signed int)val;
}
return (signed int)__Pyx_PyInt_AsSignedLong(x);
}
static CYTHON_INLINE int __Pyx_PyInt_AsLongDouble(PyObject* x) {
const int neg_one = (int)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
if (sizeof(int) < sizeof(long)) {
long val = __Pyx_PyInt_AsLong(x);
if (unlikely(val != (long)(int)val)) {
if (!unlikely(val == -1 && PyErr_Occurred())) {
PyErr_SetString(PyExc_OverflowError,
(is_unsigned && unlikely(val < 0)) ?
"can't convert negative value to int" :
"value too large to convert to int");
}
return (int)-1;
}
return (int)val;
}
return (int)__Pyx_PyInt_AsLong(x);
}
static CYTHON_INLINE unsigned long __Pyx_PyInt_AsUnsignedLong(PyObject* x) {
const unsigned long neg_one = (unsigned long)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
#if PY_VERSION_HEX < 0x03000000
if (likely(PyInt_Check(x))) {
long val = PyInt_AS_LONG(x);
if (is_unsigned && unlikely(val < 0)) {
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to unsigned long");
return (unsigned long)-1;
}
return (unsigned long)val;
} else
#endif
if (likely(PyLong_Check(x))) {
if (is_unsigned) {
if (unlikely(Py_SIZE(x) < 0)) {
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to unsigned long");
return (unsigned long)-1;
}
return PyLong_AsUnsignedLong(x);
} else {
return PyLong_AsLong(x);
}
} else {
unsigned long val;
PyObject *tmp = __Pyx_PyNumber_Int(x);
if (!tmp) return (unsigned long)-1;
val = __Pyx_PyInt_AsUnsignedLong(tmp);
Py_DECREF(tmp);
return val;
}
}
static CYTHON_INLINE unsigned PY_LONG_LONG __Pyx_PyInt_AsUnsignedLongLong(PyObject* x) {
const unsigned PY_LONG_LONG neg_one = (unsigned PY_LONG_LONG)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
#if PY_VERSION_HEX < 0x03000000
if (likely(PyInt_Check(x))) {
long val = PyInt_AS_LONG(x);
if (is_unsigned && unlikely(val < 0)) {
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to unsigned PY_LONG_LONG");
return (unsigned PY_LONG_LONG)-1;
}
return (unsigned PY_LONG_LONG)val;
} else
#endif
if (likely(PyLong_Check(x))) {
if (is_unsigned) {
if (unlikely(Py_SIZE(x) < 0)) {
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to unsigned PY_LONG_LONG");
return (unsigned PY_LONG_LONG)-1;
}
return PyLong_AsUnsignedLongLong(x);
} else {
return PyLong_AsLongLong(x);
}
} else {
unsigned PY_LONG_LONG val;
PyObject *tmp = __Pyx_PyNumber_Int(x);
if (!tmp) return (unsigned PY_LONG_LONG)-1;
val = __Pyx_PyInt_AsUnsignedLongLong(tmp);
Py_DECREF(tmp);
return val;
}
}
static CYTHON_INLINE long __Pyx_PyInt_AsLong(PyObject* x) {
const long neg_one = (long)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
#if PY_VERSION_HEX < 0x03000000
if (likely(PyInt_Check(x))) {
long val = PyInt_AS_LONG(x);
if (is_unsigned && unlikely(val < 0)) {
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to long");
return (long)-1;
}
return (long)val;
} else
#endif
if (likely(PyLong_Check(x))) {
if (is_unsigned) {
if (unlikely(Py_SIZE(x) < 0)) {
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to long");
return (long)-1;
}
return PyLong_AsUnsignedLong(x);
} else {
return PyLong_AsLong(x);
}
} else {
long val;
PyObject *tmp = __Pyx_PyNumber_Int(x);
if (!tmp) return (long)-1;
val = __Pyx_PyInt_AsLong(tmp);
Py_DECREF(tmp);
return val;
}
}
static CYTHON_INLINE PY_LONG_LONG __Pyx_PyInt_AsLongLong(PyObject* x) {
const PY_LONG_LONG neg_one = (PY_LONG_LONG)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
#if PY_VERSION_HEX < 0x03000000
if (likely(PyInt_Check(x))) {
long val = PyInt_AS_LONG(x);
if (is_unsigned && unlikely(val < 0)) {
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to PY_LONG_LONG");
return (PY_LONG_LONG)-1;
}
return (PY_LONG_LONG)val;
} else
#endif
if (likely(PyLong_Check(x))) {
if (is_unsigned) {
if (unlikely(Py_SIZE(x) < 0)) {
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to PY_LONG_LONG");
return (PY_LONG_LONG)-1;
}
return PyLong_AsUnsignedLongLong(x);
} else {
return PyLong_AsLongLong(x);
}
} else {
PY_LONG_LONG val;
PyObject *tmp = __Pyx_PyNumber_Int(x);
if (!tmp) return (PY_LONG_LONG)-1;
val = __Pyx_PyInt_AsLongLong(tmp);
Py_DECREF(tmp);
return val;
}
}
static CYTHON_INLINE signed long __Pyx_PyInt_AsSignedLong(PyObject* x) {
const signed long neg_one = (signed long)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
#if PY_VERSION_HEX < 0x03000000
if (likely(PyInt_Check(x))) {
long val = PyInt_AS_LONG(x);
if (is_unsigned && unlikely(val < 0)) {
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to signed long");
return (signed long)-1;
}
return (signed long)val;
} else
#endif
if (likely(PyLong_Check(x))) {
if (is_unsigned) {
if (unlikely(Py_SIZE(x) < 0)) {
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to signed long");
return (signed long)-1;
}
return PyLong_AsUnsignedLong(x);
} else {
return PyLong_AsLong(x);
}
} else {
signed long val;
PyObject *tmp = __Pyx_PyNumber_Int(x);
if (!tmp) return (signed long)-1;
val = __Pyx_PyInt_AsSignedLong(tmp);
Py_DECREF(tmp);
return val;
}
}
static CYTHON_INLINE signed PY_LONG_LONG __Pyx_PyInt_AsSignedLongLong(PyObject* x) {
const signed PY_LONG_LONG neg_one = (signed PY_LONG_LONG)-1, const_zero = 0;
const int is_unsigned = neg_one > const_zero;
#if PY_VERSION_HEX < 0x03000000
if (likely(PyInt_Check(x))) {
long val = PyInt_AS_LONG(x);
if (is_unsigned && unlikely(val < 0)) {
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to signed PY_LONG_LONG");
return (signed PY_LONG_LONG)-1;
}
return (signed PY_LONG_LONG)val;
} else
#endif
if (likely(PyLong_Check(x))) {
if (is_unsigned) {
if (unlikely(Py_SIZE(x) < 0)) {
PyErr_SetString(PyExc_OverflowError,
"can't convert negative value to signed PY_LONG_LONG");
return (signed PY_LONG_LONG)-1;
}
return PyLong_AsUnsignedLongLong(x);
} else {
return PyLong_AsLongLong(x);
}
} else {
signed PY_LONG_LONG val;
PyObject *tmp = __Pyx_PyNumber_Int(x);
if (!tmp) return (signed PY_LONG_LONG)-1;
val = __Pyx_PyInt_AsSignedLongLong(tmp);
Py_DECREF(tmp);
return val;
}
}
static void __Pyx_WriteUnraisable(const char *name) {
PyObject *old_exc, *old_val, *old_tb;
PyObject *ctx;
__Pyx_ErrFetch(&old_exc, &old_val, &old_tb);
#if PY_MAJOR_VERSION < 3
ctx = PyString_FromString(name);
#else
ctx = PyUnicode_FromString(name);
#endif
__Pyx_ErrRestore(old_exc, old_val, old_tb);
if (!ctx) {
PyErr_WriteUnraisable(Py_None);
} else {
PyErr_WriteUnraisable(ctx);
Py_DECREF(ctx);
}
}
static int __Pyx_SetVtable(PyObject *dict, void *vtable) {
#if PY_VERSION_HEX >= 0x02070000 && !(PY_MAJOR_VERSION==3&&PY_MINOR_VERSION==0)
PyObject *ob = PyCapsule_New(vtable, 0, 0);
#else
PyObject *ob = PyCObject_FromVoidPtr(vtable, 0);
#endif
if (!ob)
goto bad;
if (PyDict_SetItemString(dict, "__pyx_vtable__", ob) < 0)
goto bad;
Py_DECREF(ob);
return 0;
bad:
Py_XDECREF(ob);
return -1;
}
#ifndef __PYX_HAVE_RT_ImportType
#define __PYX_HAVE_RT_ImportType
static PyTypeObject *__Pyx_ImportType(const char *module_name, const char *class_name,
long size, int strict)
{
PyObject *py_module = 0;
PyObject *result = 0;
PyObject *py_name = 0;
char warning[200];
py_module = __Pyx_ImportModule(module_name);
if (!py_module)
goto bad;
#if PY_MAJOR_VERSION < 3
py_name = PyString_FromString(class_name);
#else
py_name = PyUnicode_FromString(class_name);
#endif
if (!py_name)
goto bad;
result = PyObject_GetAttr(py_module, py_name);
Py_DECREF(py_name);
py_name = 0;
Py_DECREF(py_module);
py_module = 0;
if (!result)
goto bad;
if (!PyType_Check(result)) {
PyErr_Format(PyExc_TypeError,
"%s.%s is not a type object",
module_name, class_name);
goto bad;
}
if (!strict && ((PyTypeObject *)result)->tp_basicsize > size) {
PyOS_snprintf(warning, sizeof(warning),
"%s.%s size changed, may indicate binary incompatibility",
module_name, class_name);
#if PY_VERSION_HEX < 0x02050000
PyErr_Warn(NULL, warning);
#else
PyErr_WarnEx(NULL, warning, 0);
#endif
}
else if (((PyTypeObject *)result)->tp_basicsize != size) {
PyErr_Format(PyExc_ValueError,
"%s.%s has the wrong size, try recompiling",
module_name, class_name);
goto bad;
}
return (PyTypeObject *)result;
bad:
Py_XDECREF(py_module);
Py_XDECREF(result);
return 0;
}
#endif
#ifndef __PYX_HAVE_RT_ImportModule
#define __PYX_HAVE_RT_ImportModule
static PyObject *__Pyx_ImportModule(const char *name) {
PyObject *py_name = 0;
PyObject *py_module = 0;
#if PY_MAJOR_VERSION < 3
py_name = PyString_FromString(name);
#else
py_name = PyUnicode_FromString(name);
#endif
if (!py_name)
goto bad;
py_module = PyImport_Import(py_name);
Py_DECREF(py_name);
return py_module;
bad:
Py_XDECREF(py_name);
return 0;
}
#endif
#include "compile.h"
#include "frameobject.h"
#include "traceback.h"
static void __Pyx_AddTraceback(const char *funcname) {
PyObject *py_srcfile = 0;
PyObject *py_funcname = 0;
PyObject *py_globals = 0;
PyCodeObject *py_code = 0;
PyFrameObject *py_frame = 0;
#if PY_MAJOR_VERSION < 3
py_srcfile = PyString_FromString(__pyx_filename);
#else
py_srcfile = PyUnicode_FromString(__pyx_filename);
#endif
if (!py_srcfile) goto bad;
if (__pyx_clineno) {
#if PY_MAJOR_VERSION < 3
py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, __pyx_clineno);
#else
py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, __pyx_clineno);
#endif
}
else {
#if PY_MAJOR_VERSION < 3
py_funcname = PyString_FromString(funcname);
#else
py_funcname = PyUnicode_FromString(funcname);
#endif
}
if (!py_funcname) goto bad;
py_globals = PyModule_GetDict(__pyx_m);
if (!py_globals) goto bad;
py_code = PyCode_New(
0, /*int argcount,*/
#if PY_MAJOR_VERSION >= 3
0, /*int kwonlyargcount,*/
#endif
0, /*int nlocals,*/
0, /*int stacksize,*/
0, /*int flags,*/
__pyx_empty_bytes, /*PyObject *code,*/
__pyx_empty_tuple, /*PyObject *consts,*/
__pyx_empty_tuple, /*PyObject *names,*/
__pyx_empty_tuple, /*PyObject *varnames,*/
__pyx_empty_tuple, /*PyObject *freevars,*/
__pyx_empty_tuple, /*PyObject *cellvars,*/
py_srcfile, /*PyObject *filename,*/
py_funcname, /*PyObject *name,*/
__pyx_lineno, /*int firstlineno,*/
__pyx_empty_bytes /*PyObject *lnotab*/
);
if (!py_code) goto bad;
py_frame = PyFrame_New(
PyThreadState_GET(), /*PyThreadState *tstate,*/
py_code, /*PyCodeObject *code,*/
py_globals, /*PyObject *globals,*/
0 /*PyObject *locals*/
);
if (!py_frame) goto bad;
py_frame->f_lineno = __pyx_lineno;
PyTraceBack_Here(py_frame);
bad:
Py_XDECREF(py_srcfile);
Py_XDECREF(py_funcname);
Py_XDECREF(py_code);
Py_XDECREF(py_frame);
}
static int __Pyx_InitStrings(__Pyx_StringTabEntry *t) {
while (t->p) {
#if PY_MAJOR_VERSION < 3
if (t->is_unicode) {
*t->p = PyUnicode_DecodeUTF8(t->s, t->n - 1, NULL);
} else if (t->intern) {
*t->p = PyString_InternFromString(t->s);
} else {
*t->p = PyString_FromStringAndSize(t->s, t->n - 1);
}
#else /* Python 3+ has unicode identifiers */
if (t->is_unicode | t->is_str) {
if (t->intern) {
*t->p = PyUnicode_InternFromString(t->s);
} else if (t->encoding) {
*t->p = PyUnicode_Decode(t->s, t->n - 1, t->encoding, NULL);
} else {
*t->p = PyUnicode_FromStringAndSize(t->s, t->n - 1);
}
} else {
*t->p = PyBytes_FromStringAndSize(t->s, t->n - 1);
}
#endif
if (!*t->p)
return -1;
++t;
}
return 0;
}
/* Type Conversion Functions */
static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) {
int is_true = x == Py_True;
if (is_true | (x == Py_False) | (x == Py_None)) return is_true;
else return PyObject_IsTrue(x);
}
static CYTHON_INLINE PyObject* __Pyx_PyNumber_Int(PyObject* x) {
PyNumberMethods *m;
const char *name = NULL;
PyObject *res = NULL;
#if PY_VERSION_HEX < 0x03000000
if (PyInt_Check(x) || PyLong_Check(x))
#else
if (PyLong_Check(x))
#endif
return Py_INCREF(x), x;
m = Py_TYPE(x)->tp_as_number;
#if PY_VERSION_HEX < 0x03000000
if (m && m->nb_int) {
name = "int";
res = PyNumber_Int(x);
}
else if (m && m->nb_long) {
name = "long";
res = PyNumber_Long(x);
}
#else
if (m && m->nb_int) {
name = "int";
res = PyNumber_Long(x);
}
#endif
if (res) {
#if PY_VERSION_HEX < 0x03000000
if (!PyInt_Check(res) && !PyLong_Check(res)) {
#else
if (!PyLong_Check(res)) {
#endif
PyErr_Format(PyExc_TypeError,
"__%s__ returned non-%s (type %.200s)",
name, name, Py_TYPE(res)->tp_name);
Py_DECREF(res);
return NULL;
}
}
else if (!PyErr_Occurred()) {
PyErr_SetString(PyExc_TypeError,
"an integer is required");
}
return res;
}
static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) {
Py_ssize_t ival;
PyObject* x = PyNumber_Index(b);
if (!x) return -1;
ival = PyInt_AsSsize_t(x);
Py_DECREF(x);
return ival;
}
static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) {
#if PY_VERSION_HEX < 0x02050000
if (ival <= LONG_MAX)
return PyInt_FromLong((long)ival);
else {
unsigned char *bytes = (unsigned char *) &ival;
int one = 1; int little = (int)*(unsigned char*)&one;
return _PyLong_FromByteArray(bytes, sizeof(size_t), little, 0);
}
#else
return PyInt_FromSize_t(ival);
#endif
}
static CYTHON_INLINE size_t __Pyx_PyInt_AsSize_t(PyObject* x) {
unsigned PY_LONG_LONG val = __Pyx_PyInt_AsUnsignedLongLong(x);
if (unlikely(val == (unsigned PY_LONG_LONG)-1 && PyErr_Occurred())) {
return (size_t)-1;
} else if (unlikely(val != (unsigned PY_LONG_LONG)(size_t)val)) {
PyErr_SetString(PyExc_OverflowError,
"value too large to convert to size_t");
return (size_t)-1;
}
return (size_t)val;
}
#endif /* Py_PYTHON_H */