Skip to content

Commit

Permalink
symbolics: add missing unsigned int
Browse files Browse the repository at this point in the history
  • Loading branch information
mloubout committed Oct 2, 2024
1 parent 28e4aab commit a522e37
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions devito/symbolics/extended_sympy.py
Original file line number Diff line number Diff line change
Expand Up @@ -799,6 +799,14 @@ class UCHAR(Cast):
_base_typ = 'unsigned char'


class UINT(Cast):
_base_typ = 'unsigned int'


class UINTP(CastStar):
base = UINT


class LONG(Cast):
_base_typ = 'long'

Expand Down

0 comments on commit a522e37

Please sign in to comment.