Module Problem.Pclass

Module for the optimization problem class.

type t =
| LP
| QP
| QCP
| MILP
| MIQP
| MIQCP

Optimization problem classes.

  • LP: Linear
  • QP: Quadratic
  • QCP: Quadratically Constrained; aka QCQP
  • MILP: Mixed Integer Linear
  • MIQP: Mixed Integer Quadratic
  • MIQCP: Mixed Integer Quadratically Constrained
val to_string : t -> string

Express the problem class in string.