Trạng thái của giải pháp. Trước khi giải quyết một vấn đề, trạng thái sẽ là NOT_SOLVED; sau đó, trạng thái sẽ nhận bất kỳ giá trị nào khác tuỳ thuộc vào việc có tìm thấy giải pháp thành công hay không và giải pháp đó có tối ưu hay không.
Để gọi một enum, bạn gọi lớp mẹ, tên và thuộc tính của enum đó. Ví dụ:
LinearOptimizationService.Status.OPTIMAL.
Thuộc tính
Thuộc tính
Loại
Mô tả
OPTIMAL
Enum
Trạng thái khi tìm thấy giải pháp tối ưu.
FEASIBLE
Enum
Trạng thái khi tìm thấy một giải pháp khả thi (không nhất thiết là tối ưu).
INFEASIBLE
Enum
Trạng thái khi mô hình hiện tại không khả thi (không có giải pháp).
UNBOUNDED
Enum
Trạng thái khi mô hình hiện tại không liên kết.
ABNORMAL
Enum
Trạng thái khi không tìm thấy giải pháp vì lý do ngoài dự kiến.
[[["Dễ hiểu","easyToUnderstand","thumb-up"],["Giúp tôi giải quyết được vấn đề","solvedMyProblem","thumb-up"],["Khác","otherUp","thumb-up"]],[["Thiếu thông tin tôi cần","missingTheInformationINeed","thumb-down"],["Quá phức tạp/quá nhiều bước","tooComplicatedTooManySteps","thumb-down"],["Đã lỗi thời","outOfDate","thumb-down"],["Vấn đề về bản dịch","translationIssue","thumb-down"],["Vấn đề về mẫu/mã","samplesCodeIssue","thumb-down"],["Khác","otherDown","thumb-down"]],["Cập nhật lần gần đây nhất: 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"]]