### Copyright 2023 IBM Corp. All Rights Reserved.## SPDX-License-Identifier: Apache-2.0### flake8: noqa: E501fromtypingimportOptional,Union,Tuplefrom...import_utils,utils_utils.logger_setup()
[docs]classVariable:r"""Free variables to quantify first-order logic formulae Parameters ------------ name : str name of the free variable type : str, optional constant of the type associated with the free variable Examples -------- ```python x = Variable('x', 'person') ``` """def__init__(self,name:str,type:Optional[str]=None):self.name=nameself.type=typedef__str__(self)->str:r"""Returns the name of the free variable"""returnself.name