31 lines
721 B
Cython
31 lines
721 B
Cython
###################
|
|
### WARNING!!! ###
|
|
###################
|
|
# This file has been autogenerated
|
|
|
|
# Cython imports
|
|
from cython.operator cimport dereference as deref
|
|
from cython.operator cimport preincrement as inc
|
|
from libcpp.string cimport string as std_string
|
|
from libcpp.utility cimport pair
|
|
from libcpp.map cimport map as cpp_map
|
|
from libcpp.set cimport set as cpp_set
|
|
from libcpp.vector cimport vector as cpp_vector
|
|
from libcpp cimport bool as cpp_bool
|
|
from libc cimport stdio
|
|
from cpython.version cimport PY_MAJOR_VERSION
|
|
from cpython.ref cimport PyTypeObject, Py_INCREF, Py_XDECREF
|
|
|
|
# Python Imports
|
|
cimport numpy as np
|
|
|
|
# Local imports
|
|
cimport xdress_extra_types
|
|
|
|
cimport numpy as np
|
|
|
|
|
|
# Cython Imports For Types
|
|
|
|
|