[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-12-02 UTC."],[[["\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. |"]]