|
8 | 8 |
|
9 | 9 | class GA:
|
10 | 10 |
|
11 | | - supported_int_types = [int, numpy.int, numpy.int8, numpy.int16, numpy.int32, numpy.int64, numpy.uint, numpy.uint8, numpy.uint16, numpy.uint32, numpy.uint64] |
12 | | - supported_float_types = [float, numpy.float, numpy.float16, numpy.float32, numpy.float64] |
| 11 | + supported_int_types = [int, numpy.int8, numpy.int16, numpy.int32, numpy.int64, numpy.uint, numpy.uint8, numpy.uint16, numpy.uint32, numpy.uint64] |
| 12 | + supported_float_types = [float, numpy.float16, numpy.float32, numpy.float64] |
13 | 13 | supported_int_float_types = supported_int_types + supported_float_types
|
14 | 14 |
|
15 | 15 | def __init__(self,
|
|
0 commit comments