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
ExaModels does not support expressions like JuMP, requiring users to input long and complicated expressions simultaneously, making it unfriendly.
Iteration Limitation:
ExaModels cannot iterate a variable based on another variable within objective functions or constraints, expression cannot be represented concisely.
Array Indexing Issue:
Arrays not generated by ExaModels.variable() cannot be indexed directly in objective functions and constraints. Attempting to do so results in errors like an invalid index: ExaModels.ParIndexed, because ExaModels creates an ExaModels.ParIndexed object instead of an Int, causing indexing issues.
Unclear Indexing in Constraints:
The indexing syntax in constraint! is unclear, which can lead to confusion and errors in defining constraints when users try to add expressions in constraint!
The text was updated successfully, but these errors were encountered:
ExaModels does not support expressions like JuMP, requiring users to input long and complicated expressions simultaneously, making it unfriendly.
ExaModels cannot iterate a variable based on another variable within objective functions or constraints, expression cannot be represented concisely.
Arrays not generated by
ExaModels.variable()
cannot be indexed directly in objective functions and constraints. Attempting to do so results in errors like an invalid index: ExaModels.ParIndexed, because ExaModels creates an ExaModels.ParIndexed object instead of an Int, causing indexing issues.The indexing syntax in constraint! is unclear, which can lead to confusion and errors in defining constraints when users try to add expressions in
constraint!
The text was updated successfully, but these errors were encountered: