Moment Program

MomentPolynomialOpt.momentsFunction
moments(M, X, d::Int, symb::Symbol...)

Define variables for the moments of the monomials of degree less than d in the variables X. If

  • symb == :PSD, non-negativity constraints are added;
  • symb == :PRB, unit mass and non-negativity constraints are added.
source
MomentPolynomialOpt.MOM.ModelFunction
M = MOM.Model( `sense`, f, H, G, X, d)

Construct the Moment Program in the variables X of order d.

  • sense == :inf or :sup
  • f polynomial objective function
  • H =[h1, h2, ...] array of polynomial equality constraints (can be empty)
  • G =[g1, g2, ...] array of non-negativity constraints (can be empty)
  • X is the vector of variables
  • d is the order of the moment relaxation.
source
M = MOM.Model(C, X, d)

Construct the Moment Program where

  • C is a vector of pairs (f, sense ) of objective or constraints where f is a polynomial and sense is "inf", "min", "sup", "max", ">=0", "<=0", "=0", or an interval
  • X is the vector of variables
  • d is the order of the moment relaxation.
source

Constraints

MomentPolynomialOpt.MOM.add_constraint_zeroFunction
add_constraint_zero(M, eq, mu::Moments)

Add to the moment program M, the constraints $eq\star \mu = 0$, that is all the constraints $\mu(p*m)==0$ for $degree(m) \le 2*degree(M)-degree(p)$.

source

Objective function

MomentPolynomialOpt.MOM.set_objective_tvFunction
set_objective_tv(M)

Set the objective function of the moment program to the total variation of the moment sequence $\mu$, that is the sum of the unit mass of the positive moment sequences $\sum_{i=1}^{\nu} \langle \mu_i, 1\rangle$.

source