gamsapi 52.5.0__cp312-cp312-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- gams/__init__.py +27 -0
- gams/_version.py +1 -0
- gams/connect/__init__.py +28 -0
- gams/connect/agents/__init__.py +24 -0
- gams/connect/agents/_excel/__init__.py +32 -0
- gams/connect/agents/_excel/excelagent.py +312 -0
- gams/connect/agents/_excel/workbook.py +155 -0
- gams/connect/agents/_sqlconnectors/__init__.py +42 -0
- gams/connect/agents/_sqlconnectors/_accesshandler.py +211 -0
- gams/connect/agents/_sqlconnectors/_databasehandler.py +250 -0
- gams/connect/agents/_sqlconnectors/_mysqlhandler.py +168 -0
- gams/connect/agents/_sqlconnectors/_postgreshandler.py +131 -0
- gams/connect/agents/_sqlconnectors/_pyodbchandler.py +112 -0
- gams/connect/agents/_sqlconnectors/_sqlalchemyhandler.py +74 -0
- gams/connect/agents/_sqlconnectors/_sqlitehandler.py +262 -0
- gams/connect/agents/_sqlconnectors/_sqlserverhandler.py +179 -0
- gams/connect/agents/concatenate.py +440 -0
- gams/connect/agents/connectagent.py +743 -0
- gams/connect/agents/csvreader.py +675 -0
- gams/connect/agents/csvwriter.py +151 -0
- gams/connect/agents/domainwriter.py +143 -0
- gams/connect/agents/excelreader.py +756 -0
- gams/connect/agents/excelwriter.py +467 -0
- gams/connect/agents/filter.py +223 -0
- gams/connect/agents/gamsreader.py +112 -0
- gams/connect/agents/gamswriter.py +239 -0
- gams/connect/agents/gdxreader.py +109 -0
- gams/connect/agents/gdxwriter.py +146 -0
- gams/connect/agents/labelmanipulator.py +303 -0
- gams/connect/agents/projection.py +539 -0
- gams/connect/agents/pythoncode.py +71 -0
- gams/connect/agents/rawcsvreader.py +248 -0
- gams/connect/agents/rawexcelreader.py +312 -0
- gams/connect/agents/schema/CSVReader.yaml +92 -0
- gams/connect/agents/schema/CSVWriter.yaml +44 -0
- gams/connect/agents/schema/Concatenate.yaml +52 -0
- gams/connect/agents/schema/DomainWriter.yaml +25 -0
- gams/connect/agents/schema/ExcelReader.yaml +121 -0
- gams/connect/agents/schema/ExcelWriter.yaml +78 -0
- gams/connect/agents/schema/Filter.yaml +74 -0
- gams/connect/agents/schema/GAMSReader.yaml +20 -0
- gams/connect/agents/schema/GAMSWriter.yaml +47 -0
- gams/connect/agents/schema/GDXReader.yaml +23 -0
- gams/connect/agents/schema/GDXWriter.yaml +32 -0
- gams/connect/agents/schema/LabelManipulator.yaml +99 -0
- gams/connect/agents/schema/Projection.yaml +24 -0
- gams/connect/agents/schema/PythonCode.yaml +6 -0
- gams/connect/agents/schema/RawCSVReader.yaml +34 -0
- gams/connect/agents/schema/RawExcelReader.yaml +42 -0
- gams/connect/agents/schema/SQLReader.yaml +75 -0
- gams/connect/agents/schema/SQLWriter.yaml +103 -0
- gams/connect/agents/sqlreader.py +301 -0
- gams/connect/agents/sqlwriter.py +276 -0
- gams/connect/connectdatabase.py +275 -0
- gams/connect/connectvalidator.py +93 -0
- gams/connect/errors.py +34 -0
- gams/control/__init__.py +136 -0
- gams/control/database.py +2231 -0
- gams/control/execution.py +1900 -0
- gams/control/options.py +2792 -0
- gams/control/workspace.py +1198 -0
- gams/core/__init__.py +24 -0
- gams/core/cfg/__init__.py +26 -0
- gams/core/cfg/_cfgmcc.cp312-win_amd64.pyd +0 -0
- gams/core/cfg/cfgmcc.py +519 -0
- gams/core/dct/__init__.py +26 -0
- gams/core/dct/_dctmcc.cp312-win_amd64.pyd +0 -0
- gams/core/dct/dctmcc.py +574 -0
- gams/core/embedded/__init__.py +26 -0
- gams/core/embedded/gamsemb.py +1024 -0
- gams/core/emp/__init__.py +24 -0
- gams/core/emp/emplexer.py +89 -0
- gams/core/emp/empyacc.py +281 -0
- gams/core/gdx/__init__.py +26 -0
- gams/core/gdx/_gdxcc.cp312-win_amd64.pyd +0 -0
- gams/core/gdx/gdxcc.py +866 -0
- gams/core/gev/__init__.py +26 -0
- gams/core/gev/_gevmcc.cp312-win_amd64.pyd +0 -0
- gams/core/gev/gevmcc.py +855 -0
- gams/core/gmd/__init__.py +26 -0
- gams/core/gmd/_gmdcc.cp312-win_amd64.pyd +0 -0
- gams/core/gmd/gmdcc.py +917 -0
- gams/core/gmo/__init__.py +26 -0
- gams/core/gmo/_gmomcc.cp312-win_amd64.pyd +0 -0
- gams/core/gmo/gmomcc.py +2046 -0
- gams/core/idx/__init__.py +26 -0
- gams/core/idx/_idxcc.cp312-win_amd64.pyd +0 -0
- gams/core/idx/idxcc.py +510 -0
- gams/core/numpy/__init__.py +29 -0
- gams/core/numpy/_gams2numpy.cp312-win_amd64.pyd +0 -0
- gams/core/numpy/gams2numpy.py +1048 -0
- gams/core/opt/__init__.py +26 -0
- gams/core/opt/_optcc.cp312-win_amd64.pyd +0 -0
- gams/core/opt/optcc.py +840 -0
- gams/engine/__init__.py +204 -0
- gams/engine/api/__init__.py +13 -0
- gams/engine/api/auth_api.py +7653 -0
- gams/engine/api/cleanup_api.py +751 -0
- gams/engine/api/default_api.py +887 -0
- gams/engine/api/hypercube_api.py +2629 -0
- gams/engine/api/jobs_api.py +5229 -0
- gams/engine/api/licenses_api.py +2220 -0
- gams/engine/api/namespaces_api.py +7783 -0
- gams/engine/api/usage_api.py +5627 -0
- gams/engine/api/users_api.py +5931 -0
- gams/engine/api_client.py +804 -0
- gams/engine/api_response.py +21 -0
- gams/engine/configuration.py +601 -0
- gams/engine/exceptions.py +216 -0
- gams/engine/models/__init__.py +86 -0
- gams/engine/models/bad_input.py +89 -0
- gams/engine/models/cleanable_job_result.py +104 -0
- gams/engine/models/cleanable_job_result_page.py +113 -0
- gams/engine/models/engine_license.py +107 -0
- gams/engine/models/files_not_found.py +93 -0
- gams/engine/models/forwarded_token_response.py +112 -0
- gams/engine/models/generic_key_value_pair.py +89 -0
- gams/engine/models/hypercube.py +160 -0
- gams/engine/models/hypercube_page.py +111 -0
- gams/engine/models/hypercube_summary.py +91 -0
- gams/engine/models/hypercube_token.py +97 -0
- gams/engine/models/identity_provider.py +107 -0
- gams/engine/models/identity_provider_ldap.py +121 -0
- gams/engine/models/identity_provider_oauth2.py +146 -0
- gams/engine/models/identity_provider_oauth2_scope.py +89 -0
- gams/engine/models/identity_provider_oauth2_with_secret.py +152 -0
- gams/engine/models/identity_provider_oidc.py +133 -0
- gams/engine/models/identity_provider_oidc_with_secret.py +143 -0
- gams/engine/models/inex.py +91 -0
- gams/engine/models/invitation.py +136 -0
- gams/engine/models/invitation_quota.py +106 -0
- gams/engine/models/invitation_token.py +87 -0
- gams/engine/models/job.py +165 -0
- gams/engine/models/job_no_text_entry.py +138 -0
- gams/engine/models/job_no_text_entry_page.py +111 -0
- gams/engine/models/license.py +91 -0
- gams/engine/models/log_piece.py +96 -0
- gams/engine/models/message.py +87 -0
- gams/engine/models/message_and_token.py +99 -0
- gams/engine/models/message_with_webhook_id.py +89 -0
- gams/engine/models/model_auth_token.py +87 -0
- gams/engine/models/model_configuration.py +125 -0
- gams/engine/models/model_default_instance.py +99 -0
- gams/engine/models/model_default_user_instance.py +98 -0
- gams/engine/models/model_hypercube_job.py +106 -0
- gams/engine/models/model_hypercube_usage.py +130 -0
- gams/engine/models/model_instance_info.py +116 -0
- gams/engine/models/model_instance_info_full.py +123 -0
- gams/engine/models/model_instance_pool_info.py +112 -0
- gams/engine/models/model_job_labels.py +179 -0
- gams/engine/models/model_job_usage.py +133 -0
- gams/engine/models/model_pool_usage.py +124 -0
- gams/engine/models/model_usage.py +115 -0
- gams/engine/models/model_user.py +96 -0
- gams/engine/models/model_userinstance_info.py +119 -0
- gams/engine/models/model_userinstancepool_info.py +95 -0
- gams/engine/models/model_version.py +91 -0
- gams/engine/models/models.py +120 -0
- gams/engine/models/namespace.py +104 -0
- gams/engine/models/namespace_quota.py +96 -0
- gams/engine/models/namespace_with_permission.py +96 -0
- gams/engine/models/not_found.py +91 -0
- gams/engine/models/password_policy.py +97 -0
- gams/engine/models/perm_and_username.py +89 -0
- gams/engine/models/quota.py +117 -0
- gams/engine/models/quota_exceeded.py +97 -0
- gams/engine/models/status_code_meaning.py +89 -0
- gams/engine/models/stream_entry.py +89 -0
- gams/engine/models/system_wide_license.py +92 -0
- gams/engine/models/text_entries.py +87 -0
- gams/engine/models/text_entry.py +101 -0
- gams/engine/models/time_span.py +95 -0
- gams/engine/models/time_span_pool_worker.py +99 -0
- gams/engine/models/token_forward_error.py +87 -0
- gams/engine/models/user.py +127 -0
- gams/engine/models/user_group_member.py +96 -0
- gams/engine/models/user_groups.py +108 -0
- gams/engine/models/vapid_info.py +87 -0
- gams/engine/models/webhook.py +138 -0
- gams/engine/models/webhook_parameterized_event.py +99 -0
- gams/engine/py.typed +0 -0
- gams/engine/rest.py +258 -0
- gams/magic/__init__.py +32 -0
- gams/magic/gams_magic.py +142 -0
- gams/magic/interactive.py +402 -0
- gams/tools/__init__.py +30 -0
- gams/tools/errors.py +34 -0
- gams/tools/toolcollection/__init__.py +24 -0
- gams/tools/toolcollection/alg/__init__.py +24 -0
- gams/tools/toolcollection/alg/rank.py +51 -0
- gams/tools/toolcollection/data/__init__.py +24 -0
- gams/tools/toolcollection/data/csvread.py +444 -0
- gams/tools/toolcollection/data/csvwrite.py +311 -0
- gams/tools/toolcollection/data/exceldump.py +47 -0
- gams/tools/toolcollection/data/sqlitewrite.py +276 -0
- gams/tools/toolcollection/gdxservice/__init__.py +24 -0
- gams/tools/toolcollection/gdxservice/gdxencoding.py +104 -0
- gams/tools/toolcollection/gdxservice/gdxrename.py +94 -0
- gams/tools/toolcollection/linalg/__init__.py +24 -0
- gams/tools/toolcollection/linalg/cholesky.py +57 -0
- gams/tools/toolcollection/linalg/eigenvalue.py +56 -0
- gams/tools/toolcollection/linalg/eigenvector.py +58 -0
- gams/tools/toolcollection/linalg/invert.py +55 -0
- gams/tools/toolcollection/linalg/ols.py +138 -0
- gams/tools/toolcollection/tooltemplate.py +321 -0
- gams/tools/toolcollection/win32/__init__.py +24 -0
- gams/tools/toolcollection/win32/excelmerge.py +93 -0
- gams/tools/toolcollection/win32/exceltalk.py +76 -0
- gams/tools/toolcollection/win32/msappavail.py +49 -0
- gams/tools/toolcollection/win32/shellexecute.py +54 -0
- gams/tools/tools.py +116 -0
- gams/transfer/__init__.py +35 -0
- gams/transfer/_abcs/__init__.py +37 -0
- gams/transfer/_abcs/container_abcs.py +433 -0
- gams/transfer/_internals/__init__.py +63 -0
- gams/transfer/_internals/algorithms.py +436 -0
- gams/transfer/_internals/casepreservingdict.py +124 -0
- gams/transfer/_internals/constants.py +270 -0
- gams/transfer/_internals/domainviolation.py +103 -0
- gams/transfer/_internals/specialvalues.py +172 -0
- gams/transfer/containers/__init__.py +26 -0
- gams/transfer/containers/_container.py +1794 -0
- gams/transfer/containers/_io/__init__.py +28 -0
- gams/transfer/containers/_io/containers.py +164 -0
- gams/transfer/containers/_io/gdx.py +1029 -0
- gams/transfer/containers/_io/gmd.py +872 -0
- gams/transfer/containers/_mixins/__init__.py +26 -0
- gams/transfer/containers/_mixins/ccc.py +1274 -0
- gams/transfer/syms/__init__.py +33 -0
- gams/transfer/syms/_methods/__init__.py +24 -0
- gams/transfer/syms/_methods/tables.py +120 -0
- gams/transfer/syms/_methods/toDict.py +115 -0
- gams/transfer/syms/_methods/toList.py +83 -0
- gams/transfer/syms/_methods/toValue.py +60 -0
- gams/transfer/syms/_mixins/__init__.py +32 -0
- gams/transfer/syms/_mixins/equals.py +626 -0
- gams/transfer/syms/_mixins/generateRecords.py +499 -0
- gams/transfer/syms/_mixins/pivot.py +313 -0
- gams/transfer/syms/_mixins/pve.py +627 -0
- gams/transfer/syms/_mixins/sa.py +27 -0
- gams/transfer/syms/_mixins/sapve.py +27 -0
- gams/transfer/syms/_mixins/saua.py +27 -0
- gams/transfer/syms/_mixins/sauapve.py +199 -0
- gams/transfer/syms/_mixins/spve.py +1528 -0
- gams/transfer/syms/_mixins/ve.py +936 -0
- gams/transfer/syms/container_syms/__init__.py +31 -0
- gams/transfer/syms/container_syms/_alias.py +984 -0
- gams/transfer/syms/container_syms/_equation.py +333 -0
- gams/transfer/syms/container_syms/_parameter.py +973 -0
- gams/transfer/syms/container_syms/_set.py +604 -0
- gams/transfer/syms/container_syms/_universe_alias.py +461 -0
- gams/transfer/syms/container_syms/_variable.py +321 -0
- gamsapi-52.5.0.dist-info/METADATA +150 -0
- gamsapi-52.5.0.dist-info/RECORD +257 -0
- gamsapi-52.5.0.dist-info/WHEEL +5 -0
- gamsapi-52.5.0.dist-info/licenses/LICENSE +22 -0
- gamsapi-52.5.0.dist-info/top_level.txt +1 -0
gams/core/gdx/gdxcc.py
ADDED
|
@@ -0,0 +1,866 @@
|
|
|
1
|
+
# This file was automatically generated by SWIG (https://www.swig.org).
|
|
2
|
+
# Version 4.4.0
|
|
3
|
+
#
|
|
4
|
+
# Do not make changes to this file unless you know what you are doing - modify
|
|
5
|
+
# the SWIG interface file instead.
|
|
6
|
+
|
|
7
|
+
from sys import version_info as _swig_python_version_info
|
|
8
|
+
from gams.core.gdx import _gdxcc
|
|
9
|
+
|
|
10
|
+
try:
|
|
11
|
+
import builtins as __builtin__
|
|
12
|
+
except ImportError:
|
|
13
|
+
import __builtin__
|
|
14
|
+
|
|
15
|
+
def _swig_repr(self):
|
|
16
|
+
try:
|
|
17
|
+
strthis = "proxy of " + self.this.__repr__()
|
|
18
|
+
except __builtin__.Exception:
|
|
19
|
+
strthis = ""
|
|
20
|
+
return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def _swig_setattr_nondynamic_instance_variable(set):
|
|
24
|
+
def set_instance_attr(self, name, value):
|
|
25
|
+
if name == "this":
|
|
26
|
+
set(self, name, value)
|
|
27
|
+
elif name == "thisown":
|
|
28
|
+
self.this.own(value)
|
|
29
|
+
elif hasattr(self, name) and isinstance(getattr(type(self), name), property):
|
|
30
|
+
set(self, name, value)
|
|
31
|
+
else:
|
|
32
|
+
raise AttributeError("You cannot add instance attributes to %s" % self)
|
|
33
|
+
return set_instance_attr
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def _swig_setattr_nondynamic_class_variable(set):
|
|
37
|
+
def set_class_attr(cls, name, value):
|
|
38
|
+
if hasattr(cls, name) and not isinstance(getattr(cls, name), property):
|
|
39
|
+
set(cls, name, value)
|
|
40
|
+
else:
|
|
41
|
+
raise AttributeError("You cannot add class attributes to %s" % cls)
|
|
42
|
+
return set_class_attr
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
def _swig_add_metaclass(metaclass):
|
|
46
|
+
"""Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass"""
|
|
47
|
+
def wrapper(cls):
|
|
48
|
+
return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy())
|
|
49
|
+
return wrapper
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
class _SwigNonDynamicMeta(type):
|
|
53
|
+
"""Meta class to enforce nondynamic attributes (no new attributes) for a class"""
|
|
54
|
+
__setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__)
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
class intArray(object):
|
|
58
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
|
59
|
+
__repr__ = _swig_repr
|
|
60
|
+
|
|
61
|
+
def __init__(self, nelements):
|
|
62
|
+
_gdxcc.intArray_swiginit(self, _gdxcc.new_intArray(nelements))
|
|
63
|
+
__swig_destroy__ = _gdxcc.delete_intArray
|
|
64
|
+
|
|
65
|
+
def __getitem__(self, index):
|
|
66
|
+
return _gdxcc.intArray___getitem__(self, index)
|
|
67
|
+
|
|
68
|
+
def __setitem__(self, index, value):
|
|
69
|
+
return _gdxcc.intArray___setitem__(self, index, value)
|
|
70
|
+
|
|
71
|
+
def cast(self):
|
|
72
|
+
return _gdxcc.intArray_cast(self)
|
|
73
|
+
|
|
74
|
+
@staticmethod
|
|
75
|
+
def frompointer(t):
|
|
76
|
+
return _gdxcc.intArray_frompointer(t)
|
|
77
|
+
|
|
78
|
+
# Register intArray in _gdxcc:
|
|
79
|
+
_gdxcc.intArray_swigregister(intArray)
|
|
80
|
+
class doubleArray(object):
|
|
81
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
|
82
|
+
__repr__ = _swig_repr
|
|
83
|
+
|
|
84
|
+
def __init__(self, nelements):
|
|
85
|
+
_gdxcc.doubleArray_swiginit(self, _gdxcc.new_doubleArray(nelements))
|
|
86
|
+
__swig_destroy__ = _gdxcc.delete_doubleArray
|
|
87
|
+
|
|
88
|
+
def __getitem__(self, index):
|
|
89
|
+
return _gdxcc.doubleArray___getitem__(self, index)
|
|
90
|
+
|
|
91
|
+
def __setitem__(self, index, value):
|
|
92
|
+
return _gdxcc.doubleArray___setitem__(self, index, value)
|
|
93
|
+
|
|
94
|
+
def cast(self):
|
|
95
|
+
return _gdxcc.doubleArray_cast(self)
|
|
96
|
+
|
|
97
|
+
@staticmethod
|
|
98
|
+
def frompointer(t):
|
|
99
|
+
return _gdxcc.doubleArray_frompointer(t)
|
|
100
|
+
|
|
101
|
+
# Register doubleArray in _gdxcc:
|
|
102
|
+
_gdxcc.doubleArray_swigregister(doubleArray)
|
|
103
|
+
|
|
104
|
+
def new_intp():
|
|
105
|
+
return _gdxcc.new_intp()
|
|
106
|
+
|
|
107
|
+
def copy_intp(value):
|
|
108
|
+
return _gdxcc.copy_intp(value)
|
|
109
|
+
|
|
110
|
+
def delete_intp(obj):
|
|
111
|
+
return _gdxcc.delete_intp(obj)
|
|
112
|
+
|
|
113
|
+
def intp_assign(obj, value):
|
|
114
|
+
return _gdxcc.intp_assign(obj, value)
|
|
115
|
+
|
|
116
|
+
def intp_value(obj):
|
|
117
|
+
return _gdxcc.intp_value(obj)
|
|
118
|
+
|
|
119
|
+
def new_doublep():
|
|
120
|
+
return _gdxcc.new_doublep()
|
|
121
|
+
|
|
122
|
+
def copy_doublep(value):
|
|
123
|
+
return _gdxcc.copy_doublep(value)
|
|
124
|
+
|
|
125
|
+
def delete_doublep(obj):
|
|
126
|
+
return _gdxcc.delete_doublep(obj)
|
|
127
|
+
|
|
128
|
+
def doublep_assign(obj, value):
|
|
129
|
+
return _gdxcc.doublep_assign(obj, value)
|
|
130
|
+
|
|
131
|
+
def doublep_value(obj):
|
|
132
|
+
return _gdxcc.doublep_value(obj)
|
|
133
|
+
|
|
134
|
+
def new_gdxHandle_tp():
|
|
135
|
+
return _gdxcc.new_gdxHandle_tp()
|
|
136
|
+
|
|
137
|
+
def copy_gdxHandle_tp(value):
|
|
138
|
+
return _gdxcc.copy_gdxHandle_tp(value)
|
|
139
|
+
|
|
140
|
+
def delete_gdxHandle_tp(obj):
|
|
141
|
+
return _gdxcc.delete_gdxHandle_tp(obj)
|
|
142
|
+
|
|
143
|
+
def gdxHandle_tp_assign(obj, value):
|
|
144
|
+
return _gdxcc.gdxHandle_tp_assign(obj, value)
|
|
145
|
+
|
|
146
|
+
def gdxHandle_tp_value(obj):
|
|
147
|
+
return _gdxcc.gdxHandle_tp_value(obj)
|
|
148
|
+
|
|
149
|
+
def new_TDataStoreProc_tp():
|
|
150
|
+
return _gdxcc.new_TDataStoreProc_tp()
|
|
151
|
+
|
|
152
|
+
def copy_TDataStoreProc_tp(value):
|
|
153
|
+
return _gdxcc.copy_TDataStoreProc_tp(value)
|
|
154
|
+
|
|
155
|
+
def delete_TDataStoreProc_tp(obj):
|
|
156
|
+
return _gdxcc.delete_TDataStoreProc_tp(obj)
|
|
157
|
+
|
|
158
|
+
def TDataStoreProc_tp_assign(obj, value):
|
|
159
|
+
return _gdxcc.TDataStoreProc_tp_assign(obj, value)
|
|
160
|
+
|
|
161
|
+
def TDataStoreProc_tp_value(obj):
|
|
162
|
+
return _gdxcc.TDataStoreProc_tp_value(obj)
|
|
163
|
+
|
|
164
|
+
def new_TDataStoreExProc_tp():
|
|
165
|
+
return _gdxcc.new_TDataStoreExProc_tp()
|
|
166
|
+
|
|
167
|
+
def copy_TDataStoreExProc_tp(value):
|
|
168
|
+
return _gdxcc.copy_TDataStoreExProc_tp(value)
|
|
169
|
+
|
|
170
|
+
def delete_TDataStoreExProc_tp(obj):
|
|
171
|
+
return _gdxcc.delete_TDataStoreExProc_tp(obj)
|
|
172
|
+
|
|
173
|
+
def TDataStoreExProc_tp_assign(obj, value):
|
|
174
|
+
return _gdxcc.TDataStoreExProc_tp_assign(obj, value)
|
|
175
|
+
|
|
176
|
+
def TDataStoreExProc_tp_value(obj):
|
|
177
|
+
return _gdxcc.TDataStoreExProc_tp_value(obj)
|
|
178
|
+
|
|
179
|
+
def new_TDataStoreFiltProc_tp():
|
|
180
|
+
return _gdxcc.new_TDataStoreFiltProc_tp()
|
|
181
|
+
|
|
182
|
+
def copy_TDataStoreFiltProc_tp(value):
|
|
183
|
+
return _gdxcc.copy_TDataStoreFiltProc_tp(value)
|
|
184
|
+
|
|
185
|
+
def delete_TDataStoreFiltProc_tp(obj):
|
|
186
|
+
return _gdxcc.delete_TDataStoreFiltProc_tp(obj)
|
|
187
|
+
|
|
188
|
+
def TDataStoreFiltProc_tp_assign(obj, value):
|
|
189
|
+
return _gdxcc.TDataStoreFiltProc_tp_assign(obj, value)
|
|
190
|
+
|
|
191
|
+
def TDataStoreFiltProc_tp_value(obj):
|
|
192
|
+
return _gdxcc.TDataStoreFiltProc_tp_value(obj)
|
|
193
|
+
|
|
194
|
+
def new_TDomainIndexProc_tp():
|
|
195
|
+
return _gdxcc.new_TDomainIndexProc_tp()
|
|
196
|
+
|
|
197
|
+
def copy_TDomainIndexProc_tp(value):
|
|
198
|
+
return _gdxcc.copy_TDomainIndexProc_tp(value)
|
|
199
|
+
|
|
200
|
+
def delete_TDomainIndexProc_tp(obj):
|
|
201
|
+
return _gdxcc.delete_TDomainIndexProc_tp(obj)
|
|
202
|
+
|
|
203
|
+
def TDomainIndexProc_tp_assign(obj, value):
|
|
204
|
+
return _gdxcc.TDomainIndexProc_tp_assign(obj, value)
|
|
205
|
+
|
|
206
|
+
def TDomainIndexProc_tp_value(obj):
|
|
207
|
+
return _gdxcc.TDomainIndexProc_tp_value(obj)
|
|
208
|
+
|
|
209
|
+
def gdxHandleToPtr(pgdx):
|
|
210
|
+
r"""gdxHandleToPtr(pgdx) -> void *"""
|
|
211
|
+
return _gdxcc.gdxHandleToPtr(pgdx)
|
|
212
|
+
|
|
213
|
+
def ptrTogdxHandle(vptr):
|
|
214
|
+
r"""ptrTogdxHandle(vptr) -> gdxHandle_t"""
|
|
215
|
+
return _gdxcc.ptrTogdxHandle(vptr)
|
|
216
|
+
|
|
217
|
+
def gdxGetReady(msgBufSize):
|
|
218
|
+
r"""gdxGetReady(msgBufSize) -> int"""
|
|
219
|
+
return _gdxcc.gdxGetReady(msgBufSize)
|
|
220
|
+
|
|
221
|
+
def gdxGetReadyD(dirName, msgBufSize):
|
|
222
|
+
r"""gdxGetReadyD(dirName, msgBufSize) -> int"""
|
|
223
|
+
return _gdxcc.gdxGetReadyD(dirName, msgBufSize)
|
|
224
|
+
|
|
225
|
+
def gdxGetReadyL(libName, msgBufSize):
|
|
226
|
+
r"""gdxGetReadyL(libName, msgBufSize) -> int"""
|
|
227
|
+
return _gdxcc.gdxGetReadyL(libName, msgBufSize)
|
|
228
|
+
|
|
229
|
+
def gdxCreate(pgdx, msgBufSize):
|
|
230
|
+
r"""gdxCreate(pgdx, msgBufSize) -> int"""
|
|
231
|
+
return _gdxcc.gdxCreate(pgdx, msgBufSize)
|
|
232
|
+
|
|
233
|
+
def gdxCreateD(pgdx, dirName, msgBufSize):
|
|
234
|
+
r"""gdxCreateD(pgdx, dirName, msgBufSize) -> int"""
|
|
235
|
+
return _gdxcc.gdxCreateD(pgdx, dirName, msgBufSize)
|
|
236
|
+
|
|
237
|
+
def gdxCreateDD(pgdx, dirName, msgBufSize):
|
|
238
|
+
r"""gdxCreateDD(pgdx, dirName, msgBufSize) -> int"""
|
|
239
|
+
return _gdxcc.gdxCreateDD(pgdx, dirName, msgBufSize)
|
|
240
|
+
|
|
241
|
+
def gdxCreateL(pgdx, libName, msgBufSize):
|
|
242
|
+
r"""gdxCreateL(pgdx, libName, msgBufSize) -> int"""
|
|
243
|
+
return _gdxcc.gdxCreateL(pgdx, libName, msgBufSize)
|
|
244
|
+
|
|
245
|
+
def gdxFree(pgdx):
|
|
246
|
+
r"""gdxFree(pgdx) -> int"""
|
|
247
|
+
return _gdxcc.gdxFree(pgdx)
|
|
248
|
+
|
|
249
|
+
def gdxLibraryLoaded():
|
|
250
|
+
r"""gdxLibraryLoaded() -> int"""
|
|
251
|
+
return _gdxcc.gdxLibraryLoaded()
|
|
252
|
+
|
|
253
|
+
def gdxLibraryUnload():
|
|
254
|
+
r"""gdxLibraryUnload() -> int"""
|
|
255
|
+
return _gdxcc.gdxLibraryUnload()
|
|
256
|
+
|
|
257
|
+
def gdxGetScreenIndicator():
|
|
258
|
+
r"""gdxGetScreenIndicator() -> int"""
|
|
259
|
+
return _gdxcc.gdxGetScreenIndicator()
|
|
260
|
+
|
|
261
|
+
def gdxSetScreenIndicator(scrind):
|
|
262
|
+
r"""gdxSetScreenIndicator(scrind)"""
|
|
263
|
+
return _gdxcc.gdxSetScreenIndicator(scrind)
|
|
264
|
+
|
|
265
|
+
def gdxGetExceptionIndicator():
|
|
266
|
+
r"""gdxGetExceptionIndicator() -> int"""
|
|
267
|
+
return _gdxcc.gdxGetExceptionIndicator()
|
|
268
|
+
|
|
269
|
+
def gdxSetExceptionIndicator(excind):
|
|
270
|
+
r"""gdxSetExceptionIndicator(excind)"""
|
|
271
|
+
return _gdxcc.gdxSetExceptionIndicator(excind)
|
|
272
|
+
|
|
273
|
+
def gdxGetExitIndicator():
|
|
274
|
+
r"""gdxGetExitIndicator() -> int"""
|
|
275
|
+
return _gdxcc.gdxGetExitIndicator()
|
|
276
|
+
|
|
277
|
+
def gdxSetExitIndicator(extind):
|
|
278
|
+
r"""gdxSetExitIndicator(extind)"""
|
|
279
|
+
return _gdxcc.gdxSetExitIndicator(extind)
|
|
280
|
+
|
|
281
|
+
def gdxGetErrorCallback():
|
|
282
|
+
r"""gdxGetErrorCallback() -> gdxErrorCallback_t"""
|
|
283
|
+
return _gdxcc.gdxGetErrorCallback()
|
|
284
|
+
|
|
285
|
+
def gdxSetErrorCallback(func):
|
|
286
|
+
r"""gdxSetErrorCallback(func)"""
|
|
287
|
+
return _gdxcc.gdxSetErrorCallback(func)
|
|
288
|
+
|
|
289
|
+
def gdxGetAPIErrorCount():
|
|
290
|
+
r"""gdxGetAPIErrorCount() -> int"""
|
|
291
|
+
return _gdxcc.gdxGetAPIErrorCount()
|
|
292
|
+
|
|
293
|
+
def gdxSetAPIErrorCount(ecnt):
|
|
294
|
+
r"""gdxSetAPIErrorCount(ecnt)"""
|
|
295
|
+
return _gdxcc.gdxSetAPIErrorCount(ecnt)
|
|
296
|
+
|
|
297
|
+
def gdxErrorHandling(msg):
|
|
298
|
+
r"""gdxErrorHandling(msg)"""
|
|
299
|
+
return _gdxcc.gdxErrorHandling(msg)
|
|
300
|
+
|
|
301
|
+
def gdxAcronymAdd(pgdx, AName, Txt, AIndx):
|
|
302
|
+
r"""gdxAcronymAdd(pgdx, AName, Txt, AIndx) -> int"""
|
|
303
|
+
return _gdxcc.gdxAcronymAdd(pgdx, AName, Txt, AIndx)
|
|
304
|
+
|
|
305
|
+
def gdxAcronymCount(pgdx):
|
|
306
|
+
r"""gdxAcronymCount(pgdx) -> int"""
|
|
307
|
+
return _gdxcc.gdxAcronymCount(pgdx)
|
|
308
|
+
|
|
309
|
+
def gdxAcronymGetInfo(pgdx, N):
|
|
310
|
+
r"""gdxAcronymGetInfo(pgdx, N) -> int"""
|
|
311
|
+
return _gdxcc.gdxAcronymGetInfo(pgdx, N)
|
|
312
|
+
|
|
313
|
+
def gdxAcronymGetMapping(pgdx, N):
|
|
314
|
+
r"""gdxAcronymGetMapping(pgdx, N) -> int"""
|
|
315
|
+
return _gdxcc.gdxAcronymGetMapping(pgdx, N)
|
|
316
|
+
|
|
317
|
+
def gdxAcronymIndex(pgdx, V):
|
|
318
|
+
r"""gdxAcronymIndex(pgdx, V) -> int"""
|
|
319
|
+
return _gdxcc.gdxAcronymIndex(pgdx, V)
|
|
320
|
+
|
|
321
|
+
def gdxAcronymName(pgdx, V):
|
|
322
|
+
r"""gdxAcronymName(pgdx, V) -> int"""
|
|
323
|
+
return _gdxcc.gdxAcronymName(pgdx, V)
|
|
324
|
+
|
|
325
|
+
def gdxAcronymNextNr(pgdx, NV):
|
|
326
|
+
r"""gdxAcronymNextNr(pgdx, NV) -> int"""
|
|
327
|
+
return _gdxcc.gdxAcronymNextNr(pgdx, NV)
|
|
328
|
+
|
|
329
|
+
def gdxAcronymSetInfo(pgdx, N, AName, Txt, AIndx):
|
|
330
|
+
r"""gdxAcronymSetInfo(pgdx, N, AName, Txt, AIndx) -> int"""
|
|
331
|
+
return _gdxcc.gdxAcronymSetInfo(pgdx, N, AName, Txt, AIndx)
|
|
332
|
+
|
|
333
|
+
def gdxAcronymValue(pgdx, AIndx):
|
|
334
|
+
r"""gdxAcronymValue(pgdx, AIndx) -> double"""
|
|
335
|
+
return _gdxcc.gdxAcronymValue(pgdx, AIndx)
|
|
336
|
+
|
|
337
|
+
def gdxAddAlias(pgdx, Id1, Id2):
|
|
338
|
+
r"""gdxAddAlias(pgdx, Id1, Id2) -> int"""
|
|
339
|
+
return _gdxcc.gdxAddAlias(pgdx, Id1, Id2)
|
|
340
|
+
|
|
341
|
+
def gdxAddSetText(pgdx, Txt):
|
|
342
|
+
r"""gdxAddSetText(pgdx, Txt) -> int"""
|
|
343
|
+
return _gdxcc.gdxAddSetText(pgdx, Txt)
|
|
344
|
+
|
|
345
|
+
def gdxAutoConvert(pgdx, NV):
|
|
346
|
+
r"""gdxAutoConvert(pgdx, NV) -> int"""
|
|
347
|
+
return _gdxcc.gdxAutoConvert(pgdx, NV)
|
|
348
|
+
|
|
349
|
+
def gdxClose(pgdx):
|
|
350
|
+
r"""gdxClose(pgdx) -> int"""
|
|
351
|
+
return _gdxcc.gdxClose(pgdx)
|
|
352
|
+
|
|
353
|
+
def gdxDataErrorCount(pgdx):
|
|
354
|
+
r"""gdxDataErrorCount(pgdx) -> int"""
|
|
355
|
+
return _gdxcc.gdxDataErrorCount(pgdx)
|
|
356
|
+
|
|
357
|
+
def gdxDataErrorRecord(pgdx, RecNr):
|
|
358
|
+
r"""gdxDataErrorRecord(pgdx, RecNr) -> int"""
|
|
359
|
+
return _gdxcc.gdxDataErrorRecord(pgdx, RecNr)
|
|
360
|
+
|
|
361
|
+
def gdxDataErrorRecordX(pgdx, RecNr):
|
|
362
|
+
r"""gdxDataErrorRecordX(pgdx, RecNr) -> int"""
|
|
363
|
+
return _gdxcc.gdxDataErrorRecordX(pgdx, RecNr)
|
|
364
|
+
|
|
365
|
+
def gdxDataReadDone(pgdx):
|
|
366
|
+
r"""gdxDataReadDone(pgdx) -> int"""
|
|
367
|
+
return _gdxcc.gdxDataReadDone(pgdx)
|
|
368
|
+
|
|
369
|
+
def gdxDataReadFilteredStart(pgdx, SyNr, FilterAction):
|
|
370
|
+
r"""gdxDataReadFilteredStart(pgdx, SyNr, FilterAction) -> int"""
|
|
371
|
+
return _gdxcc.gdxDataReadFilteredStart(pgdx, SyNr, FilterAction)
|
|
372
|
+
|
|
373
|
+
def gdxDataReadMap(pgdx, RecNr):
|
|
374
|
+
r"""gdxDataReadMap(pgdx, RecNr) -> int"""
|
|
375
|
+
return _gdxcc.gdxDataReadMap(pgdx, RecNr)
|
|
376
|
+
|
|
377
|
+
def gdxDataReadMapStart(pgdx, SyNr):
|
|
378
|
+
r"""gdxDataReadMapStart(pgdx, SyNr) -> int"""
|
|
379
|
+
return _gdxcc.gdxDataReadMapStart(pgdx, SyNr)
|
|
380
|
+
|
|
381
|
+
def gdxDataReadRaw(pgdx):
|
|
382
|
+
r"""gdxDataReadRaw(pgdx) -> int"""
|
|
383
|
+
return _gdxcc.gdxDataReadRaw(pgdx)
|
|
384
|
+
|
|
385
|
+
def gdxDataReadRawFast(pgdx, SyNr, DP):
|
|
386
|
+
r"""gdxDataReadRawFast(pgdx, SyNr, DP) -> int"""
|
|
387
|
+
return _gdxcc.gdxDataReadRawFast(pgdx, SyNr, DP)
|
|
388
|
+
|
|
389
|
+
def gdxDataReadRawFastEx(pgdx, SyNr, DP, Uptr):
|
|
390
|
+
r"""gdxDataReadRawFastEx(pgdx, SyNr, DP, Uptr) -> int"""
|
|
391
|
+
return _gdxcc.gdxDataReadRawFastEx(pgdx, SyNr, DP, Uptr)
|
|
392
|
+
|
|
393
|
+
def gdxDataReadRawFastFilt(pgdx, SyNr, UelFilterStr_in, DP):
|
|
394
|
+
r"""gdxDataReadRawFastFilt(pgdx, SyNr, UelFilterStr_in, DP) -> int"""
|
|
395
|
+
return _gdxcc.gdxDataReadRawFastFilt(pgdx, SyNr, UelFilterStr_in, DP)
|
|
396
|
+
|
|
397
|
+
def gdxDataReadRawStart(pgdx, SyNr):
|
|
398
|
+
r"""gdxDataReadRawStart(pgdx, SyNr) -> int"""
|
|
399
|
+
return _gdxcc.gdxDataReadRawStart(pgdx, SyNr)
|
|
400
|
+
|
|
401
|
+
def gdxDataReadSlice(pgdx, UelFilterStr_in, DP):
|
|
402
|
+
r"""gdxDataReadSlice(pgdx, UelFilterStr_in, DP) -> int"""
|
|
403
|
+
return _gdxcc.gdxDataReadSlice(pgdx, UelFilterStr_in, DP)
|
|
404
|
+
|
|
405
|
+
def gdxDataReadSliceStart(pgdx, SyNr):
|
|
406
|
+
r"""gdxDataReadSliceStart(pgdx, SyNr) -> int"""
|
|
407
|
+
return _gdxcc.gdxDataReadSliceStart(pgdx, SyNr)
|
|
408
|
+
|
|
409
|
+
def gdxDataReadStr(pgdx):
|
|
410
|
+
r"""gdxDataReadStr(pgdx) -> int"""
|
|
411
|
+
return _gdxcc.gdxDataReadStr(pgdx)
|
|
412
|
+
|
|
413
|
+
def gdxDataReadStrStart(pgdx, SyNr):
|
|
414
|
+
r"""gdxDataReadStrStart(pgdx, SyNr) -> int"""
|
|
415
|
+
return _gdxcc.gdxDataReadStrStart(pgdx, SyNr)
|
|
416
|
+
|
|
417
|
+
def gdxDataSliceUELS(pgdx, SliceKeyInt):
|
|
418
|
+
r"""gdxDataSliceUELS(pgdx, SliceKeyInt) -> int"""
|
|
419
|
+
return _gdxcc.gdxDataSliceUELS(pgdx, SliceKeyInt)
|
|
420
|
+
|
|
421
|
+
def gdxDataWriteDone(pgdx):
|
|
422
|
+
r"""gdxDataWriteDone(pgdx) -> int"""
|
|
423
|
+
return _gdxcc.gdxDataWriteDone(pgdx)
|
|
424
|
+
|
|
425
|
+
def gdxDataWriteMap(pgdx, KeyInt, Values):
|
|
426
|
+
r"""gdxDataWriteMap(pgdx, KeyInt, Values) -> int"""
|
|
427
|
+
return _gdxcc.gdxDataWriteMap(pgdx, KeyInt, Values)
|
|
428
|
+
|
|
429
|
+
def gdxDataWriteMapStart(pgdx, SyId, ExplTxt, Dimen, Typ, UserInfo):
|
|
430
|
+
r"""gdxDataWriteMapStart(pgdx, SyId, ExplTxt, Dimen, Typ, UserInfo) -> int"""
|
|
431
|
+
return _gdxcc.gdxDataWriteMapStart(pgdx, SyId, ExplTxt, Dimen, Typ, UserInfo)
|
|
432
|
+
|
|
433
|
+
def gdxDataWriteRaw(pgdx, KeyInt, Values):
|
|
434
|
+
r"""gdxDataWriteRaw(pgdx, KeyInt, Values) -> int"""
|
|
435
|
+
return _gdxcc.gdxDataWriteRaw(pgdx, KeyInt, Values)
|
|
436
|
+
|
|
437
|
+
def gdxDataWriteRawStart(pgdx, SyId, ExplTxt, Dimen, Typ, UserInfo):
|
|
438
|
+
r"""gdxDataWriteRawStart(pgdx, SyId, ExplTxt, Dimen, Typ, UserInfo) -> int"""
|
|
439
|
+
return _gdxcc.gdxDataWriteRawStart(pgdx, SyId, ExplTxt, Dimen, Typ, UserInfo)
|
|
440
|
+
|
|
441
|
+
def gdxDataWriteRawStartKeyBounds(pgdx, SyId, ExplTxt, Dimen, Typ, UserInfo, MinUELIndices, MaxUELIndices):
|
|
442
|
+
r"""gdxDataWriteRawStartKeyBounds(pgdx, SyId, ExplTxt, Dimen, Typ, UserInfo, MinUELIndices, MaxUELIndices) -> int"""
|
|
443
|
+
return _gdxcc.gdxDataWriteRawStartKeyBounds(pgdx, SyId, ExplTxt, Dimen, Typ, UserInfo, MinUELIndices, MaxUELIndices)
|
|
444
|
+
|
|
445
|
+
def gdxDataWriteStr(pgdx, KeyStr_in, Values):
|
|
446
|
+
r"""gdxDataWriteStr(pgdx, KeyStr_in, Values) -> int"""
|
|
447
|
+
return _gdxcc.gdxDataWriteStr(pgdx, KeyStr_in, Values)
|
|
448
|
+
|
|
449
|
+
def gdxDataWriteStrStart(pgdx, SyId, ExplTxt, Dimen, Typ, UserInfo):
|
|
450
|
+
r"""gdxDataWriteStrStart(pgdx, SyId, ExplTxt, Dimen, Typ, UserInfo) -> int"""
|
|
451
|
+
return _gdxcc.gdxDataWriteStrStart(pgdx, SyId, ExplTxt, Dimen, Typ, UserInfo)
|
|
452
|
+
|
|
453
|
+
def gdxGetDLLVersion(pgdx):
|
|
454
|
+
r"""gdxGetDLLVersion(pgdx) -> int"""
|
|
455
|
+
return _gdxcc.gdxGetDLLVersion(pgdx)
|
|
456
|
+
|
|
457
|
+
def gdxErrorCount(pgdx):
|
|
458
|
+
r"""gdxErrorCount(pgdx) -> int"""
|
|
459
|
+
return _gdxcc.gdxErrorCount(pgdx)
|
|
460
|
+
|
|
461
|
+
def gdxErrorStr(pgdx, ErrNr):
|
|
462
|
+
r"""gdxErrorStr(pgdx, ErrNr) -> int"""
|
|
463
|
+
return _gdxcc.gdxErrorStr(pgdx, ErrNr)
|
|
464
|
+
|
|
465
|
+
def gdxFileInfo(pgdx):
|
|
466
|
+
r"""gdxFileInfo(pgdx) -> int"""
|
|
467
|
+
return _gdxcc.gdxFileInfo(pgdx)
|
|
468
|
+
|
|
469
|
+
def gdxFileVersion(pgdx):
|
|
470
|
+
r"""gdxFileVersion(pgdx) -> int"""
|
|
471
|
+
return _gdxcc.gdxFileVersion(pgdx)
|
|
472
|
+
|
|
473
|
+
def gdxFilterExists(pgdx, FilterNr):
|
|
474
|
+
r"""gdxFilterExists(pgdx, FilterNr) -> int"""
|
|
475
|
+
return _gdxcc.gdxFilterExists(pgdx, FilterNr)
|
|
476
|
+
|
|
477
|
+
def gdxFilterRegister(pgdx, UelMap):
|
|
478
|
+
r"""gdxFilterRegister(pgdx, UelMap) -> int"""
|
|
479
|
+
return _gdxcc.gdxFilterRegister(pgdx, UelMap)
|
|
480
|
+
|
|
481
|
+
def gdxFilterRegisterDone(pgdx):
|
|
482
|
+
r"""gdxFilterRegisterDone(pgdx) -> int"""
|
|
483
|
+
return _gdxcc.gdxFilterRegisterDone(pgdx)
|
|
484
|
+
|
|
485
|
+
def gdxFilterRegisterStart(pgdx, FilterNr):
|
|
486
|
+
r"""gdxFilterRegisterStart(pgdx, FilterNr) -> int"""
|
|
487
|
+
return _gdxcc.gdxFilterRegisterStart(pgdx, FilterNr)
|
|
488
|
+
|
|
489
|
+
def gdxFindSymbol(pgdx, SyId):
|
|
490
|
+
r"""gdxFindSymbol(pgdx, SyId) -> int"""
|
|
491
|
+
return _gdxcc.gdxFindSymbol(pgdx, SyId)
|
|
492
|
+
|
|
493
|
+
def gdxGetElemText(pgdx, TxtNr):
|
|
494
|
+
r"""gdxGetElemText(pgdx, TxtNr) -> int"""
|
|
495
|
+
return _gdxcc.gdxGetElemText(pgdx, TxtNr)
|
|
496
|
+
|
|
497
|
+
def gdxGetLastError(pgdx):
|
|
498
|
+
r"""gdxGetLastError(pgdx) -> int"""
|
|
499
|
+
return _gdxcc.gdxGetLastError(pgdx)
|
|
500
|
+
|
|
501
|
+
def gdxGetMemoryUsed(pgdx):
|
|
502
|
+
r"""gdxGetMemoryUsed(pgdx) -> INT64"""
|
|
503
|
+
return _gdxcc.gdxGetMemoryUsed(pgdx)
|
|
504
|
+
|
|
505
|
+
def gdxGetSpecialValues(pgdx, AVals):
|
|
506
|
+
r"""gdxGetSpecialValues(pgdx, AVals) -> int"""
|
|
507
|
+
return _gdxcc.gdxGetSpecialValues(pgdx, AVals)
|
|
508
|
+
|
|
509
|
+
def gdxGetUEL(pgdx, UelNr):
|
|
510
|
+
r"""gdxGetUEL(pgdx, UelNr) -> int"""
|
|
511
|
+
return _gdxcc.gdxGetUEL(pgdx, UelNr)
|
|
512
|
+
|
|
513
|
+
def gdxMapValue(pgdx, D):
|
|
514
|
+
r"""gdxMapValue(pgdx, D) -> int"""
|
|
515
|
+
return _gdxcc.gdxMapValue(pgdx, D)
|
|
516
|
+
|
|
517
|
+
def gdxOpenAppend(pgdx, FileName, Producer):
|
|
518
|
+
r"""gdxOpenAppend(pgdx, FileName, Producer) -> int"""
|
|
519
|
+
return _gdxcc.gdxOpenAppend(pgdx, FileName, Producer)
|
|
520
|
+
|
|
521
|
+
def gdxOpenRead(pgdx, FileName):
|
|
522
|
+
r"""gdxOpenRead(pgdx, FileName) -> int"""
|
|
523
|
+
return _gdxcc.gdxOpenRead(pgdx, FileName)
|
|
524
|
+
|
|
525
|
+
def gdxOpenReadEx(pgdx, FileName, ReadMode):
|
|
526
|
+
r"""gdxOpenReadEx(pgdx, FileName, ReadMode) -> int"""
|
|
527
|
+
return _gdxcc.gdxOpenReadEx(pgdx, FileName, ReadMode)
|
|
528
|
+
|
|
529
|
+
def gdxOpenWrite(pgdx, FileName, Producer):
|
|
530
|
+
r"""gdxOpenWrite(pgdx, FileName, Producer) -> int"""
|
|
531
|
+
return _gdxcc.gdxOpenWrite(pgdx, FileName, Producer)
|
|
532
|
+
|
|
533
|
+
def gdxOpenWriteEx(pgdx, FileName, Producer, Compr):
|
|
534
|
+
r"""gdxOpenWriteEx(pgdx, FileName, Producer, Compr) -> int"""
|
|
535
|
+
return _gdxcc.gdxOpenWriteEx(pgdx, FileName, Producer, Compr)
|
|
536
|
+
|
|
537
|
+
def gdxResetSpecialValues(pgdx):
|
|
538
|
+
r"""gdxResetSpecialValues(pgdx) -> int"""
|
|
539
|
+
return _gdxcc.gdxResetSpecialValues(pgdx)
|
|
540
|
+
|
|
541
|
+
def gdxSetHasText(pgdx, SyNr):
|
|
542
|
+
r"""gdxSetHasText(pgdx, SyNr) -> int"""
|
|
543
|
+
return _gdxcc.gdxSetHasText(pgdx, SyNr)
|
|
544
|
+
|
|
545
|
+
def gdxSetReadSpecialValues(pgdx, AVals):
|
|
546
|
+
r"""gdxSetReadSpecialValues(pgdx, AVals) -> int"""
|
|
547
|
+
return _gdxcc.gdxSetReadSpecialValues(pgdx, AVals)
|
|
548
|
+
|
|
549
|
+
def gdxSetSpecialValues(pgdx, AVals):
|
|
550
|
+
r"""gdxSetSpecialValues(pgdx, AVals) -> int"""
|
|
551
|
+
return _gdxcc.gdxSetSpecialValues(pgdx, AVals)
|
|
552
|
+
|
|
553
|
+
def gdxSetTextNodeNr(pgdx, TxtNr, Node):
|
|
554
|
+
r"""gdxSetTextNodeNr(pgdx, TxtNr, Node) -> int"""
|
|
555
|
+
return _gdxcc.gdxSetTextNodeNr(pgdx, TxtNr, Node)
|
|
556
|
+
|
|
557
|
+
def gdxSetTraceLevel(pgdx, N, s):
|
|
558
|
+
r"""gdxSetTraceLevel(pgdx, N, s) -> int"""
|
|
559
|
+
return _gdxcc.gdxSetTraceLevel(pgdx, N, s)
|
|
560
|
+
|
|
561
|
+
def gdxSymbIndxMaxLength(pgdx, SyNr):
|
|
562
|
+
r"""gdxSymbIndxMaxLength(pgdx, SyNr) -> int"""
|
|
563
|
+
return _gdxcc.gdxSymbIndxMaxLength(pgdx, SyNr)
|
|
564
|
+
|
|
565
|
+
def gdxSymbMaxLength(pgdx):
|
|
566
|
+
r"""gdxSymbMaxLength(pgdx) -> int"""
|
|
567
|
+
return _gdxcc.gdxSymbMaxLength(pgdx)
|
|
568
|
+
|
|
569
|
+
def gdxSymbolAddComment(pgdx, SyNr, Txt):
|
|
570
|
+
r"""gdxSymbolAddComment(pgdx, SyNr, Txt) -> int"""
|
|
571
|
+
return _gdxcc.gdxSymbolAddComment(pgdx, SyNr, Txt)
|
|
572
|
+
|
|
573
|
+
def gdxSymbolGetComment(pgdx, SyNr, N):
|
|
574
|
+
r"""gdxSymbolGetComment(pgdx, SyNr, N) -> int"""
|
|
575
|
+
return _gdxcc.gdxSymbolGetComment(pgdx, SyNr, N)
|
|
576
|
+
|
|
577
|
+
def gdxSymbolGetDomain(pgdx, SyNr):
|
|
578
|
+
r"""gdxSymbolGetDomain(pgdx, SyNr) -> int"""
|
|
579
|
+
return _gdxcc.gdxSymbolGetDomain(pgdx, SyNr)
|
|
580
|
+
|
|
581
|
+
def gdxSymbolGetDomainX(pgdx, SyNr):
|
|
582
|
+
r"""gdxSymbolGetDomainX(pgdx, SyNr) -> int"""
|
|
583
|
+
return _gdxcc.gdxSymbolGetDomainX(pgdx, SyNr)
|
|
584
|
+
|
|
585
|
+
def gdxSymbolDim(pgdx, SyNr):
|
|
586
|
+
r"""gdxSymbolDim(pgdx, SyNr) -> int"""
|
|
587
|
+
return _gdxcc.gdxSymbolDim(pgdx, SyNr)
|
|
588
|
+
|
|
589
|
+
def gdxSymbolInfo(pgdx, SyNr):
|
|
590
|
+
r"""gdxSymbolInfo(pgdx, SyNr) -> int"""
|
|
591
|
+
return _gdxcc.gdxSymbolInfo(pgdx, SyNr)
|
|
592
|
+
|
|
593
|
+
def gdxSymbolInfoX(pgdx, SyNr):
|
|
594
|
+
r"""gdxSymbolInfoX(pgdx, SyNr) -> int"""
|
|
595
|
+
return _gdxcc.gdxSymbolInfoX(pgdx, SyNr)
|
|
596
|
+
|
|
597
|
+
def gdxSymbolSetDomain(pgdx, DomainIDs_in):
|
|
598
|
+
r"""gdxSymbolSetDomain(pgdx, DomainIDs_in) -> int"""
|
|
599
|
+
return _gdxcc.gdxSymbolSetDomain(pgdx, DomainIDs_in)
|
|
600
|
+
|
|
601
|
+
def gdxSymbolSetDomainX(pgdx, SyNr, DomainIDs_in):
|
|
602
|
+
r"""gdxSymbolSetDomainX(pgdx, SyNr, DomainIDs_in) -> int"""
|
|
603
|
+
return _gdxcc.gdxSymbolSetDomainX(pgdx, SyNr, DomainIDs_in)
|
|
604
|
+
|
|
605
|
+
def gdxSystemInfo(pgdx):
|
|
606
|
+
r"""gdxSystemInfo(pgdx) -> int"""
|
|
607
|
+
return _gdxcc.gdxSystemInfo(pgdx)
|
|
608
|
+
|
|
609
|
+
def gdxUELMaxLength(pgdx):
|
|
610
|
+
r"""gdxUELMaxLength(pgdx) -> int"""
|
|
611
|
+
return _gdxcc.gdxUELMaxLength(pgdx)
|
|
612
|
+
|
|
613
|
+
def gdxUELRegisterDone(pgdx):
|
|
614
|
+
r"""gdxUELRegisterDone(pgdx) -> int"""
|
|
615
|
+
return _gdxcc.gdxUELRegisterDone(pgdx)
|
|
616
|
+
|
|
617
|
+
def gdxUELRegisterMap(pgdx, UMap, Uel):
|
|
618
|
+
r"""gdxUELRegisterMap(pgdx, UMap, Uel) -> int"""
|
|
619
|
+
return _gdxcc.gdxUELRegisterMap(pgdx, UMap, Uel)
|
|
620
|
+
|
|
621
|
+
def gdxUELRegisterMapStart(pgdx):
|
|
622
|
+
r"""gdxUELRegisterMapStart(pgdx) -> int"""
|
|
623
|
+
return _gdxcc.gdxUELRegisterMapStart(pgdx)
|
|
624
|
+
|
|
625
|
+
def gdxUELRegisterRaw(pgdx, Uel):
|
|
626
|
+
r"""gdxUELRegisterRaw(pgdx, Uel) -> int"""
|
|
627
|
+
return _gdxcc.gdxUELRegisterRaw(pgdx, Uel)
|
|
628
|
+
|
|
629
|
+
def gdxUELRegisterRawStart(pgdx):
|
|
630
|
+
r"""gdxUELRegisterRawStart(pgdx) -> int"""
|
|
631
|
+
return _gdxcc.gdxUELRegisterRawStart(pgdx)
|
|
632
|
+
|
|
633
|
+
def gdxUELRegisterStr(pgdx, Uel):
|
|
634
|
+
r"""gdxUELRegisterStr(pgdx, Uel) -> int"""
|
|
635
|
+
return _gdxcc.gdxUELRegisterStr(pgdx, Uel)
|
|
636
|
+
|
|
637
|
+
def gdxUELRegisterStrStart(pgdx):
|
|
638
|
+
r"""gdxUELRegisterStrStart(pgdx) -> int"""
|
|
639
|
+
return _gdxcc.gdxUELRegisterStrStart(pgdx)
|
|
640
|
+
|
|
641
|
+
def gdxUMFindUEL(pgdx, Uel):
|
|
642
|
+
r"""gdxUMFindUEL(pgdx, Uel) -> int"""
|
|
643
|
+
return _gdxcc.gdxUMFindUEL(pgdx, Uel)
|
|
644
|
+
|
|
645
|
+
def gdxUMUelGet(pgdx, UelNr):
|
|
646
|
+
r"""gdxUMUelGet(pgdx, UelNr) -> int"""
|
|
647
|
+
return _gdxcc.gdxUMUelGet(pgdx, UelNr)
|
|
648
|
+
|
|
649
|
+
def gdxUMUelInfo(pgdx):
|
|
650
|
+
r"""gdxUMUelInfo(pgdx) -> int"""
|
|
651
|
+
return _gdxcc.gdxUMUelInfo(pgdx)
|
|
652
|
+
|
|
653
|
+
def gdxGetDomainElements(pgdx, SyNr, DimPos, FilterNr, DP, Uptr):
|
|
654
|
+
r"""gdxGetDomainElements(pgdx, SyNr, DimPos, FilterNr, DP, Uptr) -> int"""
|
|
655
|
+
return _gdxcc.gdxGetDomainElements(pgdx, SyNr, DimPos, FilterNr, DP, Uptr)
|
|
656
|
+
|
|
657
|
+
def gdxCurrentDim(pgdx):
|
|
658
|
+
r"""gdxCurrentDim(pgdx) -> int"""
|
|
659
|
+
return _gdxcc.gdxCurrentDim(pgdx)
|
|
660
|
+
|
|
661
|
+
def gdxRenameUEL(pgdx, OldName, NewName):
|
|
662
|
+
r"""gdxRenameUEL(pgdx, OldName, NewName) -> int"""
|
|
663
|
+
return _gdxcc.gdxRenameUEL(pgdx, OldName, NewName)
|
|
664
|
+
|
|
665
|
+
def gdxStoreDomainSets(pgdx):
|
|
666
|
+
r"""gdxStoreDomainSets(pgdx) -> int"""
|
|
667
|
+
return _gdxcc.gdxStoreDomainSets(pgdx)
|
|
668
|
+
|
|
669
|
+
def gdxStoreDomainSetsSet(pgdx, x):
|
|
670
|
+
r"""gdxStoreDomainSetsSet(pgdx, x)"""
|
|
671
|
+
return _gdxcc.gdxStoreDomainSetsSet(pgdx, x)
|
|
672
|
+
|
|
673
|
+
def gdxAllowBogusDomains(pgdx):
|
|
674
|
+
r"""gdxAllowBogusDomains(pgdx) -> int"""
|
|
675
|
+
return _gdxcc.gdxAllowBogusDomains(pgdx)
|
|
676
|
+
|
|
677
|
+
def gdxAllowBogusDomainsSet(pgdx, x):
|
|
678
|
+
r"""gdxAllowBogusDomainsSet(pgdx, x)"""
|
|
679
|
+
return _gdxcc.gdxAllowBogusDomainsSet(pgdx, x)
|
|
680
|
+
|
|
681
|
+
def gdxMapAcronymsToNaN(pgdx):
|
|
682
|
+
r"""gdxMapAcronymsToNaN(pgdx) -> int"""
|
|
683
|
+
return _gdxcc.gdxMapAcronymsToNaN(pgdx)
|
|
684
|
+
|
|
685
|
+
def gdxMapAcronymsToNaNSet(pgdx, x):
|
|
686
|
+
r"""gdxMapAcronymsToNaNSet(pgdx, x)"""
|
|
687
|
+
return _gdxcc.gdxMapAcronymsToNaNSet(pgdx, x)
|
|
688
|
+
GLOBAL_MAX_INDEX_DIM = _gdxcc.GLOBAL_MAX_INDEX_DIM
|
|
689
|
+
|
|
690
|
+
GLOBAL_UEL_IDENT_SIZE = _gdxcc.GLOBAL_UEL_IDENT_SIZE
|
|
691
|
+
|
|
692
|
+
ITERLIM_INFINITY = _gdxcc.ITERLIM_INFINITY
|
|
693
|
+
|
|
694
|
+
RESLIM_INFINITY = _gdxcc.RESLIM_INFINITY
|
|
695
|
+
|
|
696
|
+
GMS_MAX_SOLVERS = _gdxcc.GMS_MAX_SOLVERS
|
|
697
|
+
|
|
698
|
+
GMS_MAX_INDEX_DIM = _gdxcc.GMS_MAX_INDEX_DIM
|
|
699
|
+
|
|
700
|
+
GMS_UEL_IDENT_SIZE = _gdxcc.GMS_UEL_IDENT_SIZE
|
|
701
|
+
|
|
702
|
+
GMS_SSSIZE = _gdxcc.GMS_SSSIZE
|
|
703
|
+
|
|
704
|
+
GMS_VARTYPE_UNKNOWN = _gdxcc.GMS_VARTYPE_UNKNOWN
|
|
705
|
+
|
|
706
|
+
GMS_VARTYPE_BINARY = _gdxcc.GMS_VARTYPE_BINARY
|
|
707
|
+
|
|
708
|
+
GMS_VARTYPE_INTEGER = _gdxcc.GMS_VARTYPE_INTEGER
|
|
709
|
+
|
|
710
|
+
GMS_VARTYPE_POSITIVE = _gdxcc.GMS_VARTYPE_POSITIVE
|
|
711
|
+
|
|
712
|
+
GMS_VARTYPE_NEGATIVE = _gdxcc.GMS_VARTYPE_NEGATIVE
|
|
713
|
+
|
|
714
|
+
GMS_VARTYPE_FREE = _gdxcc.GMS_VARTYPE_FREE
|
|
715
|
+
|
|
716
|
+
GMS_VARTYPE_SOS1 = _gdxcc.GMS_VARTYPE_SOS1
|
|
717
|
+
|
|
718
|
+
GMS_VARTYPE_SOS2 = _gdxcc.GMS_VARTYPE_SOS2
|
|
719
|
+
|
|
720
|
+
GMS_VARTYPE_SEMICONT = _gdxcc.GMS_VARTYPE_SEMICONT
|
|
721
|
+
|
|
722
|
+
GMS_VARTYPE_SEMIINT = _gdxcc.GMS_VARTYPE_SEMIINT
|
|
723
|
+
|
|
724
|
+
GMS_VARTYPE_MAX = _gdxcc.GMS_VARTYPE_MAX
|
|
725
|
+
|
|
726
|
+
GMS_EQU_USERINFO_BASE = _gdxcc.GMS_EQU_USERINFO_BASE
|
|
727
|
+
|
|
728
|
+
GMS_EQUTYPE_E = _gdxcc.GMS_EQUTYPE_E
|
|
729
|
+
|
|
730
|
+
GMS_EQUTYPE_G = _gdxcc.GMS_EQUTYPE_G
|
|
731
|
+
|
|
732
|
+
GMS_EQUTYPE_L = _gdxcc.GMS_EQUTYPE_L
|
|
733
|
+
|
|
734
|
+
GMS_EQUTYPE_N = _gdxcc.GMS_EQUTYPE_N
|
|
735
|
+
|
|
736
|
+
GMS_EQUTYPE_X = _gdxcc.GMS_EQUTYPE_X
|
|
737
|
+
|
|
738
|
+
GMS_EQUTYPE_C = _gdxcc.GMS_EQUTYPE_C
|
|
739
|
+
|
|
740
|
+
GMS_EQUTYPE_B = _gdxcc.GMS_EQUTYPE_B
|
|
741
|
+
|
|
742
|
+
GMS_EQUTYPE_MAX = _gdxcc.GMS_EQUTYPE_MAX
|
|
743
|
+
|
|
744
|
+
GMS_EQUEOFFSET = _gdxcc.GMS_EQUEOFFSET
|
|
745
|
+
|
|
746
|
+
GMS_SETTYPE_DEFAULT = _gdxcc.GMS_SETTYPE_DEFAULT
|
|
747
|
+
|
|
748
|
+
GMS_SETTYPE_SINGLETON = _gdxcc.GMS_SETTYPE_SINGLETON
|
|
749
|
+
|
|
750
|
+
GMS_SETTYPE_MAX = _gdxcc.GMS_SETTYPE_MAX
|
|
751
|
+
|
|
752
|
+
GMS_VAL_LEVEL = _gdxcc.GMS_VAL_LEVEL
|
|
753
|
+
|
|
754
|
+
GMS_VAL_MARGINAL = _gdxcc.GMS_VAL_MARGINAL
|
|
755
|
+
|
|
756
|
+
GMS_VAL_LOWER = _gdxcc.GMS_VAL_LOWER
|
|
757
|
+
|
|
758
|
+
GMS_VAL_UPPER = _gdxcc.GMS_VAL_UPPER
|
|
759
|
+
|
|
760
|
+
GMS_VAL_SCALE = _gdxcc.GMS_VAL_SCALE
|
|
761
|
+
|
|
762
|
+
GMS_VAL_MAX = _gdxcc.GMS_VAL_MAX
|
|
763
|
+
|
|
764
|
+
sv_valund = _gdxcc.sv_valund
|
|
765
|
+
|
|
766
|
+
sv_valna = _gdxcc.sv_valna
|
|
767
|
+
|
|
768
|
+
sv_valpin = _gdxcc.sv_valpin
|
|
769
|
+
|
|
770
|
+
sv_valmin = _gdxcc.sv_valmin
|
|
771
|
+
|
|
772
|
+
sv_valeps = _gdxcc.sv_valeps
|
|
773
|
+
|
|
774
|
+
sv_normal = _gdxcc.sv_normal
|
|
775
|
+
|
|
776
|
+
sv_acronym = _gdxcc.sv_acronym
|
|
777
|
+
|
|
778
|
+
GMS_SVIDX_UNDEF = _gdxcc.GMS_SVIDX_UNDEF
|
|
779
|
+
|
|
780
|
+
GMS_SVIDX_NA = _gdxcc.GMS_SVIDX_NA
|
|
781
|
+
|
|
782
|
+
GMS_SVIDX_PINF = _gdxcc.GMS_SVIDX_PINF
|
|
783
|
+
|
|
784
|
+
GMS_SVIDX_MINF = _gdxcc.GMS_SVIDX_MINF
|
|
785
|
+
|
|
786
|
+
GMS_SVIDX_EPS = _gdxcc.GMS_SVIDX_EPS
|
|
787
|
+
|
|
788
|
+
GMS_SVIDX_NORMAL = _gdxcc.GMS_SVIDX_NORMAL
|
|
789
|
+
|
|
790
|
+
GMS_SVIDX_ACR = _gdxcc.GMS_SVIDX_ACR
|
|
791
|
+
|
|
792
|
+
GMS_SVIDX_MAX = _gdxcc.GMS_SVIDX_MAX
|
|
793
|
+
|
|
794
|
+
dt_set = _gdxcc.dt_set
|
|
795
|
+
|
|
796
|
+
dt_par = _gdxcc.dt_par
|
|
797
|
+
|
|
798
|
+
dt_var = _gdxcc.dt_var
|
|
799
|
+
|
|
800
|
+
dt_equ = _gdxcc.dt_equ
|
|
801
|
+
|
|
802
|
+
dt_alias = _gdxcc.dt_alias
|
|
803
|
+
|
|
804
|
+
GMS_DT_SET = _gdxcc.GMS_DT_SET
|
|
805
|
+
|
|
806
|
+
GMS_DT_PAR = _gdxcc.GMS_DT_PAR
|
|
807
|
+
|
|
808
|
+
GMS_DT_VAR = _gdxcc.GMS_DT_VAR
|
|
809
|
+
|
|
810
|
+
GMS_DT_EQU = _gdxcc.GMS_DT_EQU
|
|
811
|
+
|
|
812
|
+
GMS_DT_ALIAS = _gdxcc.GMS_DT_ALIAS
|
|
813
|
+
|
|
814
|
+
GMS_DT_MAX = _gdxcc.GMS_DT_MAX
|
|
815
|
+
|
|
816
|
+
GMS_SV_UNDEF = _gdxcc.GMS_SV_UNDEF
|
|
817
|
+
|
|
818
|
+
GMS_SV_NA = _gdxcc.GMS_SV_NA
|
|
819
|
+
|
|
820
|
+
GMS_SV_PINF = _gdxcc.GMS_SV_PINF
|
|
821
|
+
|
|
822
|
+
GMS_SV_MINF = _gdxcc.GMS_SV_MINF
|
|
823
|
+
|
|
824
|
+
GMS_SV_EPS = _gdxcc.GMS_SV_EPS
|
|
825
|
+
|
|
826
|
+
GMS_SV_ACR = _gdxcc.GMS_SV_ACR
|
|
827
|
+
|
|
828
|
+
GMS_SV_NAINT = _gdxcc.GMS_SV_NAINT
|
|
829
|
+
|
|
830
|
+
STAT_OK = _gdxcc.STAT_OK
|
|
831
|
+
|
|
832
|
+
STAT_NOPT = _gdxcc.STAT_NOPT
|
|
833
|
+
|
|
834
|
+
STAT_INFES = _gdxcc.STAT_INFES
|
|
835
|
+
|
|
836
|
+
STAT_UNBND = _gdxcc.STAT_UNBND
|
|
837
|
+
|
|
838
|
+
STAT_EVAL = _gdxcc.STAT_EVAL
|
|
839
|
+
|
|
840
|
+
STAT_UNKNW = _gdxcc.STAT_UNKNW
|
|
841
|
+
|
|
842
|
+
STAT_REDEF = _gdxcc.STAT_REDEF
|
|
843
|
+
|
|
844
|
+
STAT_DEPND = _gdxcc.STAT_DEPND
|
|
845
|
+
|
|
846
|
+
STAT_REDIR = _gdxcc.STAT_REDIR
|
|
847
|
+
|
|
848
|
+
STAT_MAX = _gdxcc.STAT_MAX
|
|
849
|
+
|
|
850
|
+
SS_MAX = _gdxcc.SS_MAX
|
|
851
|
+
|
|
852
|
+
MS_MAX = _gdxcc.MS_MAX
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
cvar = _gdxcc.cvar
|
|
856
|
+
gmsGdxTypeText = cvar.gmsGdxTypeText
|
|
857
|
+
gmsVarTypeText = cvar.gmsVarTypeText
|
|
858
|
+
gmsValTypeText = cvar.gmsValTypeText
|
|
859
|
+
gmsSVText = cvar.gmsSVText
|
|
860
|
+
gmsSpecialValues = cvar.gmsSpecialValues
|
|
861
|
+
gmsDefRecVar = cvar.gmsDefRecVar
|
|
862
|
+
gmsDefRecEqu = cvar.gmsDefRecEqu
|
|
863
|
+
rcStat = cvar.rcStat
|
|
864
|
+
solveStatusTxt = cvar.solveStatusTxt
|
|
865
|
+
modelStatusTxt = cvar.modelStatusTxt
|
|
866
|
+
|