Spaces:
Sleeping
Sleeping
File size: 295 Bytes
26f7fa0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
"""
MLSTRUCT-FP - TYPES
Define globals types used by the code.
"""
# noinspection PyUnresolvedReferences
from typing import Union, TYPE_CHECKING, List, Dict, Tuple, Optional, Any
# Types
NumberType = Union[int, float]
# Instances
NumberInstance = (int, float)
VectorInstance = (list, tuple)
|