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/opt/optcc.py
ADDED
|
@@ -0,0 +1,840 @@
|
|
|
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.opt import _optcc
|
|
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
|
+
optDataNone = _optcc.optDataNone
|
|
58
|
+
optDataInteger = _optcc.optDataInteger
|
|
59
|
+
optDataDouble = _optcc.optDataDouble
|
|
60
|
+
optDataString = _optcc.optDataString
|
|
61
|
+
optDataStrList = _optcc.optDataStrList
|
|
62
|
+
optTypeInteger = _optcc.optTypeInteger
|
|
63
|
+
optTypeDouble = _optcc.optTypeDouble
|
|
64
|
+
optTypeString = _optcc.optTypeString
|
|
65
|
+
optTypeBoolean = _optcc.optTypeBoolean
|
|
66
|
+
optTypeEnumStr = _optcc.optTypeEnumStr
|
|
67
|
+
optTypeEnumInt = _optcc.optTypeEnumInt
|
|
68
|
+
optTypeMultiList = _optcc.optTypeMultiList
|
|
69
|
+
optTypeStrList = _optcc.optTypeStrList
|
|
70
|
+
optTypeMacro = _optcc.optTypeMacro
|
|
71
|
+
optTypeImmediate = _optcc.optTypeImmediate
|
|
72
|
+
optsubRequired = _optcc.optsubRequired
|
|
73
|
+
optsubNoValue = _optcc.optsubNoValue
|
|
74
|
+
optsubOptional = _optcc.optsubOptional
|
|
75
|
+
optsub2Values = _optcc.optsub2Values
|
|
76
|
+
optMsgInputEcho = _optcc.optMsgInputEcho
|
|
77
|
+
optMsgHelp = _optcc.optMsgHelp
|
|
78
|
+
optMsgDefineError = _optcc.optMsgDefineError
|
|
79
|
+
optMsgValueError = _optcc.optMsgValueError
|
|
80
|
+
optMsgValueWarning = _optcc.optMsgValueWarning
|
|
81
|
+
optMsgDeprecated = _optcc.optMsgDeprecated
|
|
82
|
+
optMsgFileEnter = _optcc.optMsgFileEnter
|
|
83
|
+
optMsgFileLeave = _optcc.optMsgFileLeave
|
|
84
|
+
optMsgTooManyMsgs = _optcc.optMsgTooManyMsgs
|
|
85
|
+
optMsgUserError = _optcc.optMsgUserError
|
|
86
|
+
optMapIndicator = _optcc.optMapIndicator
|
|
87
|
+
optMapDefinedVar = _optcc.optMapDefinedVar
|
|
88
|
+
class intArray(object):
|
|
89
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
|
90
|
+
__repr__ = _swig_repr
|
|
91
|
+
|
|
92
|
+
def __init__(self, nelements):
|
|
93
|
+
_optcc.intArray_swiginit(self, _optcc.new_intArray(nelements))
|
|
94
|
+
__swig_destroy__ = _optcc.delete_intArray
|
|
95
|
+
|
|
96
|
+
def __getitem__(self, index):
|
|
97
|
+
return _optcc.intArray___getitem__(self, index)
|
|
98
|
+
|
|
99
|
+
def __setitem__(self, index, value):
|
|
100
|
+
return _optcc.intArray___setitem__(self, index, value)
|
|
101
|
+
|
|
102
|
+
def cast(self):
|
|
103
|
+
return _optcc.intArray_cast(self)
|
|
104
|
+
|
|
105
|
+
@staticmethod
|
|
106
|
+
def frompointer(t):
|
|
107
|
+
return _optcc.intArray_frompointer(t)
|
|
108
|
+
|
|
109
|
+
# Register intArray in _optcc:
|
|
110
|
+
_optcc.intArray_swigregister(intArray)
|
|
111
|
+
class doubleArray(object):
|
|
112
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
|
113
|
+
__repr__ = _swig_repr
|
|
114
|
+
|
|
115
|
+
def __init__(self, nelements):
|
|
116
|
+
_optcc.doubleArray_swiginit(self, _optcc.new_doubleArray(nelements))
|
|
117
|
+
__swig_destroy__ = _optcc.delete_doubleArray
|
|
118
|
+
|
|
119
|
+
def __getitem__(self, index):
|
|
120
|
+
return _optcc.doubleArray___getitem__(self, index)
|
|
121
|
+
|
|
122
|
+
def __setitem__(self, index, value):
|
|
123
|
+
return _optcc.doubleArray___setitem__(self, index, value)
|
|
124
|
+
|
|
125
|
+
def cast(self):
|
|
126
|
+
return _optcc.doubleArray_cast(self)
|
|
127
|
+
|
|
128
|
+
@staticmethod
|
|
129
|
+
def frompointer(t):
|
|
130
|
+
return _optcc.doubleArray_frompointer(t)
|
|
131
|
+
|
|
132
|
+
# Register doubleArray in _optcc:
|
|
133
|
+
_optcc.doubleArray_swigregister(doubleArray)
|
|
134
|
+
|
|
135
|
+
def new_intp():
|
|
136
|
+
return _optcc.new_intp()
|
|
137
|
+
|
|
138
|
+
def copy_intp(value):
|
|
139
|
+
return _optcc.copy_intp(value)
|
|
140
|
+
|
|
141
|
+
def delete_intp(obj):
|
|
142
|
+
return _optcc.delete_intp(obj)
|
|
143
|
+
|
|
144
|
+
def intp_assign(obj, value):
|
|
145
|
+
return _optcc.intp_assign(obj, value)
|
|
146
|
+
|
|
147
|
+
def intp_value(obj):
|
|
148
|
+
return _optcc.intp_value(obj)
|
|
149
|
+
|
|
150
|
+
def new_doublep():
|
|
151
|
+
return _optcc.new_doublep()
|
|
152
|
+
|
|
153
|
+
def copy_doublep(value):
|
|
154
|
+
return _optcc.copy_doublep(value)
|
|
155
|
+
|
|
156
|
+
def delete_doublep(obj):
|
|
157
|
+
return _optcc.delete_doublep(obj)
|
|
158
|
+
|
|
159
|
+
def doublep_assign(obj, value):
|
|
160
|
+
return _optcc.doublep_assign(obj, value)
|
|
161
|
+
|
|
162
|
+
def doublep_value(obj):
|
|
163
|
+
return _optcc.doublep_value(obj)
|
|
164
|
+
|
|
165
|
+
def new_optHandle_tp():
|
|
166
|
+
return _optcc.new_optHandle_tp()
|
|
167
|
+
|
|
168
|
+
def copy_optHandle_tp(value):
|
|
169
|
+
return _optcc.copy_optHandle_tp(value)
|
|
170
|
+
|
|
171
|
+
def delete_optHandle_tp(obj):
|
|
172
|
+
return _optcc.delete_optHandle_tp(obj)
|
|
173
|
+
|
|
174
|
+
def optHandle_tp_assign(obj, value):
|
|
175
|
+
return _optcc.optHandle_tp_assign(obj, value)
|
|
176
|
+
|
|
177
|
+
def optHandle_tp_value(obj):
|
|
178
|
+
return _optcc.optHandle_tp_value(obj)
|
|
179
|
+
|
|
180
|
+
def new_TArgvCB_tp():
|
|
181
|
+
return _optcc.new_TArgvCB_tp()
|
|
182
|
+
|
|
183
|
+
def copy_TArgvCB_tp(value):
|
|
184
|
+
return _optcc.copy_TArgvCB_tp(value)
|
|
185
|
+
|
|
186
|
+
def delete_TArgvCB_tp(obj):
|
|
187
|
+
return _optcc.delete_TArgvCB_tp(obj)
|
|
188
|
+
|
|
189
|
+
def TArgvCB_tp_assign(obj, value):
|
|
190
|
+
return _optcc.TArgvCB_tp_assign(obj, value)
|
|
191
|
+
|
|
192
|
+
def TArgvCB_tp_value(obj):
|
|
193
|
+
return _optcc.TArgvCB_tp_value(obj)
|
|
194
|
+
|
|
195
|
+
def optHandleToPtr(popt):
|
|
196
|
+
r"""optHandleToPtr(popt) -> void *"""
|
|
197
|
+
return _optcc.optHandleToPtr(popt)
|
|
198
|
+
|
|
199
|
+
def ptrTooptHandle(vptr):
|
|
200
|
+
r"""ptrTooptHandle(vptr) -> optHandle_t"""
|
|
201
|
+
return _optcc.ptrTooptHandle(vptr)
|
|
202
|
+
|
|
203
|
+
def optGetReady(msgBufSize):
|
|
204
|
+
r"""optGetReady(msgBufSize) -> int"""
|
|
205
|
+
return _optcc.optGetReady(msgBufSize)
|
|
206
|
+
|
|
207
|
+
def optGetReadyD(dirName, msgBufSize):
|
|
208
|
+
r"""optGetReadyD(dirName, msgBufSize) -> int"""
|
|
209
|
+
return _optcc.optGetReadyD(dirName, msgBufSize)
|
|
210
|
+
|
|
211
|
+
def optGetReadyL(libName, msgBufSize):
|
|
212
|
+
r"""optGetReadyL(libName, msgBufSize) -> int"""
|
|
213
|
+
return _optcc.optGetReadyL(libName, msgBufSize)
|
|
214
|
+
|
|
215
|
+
def optCreate(popt, msgBufSize):
|
|
216
|
+
r"""optCreate(popt, msgBufSize) -> int"""
|
|
217
|
+
return _optcc.optCreate(popt, msgBufSize)
|
|
218
|
+
|
|
219
|
+
def optCreateD(popt, dirName, msgBufSize):
|
|
220
|
+
r"""optCreateD(popt, dirName, msgBufSize) -> int"""
|
|
221
|
+
return _optcc.optCreateD(popt, dirName, msgBufSize)
|
|
222
|
+
|
|
223
|
+
def optCreateL(popt, libName, msgBufSize):
|
|
224
|
+
r"""optCreateL(popt, libName, msgBufSize) -> int"""
|
|
225
|
+
return _optcc.optCreateL(popt, libName, msgBufSize)
|
|
226
|
+
|
|
227
|
+
def optFree(popt):
|
|
228
|
+
r"""optFree(popt) -> int"""
|
|
229
|
+
return _optcc.optFree(popt)
|
|
230
|
+
|
|
231
|
+
def optLibraryLoaded():
|
|
232
|
+
r"""optLibraryLoaded() -> int"""
|
|
233
|
+
return _optcc.optLibraryLoaded()
|
|
234
|
+
|
|
235
|
+
def optLibraryUnload():
|
|
236
|
+
r"""optLibraryUnload() -> int"""
|
|
237
|
+
return _optcc.optLibraryUnload()
|
|
238
|
+
|
|
239
|
+
def optGetScreenIndicator():
|
|
240
|
+
r"""optGetScreenIndicator() -> int"""
|
|
241
|
+
return _optcc.optGetScreenIndicator()
|
|
242
|
+
|
|
243
|
+
def optSetScreenIndicator(scrind):
|
|
244
|
+
r"""optSetScreenIndicator(scrind)"""
|
|
245
|
+
return _optcc.optSetScreenIndicator(scrind)
|
|
246
|
+
|
|
247
|
+
def optGetExceptionIndicator():
|
|
248
|
+
r"""optGetExceptionIndicator() -> int"""
|
|
249
|
+
return _optcc.optGetExceptionIndicator()
|
|
250
|
+
|
|
251
|
+
def optSetExceptionIndicator(excind):
|
|
252
|
+
r"""optSetExceptionIndicator(excind)"""
|
|
253
|
+
return _optcc.optSetExceptionIndicator(excind)
|
|
254
|
+
|
|
255
|
+
def optGetExitIndicator():
|
|
256
|
+
r"""optGetExitIndicator() -> int"""
|
|
257
|
+
return _optcc.optGetExitIndicator()
|
|
258
|
+
|
|
259
|
+
def optSetExitIndicator(extind):
|
|
260
|
+
r"""optSetExitIndicator(extind)"""
|
|
261
|
+
return _optcc.optSetExitIndicator(extind)
|
|
262
|
+
|
|
263
|
+
def optGetErrorCallback():
|
|
264
|
+
r"""optGetErrorCallback() -> optErrorCallback_t"""
|
|
265
|
+
return _optcc.optGetErrorCallback()
|
|
266
|
+
|
|
267
|
+
def optSetErrorCallback(func):
|
|
268
|
+
r"""optSetErrorCallback(func)"""
|
|
269
|
+
return _optcc.optSetErrorCallback(func)
|
|
270
|
+
|
|
271
|
+
def optGetAPIErrorCount():
|
|
272
|
+
r"""optGetAPIErrorCount() -> int"""
|
|
273
|
+
return _optcc.optGetAPIErrorCount()
|
|
274
|
+
|
|
275
|
+
def optSetAPIErrorCount(ecnt):
|
|
276
|
+
r"""optSetAPIErrorCount(ecnt)"""
|
|
277
|
+
return _optcc.optSetAPIErrorCount(ecnt)
|
|
278
|
+
|
|
279
|
+
def optErrorHandling(msg):
|
|
280
|
+
r"""optErrorHandling(msg)"""
|
|
281
|
+
return _optcc.optErrorHandling(msg)
|
|
282
|
+
|
|
283
|
+
def optReadDefinition(popt, fn):
|
|
284
|
+
r"""optReadDefinition(popt, fn) -> int"""
|
|
285
|
+
return _optcc.optReadDefinition(popt, fn)
|
|
286
|
+
|
|
287
|
+
def optReadDefinitionFromPChar(popt, p_mut):
|
|
288
|
+
r"""optReadDefinitionFromPChar(popt, p_mut) -> int"""
|
|
289
|
+
return _optcc.optReadDefinitionFromPChar(popt, p_mut)
|
|
290
|
+
|
|
291
|
+
def optReadParameterFile(popt, fn):
|
|
292
|
+
r"""optReadParameterFile(popt, fn) -> int"""
|
|
293
|
+
return _optcc.optReadParameterFile(popt, fn)
|
|
294
|
+
|
|
295
|
+
def optReadFromStr(popt, s):
|
|
296
|
+
r"""optReadFromStr(popt, s)"""
|
|
297
|
+
return _optcc.optReadFromStr(popt, s)
|
|
298
|
+
|
|
299
|
+
def optWriteParameterFile(popt, fn):
|
|
300
|
+
r"""optWriteParameterFile(popt, fn) -> int"""
|
|
301
|
+
return _optcc.optWriteParameterFile(popt, fn)
|
|
302
|
+
|
|
303
|
+
def optClearMessages(popt):
|
|
304
|
+
r"""optClearMessages(popt)"""
|
|
305
|
+
return _optcc.optClearMessages(popt)
|
|
306
|
+
|
|
307
|
+
def optAddMessage(popt, info):
|
|
308
|
+
r"""optAddMessage(popt, info)"""
|
|
309
|
+
return _optcc.optAddMessage(popt, info)
|
|
310
|
+
|
|
311
|
+
def optGetMessage(popt, NrMsg):
|
|
312
|
+
r"""optGetMessage(popt, NrMsg)"""
|
|
313
|
+
return _optcc.optGetMessage(popt, NrMsg)
|
|
314
|
+
|
|
315
|
+
def optResetAll(popt):
|
|
316
|
+
r"""optResetAll(popt)"""
|
|
317
|
+
return _optcc.optResetAll(popt)
|
|
318
|
+
|
|
319
|
+
def optResetAllRecent(popt):
|
|
320
|
+
r"""optResetAllRecent(popt)"""
|
|
321
|
+
return _optcc.optResetAllRecent(popt)
|
|
322
|
+
|
|
323
|
+
def optResetRecentChanges(popt):
|
|
324
|
+
r"""optResetRecentChanges(popt)"""
|
|
325
|
+
return _optcc.optResetRecentChanges(popt)
|
|
326
|
+
|
|
327
|
+
def optShowHelp(popt, AHlpID):
|
|
328
|
+
r"""optShowHelp(popt, AHlpID)"""
|
|
329
|
+
return _optcc.optShowHelp(popt, AHlpID)
|
|
330
|
+
|
|
331
|
+
def optResetNr(popt, ANr):
|
|
332
|
+
r"""optResetNr(popt, ANr) -> int"""
|
|
333
|
+
return _optcc.optResetNr(popt, ANr)
|
|
334
|
+
|
|
335
|
+
def optFindStr(popt, AName):
|
|
336
|
+
r"""optFindStr(popt, AName) -> int"""
|
|
337
|
+
return _optcc.optFindStr(popt, AName)
|
|
338
|
+
|
|
339
|
+
def optGetInfoNr(popt, ANr):
|
|
340
|
+
r"""optGetInfoNr(popt, ANr) -> int"""
|
|
341
|
+
return _optcc.optGetInfoNr(popt, ANr)
|
|
342
|
+
|
|
343
|
+
def optGetValuesNr(popt, ANr):
|
|
344
|
+
r"""optGetValuesNr(popt, ANr) -> int"""
|
|
345
|
+
return _optcc.optGetValuesNr(popt, ANr)
|
|
346
|
+
|
|
347
|
+
def optSetValuesNr(popt, ANr, AIVal, ADVal, ASVal):
|
|
348
|
+
r"""optSetValuesNr(popt, ANr, AIVal, ADVal, ASVal) -> int"""
|
|
349
|
+
return _optcc.optSetValuesNr(popt, ANr, AIVal, ADVal, ASVal)
|
|
350
|
+
|
|
351
|
+
def optSetValues2Nr(popt, ANr, AIVal, ADVal, ASVal):
|
|
352
|
+
r"""optSetValues2Nr(popt, ANr, AIVal, ADVal, ASVal) -> int"""
|
|
353
|
+
return _optcc.optSetValues2Nr(popt, ANr, AIVal, ADVal, ASVal)
|
|
354
|
+
|
|
355
|
+
def optVersion(popt):
|
|
356
|
+
r"""optVersion(popt)"""
|
|
357
|
+
return _optcc.optVersion(popt)
|
|
358
|
+
|
|
359
|
+
def optDefinitionFile(popt):
|
|
360
|
+
r"""optDefinitionFile(popt)"""
|
|
361
|
+
return _optcc.optDefinitionFile(popt)
|
|
362
|
+
|
|
363
|
+
def optGetFromAnyStrList(popt, idash):
|
|
364
|
+
r"""optGetFromAnyStrList(popt, idash) -> int"""
|
|
365
|
+
return _optcc.optGetFromAnyStrList(popt, idash)
|
|
366
|
+
|
|
367
|
+
def optGetFromListStr(popt, skey):
|
|
368
|
+
r"""optGetFromListStr(popt, skey) -> int"""
|
|
369
|
+
return _optcc.optGetFromListStr(popt, skey)
|
|
370
|
+
|
|
371
|
+
def optListCountStr(popt, skey):
|
|
372
|
+
r"""optListCountStr(popt, skey) -> int"""
|
|
373
|
+
return _optcc.optListCountStr(popt, skey)
|
|
374
|
+
|
|
375
|
+
def optReadFromListStr(popt, skey, iPos):
|
|
376
|
+
r"""optReadFromListStr(popt, skey, iPos) -> int"""
|
|
377
|
+
return _optcc.optReadFromListStr(popt, skey, iPos)
|
|
378
|
+
|
|
379
|
+
def optSynonymCount(popt):
|
|
380
|
+
r"""optSynonymCount(popt) -> int"""
|
|
381
|
+
return _optcc.optSynonymCount(popt)
|
|
382
|
+
|
|
383
|
+
def optGetSynonym(popt, NrSyn):
|
|
384
|
+
r"""optGetSynonym(popt, NrSyn) -> int"""
|
|
385
|
+
return _optcc.optGetSynonym(popt, NrSyn)
|
|
386
|
+
|
|
387
|
+
def optEchoSet(popt, AIVal):
|
|
388
|
+
r"""optEchoSet(popt, AIVal)"""
|
|
389
|
+
return _optcc.optEchoSet(popt, AIVal)
|
|
390
|
+
|
|
391
|
+
def optEOLOnlySet(popt, AIVal):
|
|
392
|
+
r"""optEOLOnlySet(popt, AIVal) -> int"""
|
|
393
|
+
return _optcc.optEOLOnlySet(popt, AIVal)
|
|
394
|
+
|
|
395
|
+
def optNoBoundsSet(popt, AIVal):
|
|
396
|
+
r"""optNoBoundsSet(popt, AIVal)"""
|
|
397
|
+
return _optcc.optNoBoundsSet(popt, AIVal)
|
|
398
|
+
|
|
399
|
+
def optEOLChars(popt):
|
|
400
|
+
r"""optEOLChars(popt) -> int"""
|
|
401
|
+
return _optcc.optEOLChars(popt)
|
|
402
|
+
|
|
403
|
+
def optErrorCount(popt):
|
|
404
|
+
r"""optErrorCount(popt)"""
|
|
405
|
+
return _optcc.optErrorCount(popt)
|
|
406
|
+
|
|
407
|
+
def optGetBoundsInt(popt, ANr):
|
|
408
|
+
r"""optGetBoundsInt(popt, ANr) -> int"""
|
|
409
|
+
return _optcc.optGetBoundsInt(popt, ANr)
|
|
410
|
+
|
|
411
|
+
def optGetBoundsDbl(popt, ANr):
|
|
412
|
+
r"""optGetBoundsDbl(popt, ANr) -> int"""
|
|
413
|
+
return _optcc.optGetBoundsDbl(popt, ANr)
|
|
414
|
+
|
|
415
|
+
def optGetDefaultStr(popt, ANr):
|
|
416
|
+
r"""optGetDefaultStr(popt, ANr) -> int"""
|
|
417
|
+
return _optcc.optGetDefaultStr(popt, ANr)
|
|
418
|
+
|
|
419
|
+
def optGetIntNr(popt, ANr):
|
|
420
|
+
r"""optGetIntNr(popt, ANr) -> int"""
|
|
421
|
+
return _optcc.optGetIntNr(popt, ANr)
|
|
422
|
+
|
|
423
|
+
def optGetInt2Nr(popt, ANr):
|
|
424
|
+
r"""optGetInt2Nr(popt, ANr) -> int"""
|
|
425
|
+
return _optcc.optGetInt2Nr(popt, ANr)
|
|
426
|
+
|
|
427
|
+
def optSetIntNr(popt, ANr, AIVal):
|
|
428
|
+
r"""optSetIntNr(popt, ANr, AIVal) -> int"""
|
|
429
|
+
return _optcc.optSetIntNr(popt, ANr, AIVal)
|
|
430
|
+
|
|
431
|
+
def optSetInt2Nr(popt, ANr, AIVal):
|
|
432
|
+
r"""optSetInt2Nr(popt, ANr, AIVal) -> int"""
|
|
433
|
+
return _optcc.optSetInt2Nr(popt, ANr, AIVal)
|
|
434
|
+
|
|
435
|
+
def optGetStrNr(popt, ANr):
|
|
436
|
+
r"""optGetStrNr(popt, ANr) -> int"""
|
|
437
|
+
return _optcc.optGetStrNr(popt, ANr)
|
|
438
|
+
|
|
439
|
+
def optGetOptHelpNr(popt, ANr):
|
|
440
|
+
r"""optGetOptHelpNr(popt, ANr) -> int"""
|
|
441
|
+
return _optcc.optGetOptHelpNr(popt, ANr)
|
|
442
|
+
|
|
443
|
+
def optGetEnumHelp(popt, ANr, AOrd):
|
|
444
|
+
r"""optGetEnumHelp(popt, ANr, AOrd) -> int"""
|
|
445
|
+
return _optcc.optGetEnumHelp(popt, ANr, AOrd)
|
|
446
|
+
|
|
447
|
+
def optGetEnumStrNr(popt, ANr):
|
|
448
|
+
r"""optGetEnumStrNr(popt, ANr) -> int"""
|
|
449
|
+
return _optcc.optGetEnumStrNr(popt, ANr)
|
|
450
|
+
|
|
451
|
+
def optGetEnumCount(popt, ANr):
|
|
452
|
+
r"""optGetEnumCount(popt, ANr) -> int"""
|
|
453
|
+
return _optcc.optGetEnumCount(popt, ANr)
|
|
454
|
+
|
|
455
|
+
def optGetEnumValue(popt, ANr, AOrd):
|
|
456
|
+
r"""optGetEnumValue(popt, ANr, AOrd) -> int"""
|
|
457
|
+
return _optcc.optGetEnumValue(popt, ANr, AOrd)
|
|
458
|
+
|
|
459
|
+
def optGetStr2Nr(popt, ANr):
|
|
460
|
+
r"""optGetStr2Nr(popt, ANr) -> int"""
|
|
461
|
+
return _optcc.optGetStr2Nr(popt, ANr)
|
|
462
|
+
|
|
463
|
+
def optSetStrNr(popt, ANr, ASVal):
|
|
464
|
+
r"""optSetStrNr(popt, ANr, ASVal) -> int"""
|
|
465
|
+
return _optcc.optSetStrNr(popt, ANr, ASVal)
|
|
466
|
+
|
|
467
|
+
def optSetStr2Nr(popt, ANr, ASVal):
|
|
468
|
+
r"""optSetStr2Nr(popt, ANr, ASVal) -> int"""
|
|
469
|
+
return _optcc.optSetStr2Nr(popt, ANr, ASVal)
|
|
470
|
+
|
|
471
|
+
def optGetDblNr(popt, ANr):
|
|
472
|
+
r"""optGetDblNr(popt, ANr) -> int"""
|
|
473
|
+
return _optcc.optGetDblNr(popt, ANr)
|
|
474
|
+
|
|
475
|
+
def optGetDbl2Nr(popt, ANr):
|
|
476
|
+
r"""optGetDbl2Nr(popt, ANr) -> int"""
|
|
477
|
+
return _optcc.optGetDbl2Nr(popt, ANr)
|
|
478
|
+
|
|
479
|
+
def optSetDblNr(popt, ANr, ADVal):
|
|
480
|
+
r"""optSetDblNr(popt, ANr, ADVal) -> int"""
|
|
481
|
+
return _optcc.optSetDblNr(popt, ANr, ADVal)
|
|
482
|
+
|
|
483
|
+
def optSetDbl2Nr(popt, ANr, ADVal):
|
|
484
|
+
r"""optSetDbl2Nr(popt, ANr, ADVal) -> int"""
|
|
485
|
+
return _optcc.optSetDbl2Nr(popt, ANr, ADVal)
|
|
486
|
+
|
|
487
|
+
def optGetValStr(popt, AName):
|
|
488
|
+
r"""optGetValStr(popt, AName) -> int"""
|
|
489
|
+
return _optcc.optGetValStr(popt, AName)
|
|
490
|
+
|
|
491
|
+
def optGetVal2Str(popt, AName):
|
|
492
|
+
r"""optGetVal2Str(popt, AName) -> int"""
|
|
493
|
+
return _optcc.optGetVal2Str(popt, AName)
|
|
494
|
+
|
|
495
|
+
def optGetNameNr(popt, ANr):
|
|
496
|
+
r"""optGetNameNr(popt, ANr) -> int"""
|
|
497
|
+
return _optcc.optGetNameNr(popt, ANr)
|
|
498
|
+
|
|
499
|
+
def optGetDefinedNr(popt, ANr):
|
|
500
|
+
r"""optGetDefinedNr(popt, ANr) -> int"""
|
|
501
|
+
return _optcc.optGetDefinedNr(popt, ANr)
|
|
502
|
+
|
|
503
|
+
def optGetHelpNr(popt, ANr):
|
|
504
|
+
r"""optGetHelpNr(popt, ANr) -> int"""
|
|
505
|
+
return _optcc.optGetHelpNr(popt, ANr)
|
|
506
|
+
|
|
507
|
+
def optGetGroupNr(popt, ANr):
|
|
508
|
+
r"""optGetGroupNr(popt, ANr) -> int"""
|
|
509
|
+
return _optcc.optGetGroupNr(popt, ANr)
|
|
510
|
+
|
|
511
|
+
def optGetGroupGrpNr(popt, AGroup):
|
|
512
|
+
r"""optGetGroupGrpNr(popt, AGroup) -> int"""
|
|
513
|
+
return _optcc.optGetGroupGrpNr(popt, AGroup)
|
|
514
|
+
|
|
515
|
+
def optGetOptGroupNr(popt, ANr):
|
|
516
|
+
r"""optGetOptGroupNr(popt, ANr) -> int"""
|
|
517
|
+
return _optcc.optGetOptGroupNr(popt, ANr)
|
|
518
|
+
|
|
519
|
+
def optGetDotOptNr(popt, ANr):
|
|
520
|
+
r"""optGetDotOptNr(popt, ANr) -> int"""
|
|
521
|
+
return _optcc.optGetDotOptNr(popt, ANr)
|
|
522
|
+
|
|
523
|
+
def optGetDotOptUel(popt, ANr, ADim):
|
|
524
|
+
r"""optGetDotOptUel(popt, ANr, ADim) -> int"""
|
|
525
|
+
return _optcc.optGetDotOptUel(popt, ANr, ADim)
|
|
526
|
+
|
|
527
|
+
def optGetVarEquMapNr(popt, maptype, ANr):
|
|
528
|
+
r"""optGetVarEquMapNr(popt, maptype, ANr) -> int"""
|
|
529
|
+
return _optcc.optGetVarEquMapNr(popt, maptype, ANr)
|
|
530
|
+
|
|
531
|
+
def optGetEquVarEquMapNr(popt, maptype, ANr, ADim):
|
|
532
|
+
r"""optGetEquVarEquMapNr(popt, maptype, ANr, ADim) -> int"""
|
|
533
|
+
return _optcc.optGetEquVarEquMapNr(popt, maptype, ANr, ADim)
|
|
534
|
+
|
|
535
|
+
def optGetVarVarEquMapNr(popt, maptype, ANr, ADim):
|
|
536
|
+
r"""optGetVarVarEquMapNr(popt, maptype, ANr, ADim) -> int"""
|
|
537
|
+
return _optcc.optGetVarVarEquMapNr(popt, maptype, ANr, ADim)
|
|
538
|
+
|
|
539
|
+
def optVarEquMapCount(popt, maptype):
|
|
540
|
+
r"""optVarEquMapCount(popt, maptype) -> int"""
|
|
541
|
+
return _optcc.optVarEquMapCount(popt, maptype)
|
|
542
|
+
|
|
543
|
+
def optGetIndicatorNr(popt, ANr):
|
|
544
|
+
r"""optGetIndicatorNr(popt, ANr) -> int"""
|
|
545
|
+
return _optcc.optGetIndicatorNr(popt, ANr)
|
|
546
|
+
|
|
547
|
+
def optGetEquIndicatorNr(popt, ANr, ADim):
|
|
548
|
+
r"""optGetEquIndicatorNr(popt, ANr, ADim) -> int"""
|
|
549
|
+
return _optcc.optGetEquIndicatorNr(popt, ANr, ADim)
|
|
550
|
+
|
|
551
|
+
def optGetVarIndicatorNr(popt, ANr, ADim):
|
|
552
|
+
r"""optGetVarIndicatorNr(popt, ANr, ADim) -> int"""
|
|
553
|
+
return _optcc.optGetVarIndicatorNr(popt, ANr, ADim)
|
|
554
|
+
|
|
555
|
+
def optIndicatorCount(popt):
|
|
556
|
+
r"""optIndicatorCount(popt) -> int"""
|
|
557
|
+
return _optcc.optIndicatorCount(popt)
|
|
558
|
+
|
|
559
|
+
def optDotOptCount(popt):
|
|
560
|
+
r"""optDotOptCount(popt) -> int"""
|
|
561
|
+
return _optcc.optDotOptCount(popt)
|
|
562
|
+
|
|
563
|
+
def optSetRefNr(popt, ANr, ARefNr):
|
|
564
|
+
r"""optSetRefNr(popt, ANr, ARefNr) -> int"""
|
|
565
|
+
return _optcc.optSetRefNr(popt, ANr, ARefNr)
|
|
566
|
+
|
|
567
|
+
def optSetRefNrStr(popt, AOpt, ARefNr):
|
|
568
|
+
r"""optSetRefNrStr(popt, AOpt, ARefNr) -> int"""
|
|
569
|
+
return _optcc.optSetRefNrStr(popt, AOpt, ARefNr)
|
|
570
|
+
|
|
571
|
+
def optGetConstName(popt, cgroup, cindex):
|
|
572
|
+
r"""optGetConstName(popt, cgroup, cindex) -> int"""
|
|
573
|
+
return _optcc.optGetConstName(popt, cgroup, cindex)
|
|
574
|
+
|
|
575
|
+
def optGetTypeName(popt, TNr):
|
|
576
|
+
r"""optGetTypeName(popt, TNr) -> int"""
|
|
577
|
+
return _optcc.optGetTypeName(popt, TNr)
|
|
578
|
+
|
|
579
|
+
def optLookUp(popt, AOpt):
|
|
580
|
+
r"""optLookUp(popt, AOpt) -> int"""
|
|
581
|
+
return _optcc.optLookUp(popt, AOpt)
|
|
582
|
+
|
|
583
|
+
def optReadFromPChar(popt, p_mut):
|
|
584
|
+
r"""optReadFromPChar(popt, p_mut)"""
|
|
585
|
+
return _optcc.optReadFromPChar(popt, p_mut)
|
|
586
|
+
|
|
587
|
+
def optReadFromCmdLine(popt, p_mut):
|
|
588
|
+
r"""optReadFromCmdLine(popt, p_mut)"""
|
|
589
|
+
return _optcc.optReadFromCmdLine(popt, p_mut)
|
|
590
|
+
|
|
591
|
+
def optReadFromCmdArgs(popt, cb):
|
|
592
|
+
r"""optReadFromCmdArgs(popt, cb)"""
|
|
593
|
+
return _optcc.optReadFromCmdArgs(popt, cb)
|
|
594
|
+
|
|
595
|
+
def optGetNameOpt(popt, ASVal):
|
|
596
|
+
r"""optGetNameOpt(popt, ASVal) -> int"""
|
|
597
|
+
return _optcc.optGetNameOpt(popt, ASVal)
|
|
598
|
+
|
|
599
|
+
def optResetStr(popt, AName):
|
|
600
|
+
r"""optResetStr(popt, AName) -> int"""
|
|
601
|
+
return _optcc.optResetStr(popt, AName)
|
|
602
|
+
|
|
603
|
+
def optGetDefinedStr(popt, AName):
|
|
604
|
+
r"""optGetDefinedStr(popt, AName) -> int"""
|
|
605
|
+
return _optcc.optGetDefinedStr(popt, AName)
|
|
606
|
+
|
|
607
|
+
def optGetIntStr(popt, AName):
|
|
608
|
+
r"""optGetIntStr(popt, AName) -> int"""
|
|
609
|
+
return _optcc.optGetIntStr(popt, AName)
|
|
610
|
+
|
|
611
|
+
def optGetDblStr(popt, AName):
|
|
612
|
+
r"""optGetDblStr(popt, AName) -> double"""
|
|
613
|
+
return _optcc.optGetDblStr(popt, AName)
|
|
614
|
+
|
|
615
|
+
def optGetStrStr(popt, AName):
|
|
616
|
+
r"""optGetStrStr(popt, AName) -> char *"""
|
|
617
|
+
return _optcc.optGetStrStr(popt, AName)
|
|
618
|
+
|
|
619
|
+
def optSetIntStr(popt, AName, AIVal):
|
|
620
|
+
r"""optSetIntStr(popt, AName, AIVal)"""
|
|
621
|
+
return _optcc.optSetIntStr(popt, AName, AIVal)
|
|
622
|
+
|
|
623
|
+
def optSetDblStr(popt, AName, ADVal):
|
|
624
|
+
r"""optSetDblStr(popt, AName, ADVal)"""
|
|
625
|
+
return _optcc.optSetDblStr(popt, AName, ADVal)
|
|
626
|
+
|
|
627
|
+
def optSetStrStr(popt, AName, ASVal):
|
|
628
|
+
r"""optSetStrStr(popt, AName, ASVal)"""
|
|
629
|
+
return _optcc.optSetStrStr(popt, AName, ASVal)
|
|
630
|
+
|
|
631
|
+
def optIsDeprecated(popt, AName):
|
|
632
|
+
r"""optIsDeprecated(popt, AName) -> int"""
|
|
633
|
+
return _optcc.optIsDeprecated(popt, AName)
|
|
634
|
+
|
|
635
|
+
def optCount(popt):
|
|
636
|
+
r"""optCount(popt) -> int"""
|
|
637
|
+
return _optcc.optCount(popt)
|
|
638
|
+
|
|
639
|
+
def optMessageCount(popt):
|
|
640
|
+
r"""optMessageCount(popt) -> int"""
|
|
641
|
+
return _optcc.optMessageCount(popt)
|
|
642
|
+
|
|
643
|
+
def optGroupCount(popt):
|
|
644
|
+
r"""optGroupCount(popt) -> int"""
|
|
645
|
+
return _optcc.optGroupCount(popt)
|
|
646
|
+
|
|
647
|
+
def optRecentEnabled(popt):
|
|
648
|
+
r"""optRecentEnabled(popt) -> int"""
|
|
649
|
+
return _optcc.optRecentEnabled(popt)
|
|
650
|
+
|
|
651
|
+
def optRecentEnabledSet(popt, x):
|
|
652
|
+
r"""optRecentEnabledSet(popt, x)"""
|
|
653
|
+
return _optcc.optRecentEnabledSet(popt, x)
|
|
654
|
+
|
|
655
|
+
def optSeparator(popt):
|
|
656
|
+
r"""optSeparator(popt) -> char *"""
|
|
657
|
+
return _optcc.optSeparator(popt)
|
|
658
|
+
|
|
659
|
+
def optStringQuote(popt):
|
|
660
|
+
r"""optStringQuote(popt) -> char *"""
|
|
661
|
+
return _optcc.optStringQuote(popt)
|
|
662
|
+
GLOBAL_MAX_INDEX_DIM = _optcc.GLOBAL_MAX_INDEX_DIM
|
|
663
|
+
|
|
664
|
+
GLOBAL_UEL_IDENT_SIZE = _optcc.GLOBAL_UEL_IDENT_SIZE
|
|
665
|
+
|
|
666
|
+
ITERLIM_INFINITY = _optcc.ITERLIM_INFINITY
|
|
667
|
+
|
|
668
|
+
RESLIM_INFINITY = _optcc.RESLIM_INFINITY
|
|
669
|
+
|
|
670
|
+
GMS_MAX_SOLVERS = _optcc.GMS_MAX_SOLVERS
|
|
671
|
+
|
|
672
|
+
GMS_MAX_INDEX_DIM = _optcc.GMS_MAX_INDEX_DIM
|
|
673
|
+
|
|
674
|
+
GMS_UEL_IDENT_SIZE = _optcc.GMS_UEL_IDENT_SIZE
|
|
675
|
+
|
|
676
|
+
GMS_SSSIZE = _optcc.GMS_SSSIZE
|
|
677
|
+
|
|
678
|
+
GMS_VARTYPE_UNKNOWN = _optcc.GMS_VARTYPE_UNKNOWN
|
|
679
|
+
|
|
680
|
+
GMS_VARTYPE_BINARY = _optcc.GMS_VARTYPE_BINARY
|
|
681
|
+
|
|
682
|
+
GMS_VARTYPE_INTEGER = _optcc.GMS_VARTYPE_INTEGER
|
|
683
|
+
|
|
684
|
+
GMS_VARTYPE_POSITIVE = _optcc.GMS_VARTYPE_POSITIVE
|
|
685
|
+
|
|
686
|
+
GMS_VARTYPE_NEGATIVE = _optcc.GMS_VARTYPE_NEGATIVE
|
|
687
|
+
|
|
688
|
+
GMS_VARTYPE_FREE = _optcc.GMS_VARTYPE_FREE
|
|
689
|
+
|
|
690
|
+
GMS_VARTYPE_SOS1 = _optcc.GMS_VARTYPE_SOS1
|
|
691
|
+
|
|
692
|
+
GMS_VARTYPE_SOS2 = _optcc.GMS_VARTYPE_SOS2
|
|
693
|
+
|
|
694
|
+
GMS_VARTYPE_SEMICONT = _optcc.GMS_VARTYPE_SEMICONT
|
|
695
|
+
|
|
696
|
+
GMS_VARTYPE_SEMIINT = _optcc.GMS_VARTYPE_SEMIINT
|
|
697
|
+
|
|
698
|
+
GMS_VARTYPE_MAX = _optcc.GMS_VARTYPE_MAX
|
|
699
|
+
|
|
700
|
+
GMS_EQU_USERINFO_BASE = _optcc.GMS_EQU_USERINFO_BASE
|
|
701
|
+
|
|
702
|
+
GMS_EQUTYPE_E = _optcc.GMS_EQUTYPE_E
|
|
703
|
+
|
|
704
|
+
GMS_EQUTYPE_G = _optcc.GMS_EQUTYPE_G
|
|
705
|
+
|
|
706
|
+
GMS_EQUTYPE_L = _optcc.GMS_EQUTYPE_L
|
|
707
|
+
|
|
708
|
+
GMS_EQUTYPE_N = _optcc.GMS_EQUTYPE_N
|
|
709
|
+
|
|
710
|
+
GMS_EQUTYPE_X = _optcc.GMS_EQUTYPE_X
|
|
711
|
+
|
|
712
|
+
GMS_EQUTYPE_C = _optcc.GMS_EQUTYPE_C
|
|
713
|
+
|
|
714
|
+
GMS_EQUTYPE_B = _optcc.GMS_EQUTYPE_B
|
|
715
|
+
|
|
716
|
+
GMS_EQUTYPE_MAX = _optcc.GMS_EQUTYPE_MAX
|
|
717
|
+
|
|
718
|
+
GMS_EQUEOFFSET = _optcc.GMS_EQUEOFFSET
|
|
719
|
+
|
|
720
|
+
GMS_SETTYPE_DEFAULT = _optcc.GMS_SETTYPE_DEFAULT
|
|
721
|
+
|
|
722
|
+
GMS_SETTYPE_SINGLETON = _optcc.GMS_SETTYPE_SINGLETON
|
|
723
|
+
|
|
724
|
+
GMS_SETTYPE_MAX = _optcc.GMS_SETTYPE_MAX
|
|
725
|
+
|
|
726
|
+
GMS_VAL_LEVEL = _optcc.GMS_VAL_LEVEL
|
|
727
|
+
|
|
728
|
+
GMS_VAL_MARGINAL = _optcc.GMS_VAL_MARGINAL
|
|
729
|
+
|
|
730
|
+
GMS_VAL_LOWER = _optcc.GMS_VAL_LOWER
|
|
731
|
+
|
|
732
|
+
GMS_VAL_UPPER = _optcc.GMS_VAL_UPPER
|
|
733
|
+
|
|
734
|
+
GMS_VAL_SCALE = _optcc.GMS_VAL_SCALE
|
|
735
|
+
|
|
736
|
+
GMS_VAL_MAX = _optcc.GMS_VAL_MAX
|
|
737
|
+
|
|
738
|
+
sv_valund = _optcc.sv_valund
|
|
739
|
+
|
|
740
|
+
sv_valna = _optcc.sv_valna
|
|
741
|
+
|
|
742
|
+
sv_valpin = _optcc.sv_valpin
|
|
743
|
+
|
|
744
|
+
sv_valmin = _optcc.sv_valmin
|
|
745
|
+
|
|
746
|
+
sv_valeps = _optcc.sv_valeps
|
|
747
|
+
|
|
748
|
+
sv_normal = _optcc.sv_normal
|
|
749
|
+
|
|
750
|
+
sv_acronym = _optcc.sv_acronym
|
|
751
|
+
|
|
752
|
+
GMS_SVIDX_UNDEF = _optcc.GMS_SVIDX_UNDEF
|
|
753
|
+
|
|
754
|
+
GMS_SVIDX_NA = _optcc.GMS_SVIDX_NA
|
|
755
|
+
|
|
756
|
+
GMS_SVIDX_PINF = _optcc.GMS_SVIDX_PINF
|
|
757
|
+
|
|
758
|
+
GMS_SVIDX_MINF = _optcc.GMS_SVIDX_MINF
|
|
759
|
+
|
|
760
|
+
GMS_SVIDX_EPS = _optcc.GMS_SVIDX_EPS
|
|
761
|
+
|
|
762
|
+
GMS_SVIDX_NORMAL = _optcc.GMS_SVIDX_NORMAL
|
|
763
|
+
|
|
764
|
+
GMS_SVIDX_ACR = _optcc.GMS_SVIDX_ACR
|
|
765
|
+
|
|
766
|
+
GMS_SVIDX_MAX = _optcc.GMS_SVIDX_MAX
|
|
767
|
+
|
|
768
|
+
dt_set = _optcc.dt_set
|
|
769
|
+
|
|
770
|
+
dt_par = _optcc.dt_par
|
|
771
|
+
|
|
772
|
+
dt_var = _optcc.dt_var
|
|
773
|
+
|
|
774
|
+
dt_equ = _optcc.dt_equ
|
|
775
|
+
|
|
776
|
+
dt_alias = _optcc.dt_alias
|
|
777
|
+
|
|
778
|
+
GMS_DT_SET = _optcc.GMS_DT_SET
|
|
779
|
+
|
|
780
|
+
GMS_DT_PAR = _optcc.GMS_DT_PAR
|
|
781
|
+
|
|
782
|
+
GMS_DT_VAR = _optcc.GMS_DT_VAR
|
|
783
|
+
|
|
784
|
+
GMS_DT_EQU = _optcc.GMS_DT_EQU
|
|
785
|
+
|
|
786
|
+
GMS_DT_ALIAS = _optcc.GMS_DT_ALIAS
|
|
787
|
+
|
|
788
|
+
GMS_DT_MAX = _optcc.GMS_DT_MAX
|
|
789
|
+
|
|
790
|
+
GMS_SV_UNDEF = _optcc.GMS_SV_UNDEF
|
|
791
|
+
|
|
792
|
+
GMS_SV_NA = _optcc.GMS_SV_NA
|
|
793
|
+
|
|
794
|
+
GMS_SV_PINF = _optcc.GMS_SV_PINF
|
|
795
|
+
|
|
796
|
+
GMS_SV_MINF = _optcc.GMS_SV_MINF
|
|
797
|
+
|
|
798
|
+
GMS_SV_EPS = _optcc.GMS_SV_EPS
|
|
799
|
+
|
|
800
|
+
GMS_SV_ACR = _optcc.GMS_SV_ACR
|
|
801
|
+
|
|
802
|
+
GMS_SV_NAINT = _optcc.GMS_SV_NAINT
|
|
803
|
+
|
|
804
|
+
STAT_OK = _optcc.STAT_OK
|
|
805
|
+
|
|
806
|
+
STAT_NOPT = _optcc.STAT_NOPT
|
|
807
|
+
|
|
808
|
+
STAT_INFES = _optcc.STAT_INFES
|
|
809
|
+
|
|
810
|
+
STAT_UNBND = _optcc.STAT_UNBND
|
|
811
|
+
|
|
812
|
+
STAT_EVAL = _optcc.STAT_EVAL
|
|
813
|
+
|
|
814
|
+
STAT_UNKNW = _optcc.STAT_UNKNW
|
|
815
|
+
|
|
816
|
+
STAT_REDEF = _optcc.STAT_REDEF
|
|
817
|
+
|
|
818
|
+
STAT_DEPND = _optcc.STAT_DEPND
|
|
819
|
+
|
|
820
|
+
STAT_REDIR = _optcc.STAT_REDIR
|
|
821
|
+
|
|
822
|
+
STAT_MAX = _optcc.STAT_MAX
|
|
823
|
+
|
|
824
|
+
SS_MAX = _optcc.SS_MAX
|
|
825
|
+
|
|
826
|
+
MS_MAX = _optcc.MS_MAX
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
cvar = _optcc.cvar
|
|
830
|
+
gmsGdxTypeText = cvar.gmsGdxTypeText
|
|
831
|
+
gmsVarTypeText = cvar.gmsVarTypeText
|
|
832
|
+
gmsValTypeText = cvar.gmsValTypeText
|
|
833
|
+
gmsSVText = cvar.gmsSVText
|
|
834
|
+
gmsSpecialValues = cvar.gmsSpecialValues
|
|
835
|
+
gmsDefRecVar = cvar.gmsDefRecVar
|
|
836
|
+
gmsDefRecEqu = cvar.gmsDefRecEqu
|
|
837
|
+
rcStat = cvar.rcStat
|
|
838
|
+
solveStatusTxt = cvar.solveStatusTxt
|
|
839
|
+
modelStatusTxt = cvar.modelStatusTxt
|
|
840
|
+
|