Skip to main content
type ModelSolveStrategy =
  | {
  type: "optimize";
}
  | {
  type: "feasibility-only";
};
Compile-time solve profile used by model builders.

Union Members

Type Literal

{
  type: "optimize";
}
NameTypeDescription
type"optimize"Build the normal optimized solver request.

Type Literal

{
  type: "feasibility-only";
}
NameTypeDescription
type"feasibility-only"Build a hard-feasibility request that ignores objectives and soft constraints.