You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Copyright (c) 2016-2025 GAMS Development Corp. <support@gams.com>
7
7
*
8
8
* Permission is hereby granted, free of charge, to any person obtaining a copy
9
9
* of this software and associated documentation files (the "Software"), to deal
@@ -1180,7 +1180,7 @@ int GDX_CALLCONV d_gdxSymbolGetComment (gdxHandle_t pgdx, int SyNr, int N, char
1180
1180
1181
1181
/** Retrieve the domain of a symbol. Returns zero if the operation is not possible.
1182
1182
* @param pgdx gdx object handle
1183
-
* @param SyNr The index number of the symbol (range 1..NrSymbols); SyNr = 0 reads universe.
1183
+
* @param SyNr The index number of the symbol (must be in range 1..NrSymbols).
1184
1184
* @param DomainSyNrs Array (length=symbol dim) returning the set identifiers or "*"; DomainSyNrs[D] will contain the index number of the one dimensional set or alias used as the domain for index position D. A value of zero represents the universe "*".
@@ -1194,7 +1194,7 @@ int GDX_CALLCONV d_gdxSymbolGetDomain (gdxHandle_t pgdx, int SyNr, int DomainSy
1194
1194
1195
1195
/** Retrieve the domain of a symbol (using relaxed or domain information). Returns zero if the operation is not possible.
1196
1196
* @param pgdx gdx object handle
1197
-
* @param SyNr The index number of the symbol (range 1..NrSymbols); SyNr = 0 reads universe.
1197
+
* @param SyNr The index number of the symbol (must be in range 1..NrSymbols).
1198
1198
* @param DomainIDs DomainIDs[D] will contain the strings as they were stored with the call gdxSymbolSetDomainX. If gdxSymbolSetDomainX was never called, but gdxSymbolSetDomain was called, that information will be used instead. Length of this array should by dimensionality of the symbol. The special domain name "*" denotes the universe domain (all known UELs).
* Copyright (c) 2016-2025 GAMS Development Corp. <support@gams.com>
9
9
*
10
10
* Permission is hereby granted, free of charge, to any person obtaining a copy
11
11
* of this software and associated documentation files (the "Software"), to deal
@@ -946,7 +946,7 @@ typedef int (GDX_CALLCONV *gdxSymbolGetDomain_t) (gdxHandle_t pgdx, int SyNr, i
946
946
/** Retrieve the domain of a symbol. Returns zero if the operation is not possible.
947
947
*
948
948
* @param pgdx gdx object handle
949
-
* @param SyNr The index number of the symbol (range 1..NrSymbols); SyNr = 0 reads universe.
949
+
* @param SyNr The index number of the symbol (must be in range 1..NrSymbols).
950
950
* @param DomainSyNrs Array (length=symbol dim) returning the set identifiers or "*"; DomainSyNrs[D] will contain the index number of the one dimensional set or alias used as the domain for index position D. A value of zero represents the universe "*".
951
951
* @return Non-zero if the operation is possible, zero otherwise.
952
952
*/
@@ -956,7 +956,7 @@ typedef int (GDX_CALLCONV *gdxSymbolGetDomainX_t) (gdxHandle_t pgdx, int SyNr,
956
956
/** Retrieve the domain of a symbol (using relaxed or domain information). Returns zero if the operation is not possible.
957
957
*
958
958
* @param pgdx gdx object handle
959
-
* @param SyNr The index number of the symbol (range 1..NrSymbols); SyNr = 0 reads universe.
959
+
* @param SyNr The index number of the symbol (must be in range 1..NrSymbols).
960
960
* @param DomainIDs DomainIDs[D] will contain the strings as they were stored with the call gdxSymbolSetDomainX. If gdxSymbolSetDomainX was never called, but gdxSymbolSetDomain was called, that information will be used instead. Length of this array should by dimensionality of the symbol. The special domain name "*" denotes the universe domain (all known UELs).
961
961
* @return <ul><li>0: If operation was not possible (Bad SyNr)</li> <li>1: No domain information was available</li> <li>2: Data used was defined using gdxSymbolSetDomainX</li> <li>3: Data used was defined using gdxSymbolSetDomain</li></ul>
0 commit comments