Skip to content

Commit

Permalink
Fix Cython v3 compatibility with tests (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
BTOdell committed Oct 13, 2023
1 parent 3d93ce5 commit 09fbc01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/eigency_tests/eigency_tests.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ cdef extern from "eigency_tests/eigency_tests_cpp.h":

cdef Map[ArrayXXd] &_function_filter1 "function_filter1" (Map[ArrayXXd] &)

cdef PlainObjectBase _function_filter2 "function_filter2" (FlattenedMapWithOrder[Array, double, Dynamic, Dynamic, RowMajor])
cdef PlainObjectBase _function_filter2 "function_filter2" (FlattenedMapWithOrder[Array, double, Dynamic, Dynamic, RowMajor] &)

cdef PlainObjectBase _function_filter3 "function_filter3" (FlattenedMapWithStride[Array, double, Dynamic, Dynamic, ColMajor, Unaligned, _1, Dynamic])
cdef PlainObjectBase _function_filter3 "function_filter3" (FlattenedMapWithStride[Array, double, Dynamic, Dynamic, ColMajor, Unaligned, _1, Dynamic] &)

cdef PlainObjectBase _function_type_double "function_type_double" (Map[ArrayXXd] &)
cdef PlainObjectBase _function_type_float "function_type_float" (Map[ArrayXXf] &)
Expand Down

0 comments on commit 09fbc01

Please sign in to comment.