[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2025-07-26 (世界標準時間)。"],[[["\u003cp\u003e\u003ccode\u003eVariableType\u003c/code\u003e determines the kind of variables used in the Linear Optimization service.\u003c/p\u003e\n"],["\u003cp\u003eTo specify a variable type, use the format: \u003ccode\u003eLinearOptimizationService.VariableType.{property}\u003c/code\u003e, for example, \u003ccode\u003eLinearOptimizationService.VariableType.INTEGER\u003c/code\u003e for integer variables.\u003c/p\u003e\n"],["\u003cp\u003eTwo variable types are available: \u003ccode\u003eINTEGER\u003c/code\u003e for whole numbers and \u003ccode\u003eCONTINUOUS\u003c/code\u003e for any real number.\u003c/p\u003e\n"]]],["The `VariableType` defines the nature of variables used within the engine. It can be accessed via `LinearOptimizationService.VariableType`. It offers two properties: `INTEGER`, representing variables limited to integer values, and `CONTINUOUS`, representing variables that can assume any real value. Both `INTEGER` and `CONTINUOUS` are enumerated types.\n"],null,["VariableType\n\nType of variables created by the engine.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nLinearOptimizationService.VariableType.INTEGER`. \n\nProperties\n\n| Property | Type | Description |\n|--------------|--------|-----------------------------------------------------|\n| `INTEGER` | `Enum` | Type of variable that can only take integer values. |\n| `CONTINUOUS` | `Enum` | Type of variable that can take any real value. |"]]