संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
स्टेटस
समस्या के हल की स्थिति. किसी समस्या को हल करने से पहले, उसका स्टेटस NOT_SOLVED होगा. इसके बाद, यह किसी भी दूसरी वैल्यू पर सेट हो सकता है. यह इस बात पर निर्भर करता है कि समस्या हल हो गई है या नहीं और उसका समाधान सही है या नहीं.
किसी एनम को कॉल करने के लिए, उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल किया जाता है. उदाहरण के लिए,
LinearOptimizationService.Status.OPTIMAL.
प्रॉपर्टी
प्रॉपर्टी
टाइप
ब्यौरा
OPTIMAL
Enum
सबसे सही समाधान मिलने पर स्टेटस.
FEASIBLE
Enum
जब कोई समाधान मिल जाता है, तो यह स्टेटस दिखता है. हालांकि, यह ज़रूरी नहीं है कि यह सबसे सही समाधान हो.
INFEASIBLE
Enum
जब मौजूदा मॉडल काम न कर रहा हो (इसका कोई समाधान न हो), तो स्थिति.
UNBOUNDED
Enum
मौजूदा मॉडल अनबाउंड होने पर स्टेटस.
ABNORMAL
Enum
जब किसी अनचाहे कारण से समस्या का हल नहीं मिल पाता है, तब स्टेटस.
[[["समझने में आसान है","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"]],["आखिरी बार 2024-12-02 (UTC) को अपडेट किया गया."],[[["The `Status` property indicates the state of a Linear Optimization solution, initially set to `NOT_SOLVED`."],["After attempting to solve the problem, the status changes to reflect if a solution was found and if it is optimal (`OPTIMAL`, `FEASIBLE`, `INFEASIBLE`, `UNBOUNDED`, `ABNORMAL`, `MODEL_INVALID`)."],["Accessing the status enum values is done using the format: `LinearOptimizationService.Status.[property name]`, such as `LinearOptimizationService.Status.OPTIMAL`."]]],["The document outlines the `Status` of a solution within a system, initially `NOT_SOLVED` before any problem-solving attempt. After solving, the status changes to reflect the outcome. Possible statuses include `OPTIMAL` (best solution found), `FEASIBLE` (a solution exists, but may not be the best), `INFEASIBLE` (no solution), `UNBOUNDED` (model is unlimited), `ABNORMAL` (failed for unexpected reasons), and `MODEL_INVALID` (invalid model). Enums are accessed using `ParentClass.Name.Property`, like `LinearOptimizationService.Status.OPTIMAL`.\n"]]