Skip to content

Commit

Permalink
changing some int to uint for python
Browse files Browse the repository at this point in the history
  • Loading branch information
proycon committed Apr 16, 2020
1 parent 291ffad commit fa55559
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions colibricore_classes.in.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -430,10 +430,10 @@ cdef extern from "patternmodel.h":



t_relationmap getsubchildren(Pattern & pattern, unsigned int occurrencethreshold, int category, unsigned int size) except +KeyError
t_relationmap getsubparents(Pattern & pattern, unsigned int occurrencethreshold, int category, unsigned int size) except +KeyError
t_relationmap getleftneighbours(Pattern & pattern, unsigned int occurrencethreshold, int category, unsigned int size, unsigned int cutoff) except +KeyError
t_relationmap getrightneighbours(Pattern & pattern, unsigned int occurrencethreshold, int category, unsigned int size, unsigned int cutoff) except +KeyError
t_relationmap getsubchildren(Pattern & pattern, unsigned int occurrencethreshold, unsigned int category, unsigned int size) except +KeyError
t_relationmap getsubparents(Pattern & pattern, unsigned int occurrencethreshold, unsigned int category, unsigned int size) except +KeyError
t_relationmap getleftneighbours(Pattern & pattern, unsigned int occurrencethreshold, unsigned int category, unsigned int size, unsigned int cutoff) except +KeyError
t_relationmap getrightneighbours(Pattern & pattern, unsigned int occurrencethreshold, unsigned int category, unsigned int size, unsigned int cutoff) except +KeyError
t_relationmap getskipcontent(Pattern & pattern) except +KeyError
t_relationmap gettemplates(Pattern & pattern, unsigned int occurrencethreshold) except +KeyError
t_relationmap getinstances(Pattern & pattern, unsigned int occurrencethreshold) except +KeyError
Expand Down

0 comments on commit fa55559

Please sign in to comment.