14.2.21 Class Model

mosek.fusion.Model

The object containing all data related to a single optimization model.

Implements:

BaseModel

Members:

Model.acceptedSolutionStatus – Set the accepted solution status.

Model.breakSolver – Request that the solver terminates as soon as possible.

Model.clone – Return a copy of the model.

Model.constraint – Create a new constraint in the model.

Model.dataReport – Print out a report about problem data.

Model.disjunction – Create a new disjunctive constraint in the model.

Model.dispose – Destroy the Model object

Model.dualObjValue – Get the dual objective value in the current solution.

Model.flushParameters – Flush all parameters to the underlying task.

Model.flushSolutions – If any solution values have been provided, flush those values to the underlying task.

Model.getAcceptedSolutionStatus – Get the accepted solution status.

Model.getConstraint – Get the constraint matching the given name or linear index.

Model.getDualSolutionStatus – Return the status of the dual solution.

Model.getName – Return the model name, or an empty string if it has not been set.

Model.getParameter – Get the parameter matching the given name.

Model.getPrimalSolutionStatus – Return the status of the primal solution.

Model.getProblemStatus – Return the status of the problem.

Model.getSolverDoubleInfo – Fetch a solution information item from the solver

Model.getSolverIntInfo – Fetch a solution information item from the solver

Model.getSolverLIntInfo – Fetch a solution information item from the solver

Model.getTask – Return the underlying MOSEK task object.

Model.getVariable – Get the variable matching the given name or linear index.

Model.hasConstraint – Check whether the model contains a constraint with a given name.

Model.hasParameter – Check whether the model contains a parameter with a given name.

Model.hasVariable – Check whether the model contains a variable with a given name.

Model.objective – Replace the objective expression.

Model.optserverHost – Specify an OptServer for remote calls.

Model.parameter – Create a new parameter in the model.

Model.primalObjValue – Get the primal objective value in the current solution.

Model.selectedSolution – Chooses a solution.

Model.setCallbackHandler – Attach a progress callback handler.

Model.setDataCallbackHandler – Attach a data callback handler.

Model.setLogHandler – Attach a log handler.

Model.setSolverParam – Set a solver parameter

Model.solve – Attempt to optimize the model.

Model.updateObjective – Update part of the objective.

Model.variable – Create a new variable in the model.

Model.writeTask – Dump the current solver task to a file.

Model.writeTaskStream – Write the current solver task to a stream.

Static members:

Model.getVersion – Return MOSEK version.

Model.putlicensecode – Set the license code in the global environment.

Model.putlicensepath – Set the license path in the global environment.

Model.putlicensewait – Set the license wait flag in the global environment.

Model.solveBatch – Attempt to optimize a collection of models in parallel.

Model.acceptedSolutionStatus
void acceptedSolutionStatus(AccSolutionStatus what)

Set the accepted solution status. This defines which solution status values are considered as acceptable when fetching a solution. Requesting a solution value for a variable or constraint when the status does not match at least the accepted value will cause an error.

By default the accepted solution status is AccSolutionStatus.Optimal. It is necessary to change the accepted status to access sub-optimal solutions and infeasibility certificates.

The methods Model.getPrimalSolutionStatus and Model.getDualSolutionStatus can be used to get the actual status of the solutions.

Parameters:

what (AccSolutionStatus) – The new accepted solution status.

Model.breakSolver
void breakSolver()

Request that the solver terminates as soon as possible. This must be called from another thread than the one in which solve() was called, or from a callback function.

The method does not stop the solver directly, rather it sets a flag that the solver checks occasionally, indicating it should terminate.

Model.clone
Model clone()

Return a copy of the model.

Return:

(Model)

Model.constraint
Constraint constraint(String name, Expression expr, PSDDomain psddom)
Constraint constraint(Expression expr, PSDDomain psddom)
Constraint constraint(String name, Expression expr, LinearDomain ldom)
Constraint constraint(Expression expr, LinearDomain ldom)
RangedConstraint constraint(String name, Expression expr, RangeDomain rdom)
RangedConstraint constraint(Expression expr, RangeDomain rdom)
Constraint constraint(String name, Expression expr, ConeDomain qdom)
Constraint constraint(Expression expr, ConeDomain qdom)

Adds a new constraint to the model. A constraint is always a statement that an expression or variable belongs to a domain. Constraints can have optional names.

Typical domains used for defining constraints include:

See Domain for a full list of domains.

Parameters:
  • name (String) – Name of the constraint. This must be unique among all constraints in the model. The value null is allowed instead of a unique name.

  • expr (Expression) – An expression.

  • psddom (PSDDomain) – A positive semidefinte domain.

  • ldom (LinearDomain) – A linear domain.

  • rdom (RangeDomain) – A ranged domain.

  • qdom (ConeDomain) – A domain in a cone.

Return:
Model.dataReport
void dataReport(int detail)
void dataReport()

Prints out a text report about the dimensions and numerical properties of the problem data. The report is printed to the currently attached log stream. The report is generated for the internal low-level optimizer task as a rough guidance for the user; some care may be needed to relate it correctly to the Fusion model.

Parameters:

detail (int) – The amount of detail to include, where 0 means nothing and 10 is full. If not provided then a full report is printed.

Model.disjunction
Disjunction disjunction(String name, Term t1)
Disjunction disjunction(String name, Term t1, Term t2)
Disjunction disjunction(String name, Term t1, Term t2, Term t3)
Disjunction disjunction(Term t1)
Disjunction disjunction(Term t1, Term t2)
Disjunction disjunction(Term t1, Term t2, Term t3)
Disjunction disjunction(Term[] terms)
Disjunction disjunction(String name, Term[] terms)

Adds a new disjunctive constraint to the model. A disjunctive constraint with terms \(T_1,\ldots,T_n\) is:

\[T_1 \ \mathrm{OR}\ \cdots\ \mathrm{OR}\ T_n.\]

Each term \(T_i\) of a disjunctive constraint is a Term, which can be created with DJC.term or with DJC.AND.

Parameters:
  • name (String) – The name of this disjunctive constraint.

  • t1 (Term) – A term in the disjunction.

  • t2 (Term) – A term in the disjunction.

  • t3 (Term) – A term in the disjunction.

  • terms (Term[]) – A list of terms forming the disjunctive constraint.

Return:

(Disjunction)

Model.dispose
void dispose()

Destroy the Model object. This removes all references to other objects from the Model.

This helps garbage collection by removing cyclic references, and in some cases it is necessary to ensure that the garbage collector can collect the Model object and assosiated objects.

Model.dualObjValue
double dualObjValue()

Get the dual objective value in the current solution.

Return:

(double)

Model.flushParameters
void flushParameters()

Flush all parameters to the underlying task.

Model.flushSolutions
void flushSolutions()

If any solution values have been provided, flush those values to the underlying task.

Model.getAcceptedSolutionStatus
AccSolutionStatus getAcceptedSolutionStatus()

Get the accepted solution status.

Return:

(AccSolutionStatus)

Model.getConstraint
Constraint getConstraint(String name)
Constraint getConstraint(int index)

Get the constraint matching the given name or linear index. Constraints are assigned indices in the order they are added to the model.

Parameters:
  • name (String) – The constraint’s name.

  • index (int) – The constraint’s linear index.

Return:

(Constraint)

Model.getDualSolutionStatus
SolutionStatus getDualSolutionStatus(SolutionType which)
SolutionStatus getDualSolutionStatus()

Return the status of the dual solution. If no solution type is given the solution set with Model.selectedSolution is checked. It is recommended to check the problem and solution status before accessing the solution values.

Parameters:

which (SolutionType) – The type of the solution for which status is requested.

Return:

(SolutionStatus)

Model.getName
String getName()

Return the model name, or an empty string if it has not been set.

Return:

(String)

Model.getParameter
Parameter getParameter(String name)

Get the parameter matching the given name.

Parameters:

name (String) – The parameter’s name.

Return:

(Parameter)

Model.getPrimalSolutionStatus
SolutionStatus getPrimalSolutionStatus(SolutionType which)
SolutionStatus getPrimalSolutionStatus()

Return the status of the primal solution. If no solution type is given the solution set with Model.selectedSolution is checked. It is recommended to check the problem and solution status before accessing the solution values.

Parameters:

which (SolutionType) – The type of the solution for which status is requested.

Return:

(SolutionStatus)

Model.getProblemStatus
ProblemStatus getProblemStatus(SolutionType which)
ProblemStatus getProblemStatus()

Return the status of the problem. If no solution type is given the solution set with Model.selectedSolution is checked. It is recommended to check the problem and solution status before accessing the solution values.

Parameters:

which (SolutionType) – The type of the solution.

Return:

(ProblemStatus)

Model.getSolverDoubleInfo
double getSolverDoubleInfo(String name)

This method returns the value for the specified double solver information item. The information items become available during and after the solver execution. A runtime exception is thrown if a non-existing information item is requested. The double information items are listed in Section Double information items.

Parameters:

name (String) – A string name of the information item.

Return:

(double)

Model.getSolverIntInfo
int getSolverIntInfo(String name)

This method returns the value for the specified integer solver information item. The information items become available during and after the solver execution. A runtime exception is thrown if a non-existing information item is requested. The integer information items are listed in Section Integer information items..

Parameters:

name (String) – A string name of the information item.

Return:

(int)

Model.getSolverLIntInfo
long getSolverLIntInfo(String name)

This method returns the value for the specified long solver information item. The information items become available during and after the solver execution. A runtime exception is thrown if a non-existing information item is requested. The long integer information items are listed in Section Long integer information items..

Parameters:

name (String) – A string name of the information item.

Return:

(long)

Model.getTask
mosek.Task getTask()

Returns the underlying MOSEK Task object. Note that the returned object is the actual underlying object, not a copy. This means if the returned object is modified by the user, the Model object may become invalid. Accessing the task object should never be necessary, except maybe for advanced debugging. For details on the Task object see the Optimizer API documentation.

Return:

(Task)

Model.getVariable
Variable getVariable(String name)
Variable getVariable(int index)

Get the variable matching the given name or linear index. Variables are assigned indices in the order they are added to the model.

Parameters:
  • name (String) – The variable’s name.

  • index (int) – The variable’s linear index.

Return:

(Variable)

Model.getVersion
String Model.getVersion()

Returns the MOSEK version as a string, for example “10.1.28”.

Return:

(String)

Model.hasConstraint
boolean hasConstraint(String name)

Check whether the model contains a constraint with a given name.

Parameters:

name (String) – The constraint name.

Return:

(boolean)

Model.hasParameter
boolean hasParameter(String name)

Check whether the model contains a parameter with a given name.

Parameters:

name (String) – The parameter’s name.

Return:

(boolean)

Model.hasVariable
boolean hasVariable(String name)

Check whether the model contains a variable with a given name.

Parameters:

name (String) – The variable name.

Return:

(boolean)

Model.objective
void objective(String name, ObjectiveSense sense, Expression expr)
void objective(String name, ObjectiveSense sense, double c)
void objective(String name, double c)
void objective(ObjectiveSense sense, Expression expr)
void objective(ObjectiveSense sense, double c)
void objective(double c)

Replace the objective expression. This method must be called at least once before the first Model.solve.

Parameters:
  • name (String) – Name of the objective. This may be any string, and it has no function except when writing the problem to an external file format.

  • sense (ObjectiveSense) – The objective sense. Defines whether the objective must be minimized or maximized.

  • expr (Expression) – The objective expression. This must be an affine expression that evaluates to a scalar.

  • c (double) – A constant scalar.

Model.optserverHost
void optserverHost(String addr)

Specify an OptServer URL for remote calls. The URL should contain protocol, host and port in the form http://server:port or https://server:port. If the URL is set using this function, all subsequent calls to Model.solve will be sent to the specified OptServer instead of being executed locally. Passing NULL deactivates this redirection.

Parameters:

addr (String) – Address of the OptServer. It should be a valid URL, for example http://server:port or https://server:port.

Model.parameter
Parameter parameter(int[] shape, int[][] sparsity)
Parameter parameter(int[] shape, long[] sp)
Parameter parameter(int[] shape)
Parameter parameter(int d1)
Parameter parameter(int d1, int d2)
Parameter parameter(int d1, int d2, int d3)
Parameter parameter()
Parameter parameter(String name, int[] shape, int[][] sparsity)
Parameter parameter(String name, int[] shape, long[] sp)
Parameter parameter(String name, int[] shape)
Parameter parameter(String name, int d1)
Parameter parameter(String name, int d1, int d2)
Parameter parameter(String name, int d1, int d2, int d3)
Parameter parameter(String name)

Create a new parameter in the model. A parameter is a placeholder for a constant (scalar or array) value that can be assigned and reset after the model is built and between optimizations.

If the shape is not provided, the parameter is a scalar parameter. The default value of a newly created parameter is 0. To set the value use Parameter.setValue.

Parameters:
  • shape (int[]) – Shape of the parameter.

  • sparsity (int[][]) – Non-zero sparsity pattern, if the parameter is sparse.

  • sp (long[]) – Non-zero sparsity pattern as a list of linear indexes, if the parameter is sparse.

  • d1 (int) – First dimension of a parameter.

  • d2 (int) – Second dimension of a parameter.

  • d3 (int) – Third dimension of a parameter.

  • name (String) – Name of the parameter.

Return:

(Parameter)

Model.primalObjValue
double primalObjValue()

Get the primal objective value in the current solution.

Return:

(double)

Model.putlicensecode
void Model.putlicensecode(int[] code)

Set the license code in the global environment. This function has an effect only before the first optimization in the current process.

Parameters:

code (int[])

Model.putlicensepath
void Model.putlicensepath(String licfile)

Set the license path in the global environment. This function has an effect only before the first optimization in the current process.

Parameters:

licfile (String)

Model.putlicensewait
void Model.putlicensewait(boolean wait)

Set the license wait flag in the global environment. If set, MOSEK will wait until a license becomes available.

Parameters:

wait (boolean)

Model.selectedSolution
void selectedSolution(SolutionType soltype)

Chooses a solution. The values of variables and constraints will be read from the chosen solution. The default is to consider all solution types in the order of SolutionType.Default.

Parameters:

soltype (SolutionType) – The solution type to select as default.

Model.setCallbackHandler
void setCallbackHandler(System.CallbackHandler h)

Attach a progress callback handler. During optimization this handler will be called, providing a code with the current state of the solver. Passing null detaches the current handler. See Section Progress and data callback for details and examples and the Optimizer API for information about callback codes.

The progress callback handler is an object of type mosek.ProgressCallback.

Parameters:

h (CallbackHandler) – The callback handler or null.

Model.setDataCallbackHandler
void setDataCallbackHandler(System.DataCallbackHandler h)

Attach a data callback handler. During optimization this handler will be called, providing various information about the current state of the solution and solver. Passing null detaches the current handler. See Section Progress and data callback for details and examples and the Optimizer API for information about callback codes.

The data callback handler is an object of type mosek.DataCallback.

Parameters:

h (DataCallbackHandler) – The callback handler or null.

Model.setLogHandler
void setLogHandler(System.StreamWriter h)

Attach a log handler. The solver log information will be sent to the stream handler. Passing null detaches the current handler.

The log handler is an object of type java.io.Writer, for example

M.setLogHandler(new java.io.PrintWriter(System.out))
Parameters:

h (StreamWriter) – The log handler object or null.

Model.setSolverParam
void setSolverParam(String name, String strval)
void setSolverParam(String name, int intval)
void setSolverParam(String name, double floatval)

Set a solver parameter. Solver parameter values can be either symbolic values, integers or doubles, depending on the parameter. The value is automatically converted to a suitable type whenever possible. If this fails, an exception will be thrown. For example, if the parameter accepts a double value and is given a string, the string will be parsed to produce a double.

See Section Parameters (alphabetical list sorted by type) for a listing of all parameter settings.

Parameters:
  • name (String) – Name of the parameter to set

  • strval (String) – A string value to assign to the parameter.

  • intval (int) – An integer value to assign to the parameter.

  • floatval (double) – A floating point value to assign to the parameter.

Model.solve
void solve()
void solve(String addr, String accesstoken)

This calls the MOSEK solver to solve the problem defined in the model.

If no error occurs, on exit a solution status will be defined for the primal and the dual solutions. These can be obtained with Model.getPrimalSolutionStatus and Model.getDualSolutionStatus. Depending on the solution status, various values may be defined:

  • If the model is primal-dual feasible, or nearly so, and the solver found a solution, the solution values can be accessed through the Variable and Constraint objects in the model. For integer problems only the primal solution is defined, while for continuous problems both primal and dual solutions are available.

  • If the model is primal or dual infeasible, only the primal or the dual solution is defined, depending on the solution status. The available solution contains a certificate of infeasibility.

  • If the status is unknown the solver ran into problems and did not find anything useful. In this case the solution values may be garbage.

The solution can be obtained with Model.primalObjValue and Variable.level and their dual analogues.

By default, trying to fetch a non-optimal solution using Variable.level or Variable.dual will cause an exception. To fetch infeasibility certificates or other less optimal solutions it is necessary to change the accepted solution flag with Model.acceptedSolutionStatus.

Parameters:
  • addr (String) – Address of the OptServer if optimizing remotely. It should be a valid URL, for example http://server:port or https://server:port.

  • accesstoken (String) – Access token if optimizing remotely with authentication.

Model.solveBatch
SolverStatus[] Model.solveBatch(boolean israce, double maxtime, int numthreads, Model[] models)

Calls the MOSEK solver to solve all the provided models in parallel. All callbacks and log output streams are disabled.

Assuming that each model takes about same time and there many more models than threads then a linear speedup can be achieved, also known as strong scaling. A typical application of this method is to solve many small models of similar type; in this case it is recommended that each of them is allocated a single thread by setting numThreads to \(1\).

If the parameters israce or maxtime are used, then the result may not be deterministic, in the sense that the models which complete first may vary between runs.

The remaining behavior is the same as if each model was solved separately with Model.solve. The return array describes if each model solved, failed or wasn’t attempted because another one finished first (if israce is used). Debugging a failed model can be done by solving it individually.

This method parallelizes the call to the numerical solver; additional operations such as postprocessing the optimizer solution into the solution of the Fusion model are still performed sequentially.

Parameters:
  • israce (boolean) – If true, then the function is terminated after the first model completed.

  • maxtime (double) – Time limit: if nonnegative, then the function is terminated after this time (seconds).

  • numthreads (int) – The number of threads for the whole pool available to all models. If set to 0 the number of threads used will be equal to the number of cores detected on the machine.

  • models (Model[]) – An array of models to be solved.

Return:

(SolverStatus[])

Model.updateObjective
void updateObjective(Expression expr, Variable x)

Update the columns in the objective expression defined by x.

Parameters:
  • expr (Expression) – The expression to update with. This must have size 1.

  • x (Variable) – The columns to replace.

Model.variable
Variable variable(String name)
Variable variable(String name, int size)
Variable variable(String name, int size, LinearDomain ldom)
RangedVariable variable(String name, int size, RangeDomain rdom)
Variable variable(String name, int size, ConeDomain qdom)
Variable variable(String name, int[] shp)
Variable variable(String name, int[] shp, LinearDomain ldom)
RangedVariable variable(String name, int[] shp, RangeDomain rdom)
Variable variable(String name, int[] shp, ConeDomain qdom)
Variable variable(String name, LinearDomain ldom)
RangedVariable variable(String name, RangeDomain rdom)
Variable variable(String name, ConeDomain qdom)
Variable variable()
Variable variable(int size)
Variable variable(int size, LinearDomain ldom)
RangedVariable variable(int size, RangeDomain rdom)
Variable variable(int size, ConeDomain qdom)
Variable variable(int[] shp)
Variable variable(int[] shp, LinearDomain ldom)
RangedVariable variable(int[] shp, RangeDomain rdom)
Variable variable(int[] shp, ConeDomain qdom)
Variable variable(LinearDomain ldom)
RangedVariable variable(RangeDomain rdom)
Variable variable(ConeDomain qdom)
Variable variable(String name, int[] shp, PSDDomain psddom)
Variable variable(String name, int n, PSDDomain psddom)
Variable variable(String name, int n, int m, PSDDomain psddom)
Variable variable(String name, PSDDomain psddom)
Variable variable(int n, PSDDomain psddom)
Variable variable(int n, int m, PSDDomain psddom)
Variable variable(PSDDomain psddom)

Create a new variable in the model. All variables must be created using this method. The many versions of the method accept a name (optional), the shape of the variable and its domain. The domain must be suitable for the given variable shape. If the domain is not provided, it is assumed that the variable is unbounded. If the dimension is not provided the variable is a single scalar variable.

Typical domains used for creating variables include:

Parameters:
  • name (String) – Name of the variable. This must be unique among all variables in the model. The value null is allowed instead of a unique name.

  • size (int) – Size of the variable. The variable becomes a one-dimensional vector of the given size.

  • ldom (LinearDomain) – A linear domain for the variable.

  • rdom (RangeDomain) – A ranged domain for the variable.

  • qdom (ConeDomain) – A conic domain for the variable.

  • shp (int[]) – Defines the shape of the variable.

  • psddom (PSDDomain) – A semidefinte domain for the variable.

  • n (int) – Dimension of the semidefinite variable.

  • m (int) – Number of semidefinite variables.

Return:
Model.writeTask
void writeTask(String filename)

Dump the current solver task to a file. The file extension determines the file format, see Section Supported File Formats for details. The file can be read with the command line MOSEK or with the Optimizer API for debugging purposes.

Parameters:

filename (String) – Name of the output file.

Model.writeTaskStream
void writeTaskStream(String ext, System.DataStream stream)

Write the current solver task to a stream object. The extension determines the file format, see Section Supported File Formats, and it should be a string such as "ptf", "task.gz", etc. that would be used for file extension in Model.writeTask.

stream is an object of type java.io.OutputStream, for example

          M.writeTaskStream("jtask", System.out);
          
          M.writeTaskStream("ptf", new java.io.FileOutputStream("dump.ptf"));
Parameters:
  • ext (String) – Extension, which determines the file format.

  • stream (DataStream) – The output stream.