Coverage for skema/program_analysis/CAST2FN/model/cast/value_constructor.py: 45%
76 statements
« prev ^ index » next coverage.py v7.5.0, created at 2024-04-30 17:15 +0000
« prev ^ index » next coverage.py v7.5.0, created at 2024-04-30 17:15 +0000
1# coding: utf-8
3"""
4 SKEMA Common Abstract Syntax Tree (CAST)
6 This document outlines the structure of the CAST that will be used as a generic representation of the semantics of a program written in any language. This will be used when creating functions networks from programs using the SKEMA Program Analysis pipeline. __Generating Class Structure__ To automatically generate Python or Java models corresponding to this document, you can use [swagger-codegen](https://swagger.io/tools/swagger-codegen/). We can use this to generate client code based off of this spec that will also generate the class structure. 1. Install via the method described for your operating system [here](https://github.com/swagger-api/swagger-codegen#Prerequisites). Make sure to install a version after 3.0 that will support openapi 3. 2. Run swagger-codegen with the options in the example below. The URL references where the yaml for this documentation is stored on github. Make sure to replace CURRENT_VERSION with the correct version. To generate Java classes rather, change the `-l python` to `-l java`. Change the value to the `-o` option to the desired output location. ``` swagger-codegen generate -l python -o ./client -i https://raw.githubusercontent.com/ml4ai/automates-v2/master/docs/source/cast_v{CURRENT_VERSION}.yaml ``` 3. Once it executes, the client code will be generated at your specified location. For python, the classes will be located in `$OUTPUT_PATH/swagger_client/models/`. For java, they will be located in `$OUTPUT_PATH/src/main/java/io/swagger/client/model/` # noqa: E501
8 OpenAPI spec version: 1.2.6
10 Generated by: https://github.com/swagger-api/swagger-codegen.git
11"""
13import pprint
14import re # noqa: F401
16import six
17from skema.program_analysis.CAST2FN.model.cast.ast_node import AstNode # noqa: F401,E501
19class ValueConstructor(AstNode):
20 """NOTE: This class is auto generated by the swagger code generator program.
22 Do not edit the class manually.
23 """
24 """
25 Attributes:
26 swagger_types (dict): The key is attribute name
27 and the value is attribute type.
28 attribute_map (dict): The key is attribute name
29 and the value is json key in definition.
30 """
31 swagger_types = {
32 'dim': 'object',
33 'operator': 'object',
34 'size': 'object',
35 'initial_value': 'object'
36 }
37 if hasattr(AstNode, "swagger_types"):
38 swagger_types.update(AstNode.swagger_types)
40 attribute_map = {
41 'dim': 'dim',
42 'operator': 'operator',
43 'size': 'size',
44 'initial_value': 'initial_value'
45 }
46 if hasattr(AstNode, "attribute_map"):
47 attribute_map.update(AstNode.attribute_map)
49 def __init__(self, dim=None, operator=None, size=None, initial_value=None, *args, **kwargs): # noqa: E501
50 """ValueConstructor - a model defined in Swagger""" # noqa: E501
51 self._dim = None
52 self._operator = None
53 self._size = None
54 self._initial_value = None
55 self.discriminator = None
56 if dim is not None:
57 self.dim = dim
58 if operator is not None:
59 self.operator = operator
60 if size is not None:
61 self.size = size
62 if initial_value is not None:
63 self.initial_value = initial_value
64 AstNode.__init__(self, *args, **kwargs)
66 @property
67 def dim(self):
68 """Gets the dim of this ValueConstructor. # noqa: E501
71 :return: The dim of this ValueConstructor. # noqa: E501
72 :rtype: object
73 """
74 return self._dim
76 @dim.setter
77 def dim(self, dim):
78 """Sets the dim of this ValueConstructor.
81 :param dim: The dim of this ValueConstructor. # noqa: E501
82 :type: object
83 """
85 self._dim = dim
87 @property
88 def operator(self):
89 """Gets the operator of this ValueConstructor. # noqa: E501
92 :return: The operator of this ValueConstructor. # noqa: E501
93 :rtype: object
94 """
95 return self._operator
97 @operator.setter
98 def operator(self, operator):
99 """Sets the operator of this ValueConstructor.
102 :param operator: The operator of this ValueConstructor. # noqa: E501
103 :type: object
104 """
106 self._operator = operator
108 @property
109 def size(self):
110 """Gets the size of this ValueConstructor. # noqa: E501
113 :return: The size of this ValueConstructor. # noqa: E501
114 :rtype: object
115 """
116 return self._size
118 @size.setter
119 def size(self, size):
120 """Sets the size of this ValueConstructor.
123 :param size: The size of this ValueConstructor. # noqa: E501
124 :type: object
125 """
127 self._size = size
129 @property
130 def initial_value(self):
131 """Gets the initial_value of this ValueConstructor. # noqa: E501
134 :return: The initial_value of this ValueConstructor. # noqa: E501
135 :rtype: object
136 """
137 return self._initial_value
139 @initial_value.setter
140 def initial_value(self, initial_value):
141 """Sets the initial_value of this ValueConstructor.
144 :param initial_value: The initial_value of this ValueConstructor. # noqa: E501
145 :type: object
146 """
148 self._initial_value = initial_value
150 def to_dict(self):
151 """Returns the model properties as a dict"""
152 result = {}
154 for attr, _ in six.iteritems(self.swagger_types):
155 value = getattr(self, attr)
156 if isinstance(value, list):
157 result[attr] = list(map(
158 lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
159 value
160 ))
161 elif hasattr(value, "to_dict"):
162 result[attr] = value.to_dict()
163 elif isinstance(value, dict):
164 result[attr] = dict(map(
165 lambda item: (item[0], item[1].to_dict())
166 if hasattr(item[1], "to_dict") else item,
167 value.items()
168 ))
169 else:
170 result[attr] = value
171 if issubclass(ValueConstructor, dict):
172 for key, value in self.items():
173 result[key] = value
175 return result
177 def to_str(self):
178 """Returns the string representation of the model"""
179 return pprint.pformat(self.to_dict())
181 def __repr__(self):
182 """For `print` and `pprint`"""
183 return self.to_str()
185 def __eq__(self, other):
186 """Returns true if both objects are equal"""
187 if not isinstance(other, ValueConstructor):
188 return False
190 return self.__dict__ == other.__dict__
192 def __ne__(self, other):
193 """Returns true if both objects are not equal"""
194 return not self == other