14.3.9 Class DJC¶
- mosek.fusion.DJC¶
A class providing static methods to manipulate terms of disjunctive constraints (DJC).
- Static members:
DJC.AND (&) – Create a conjunction of simple terms.
DJC.term – Create a simple term.
- DJC.AND (&)¶
DJC.AND(SimpleTerm[] slist) -> Term DJC.AND(SimpleTerm s1) -> Term DJC.AND(SimpleTerm s1, SimpleTerm s2) -> Term DJC.AND(SimpleTerm s1, SimpleTerm s2, SimpleTerm s3) -> Term
Creates a conjunction of existing simple terms \(S_1,\ldots,S_n\), that is a term representing:
\[S_1 \ \mathrm{AND}\ \cdots\ \mathrm{AND}\ S_n.\]The Python operator/property
&can also be used for this purpose. See Sec. 14.2 (Pythonic extensions) for details.- Parameters:
slist(SimpleTerm[]) – A list of simple terms in the conjunction.s1(SimpleTerm) – A simple term.s2(SimpleTerm) – A simple term.s3(SimpleTerm) – A simple term.
- Return:
(
Term)
- DJC.term¶
DJC.term(Variable x, LinearDomain dom) -> SimpleTerm DJC.term(Expression expr, LinearDomain dom) -> SimpleTerm DJC.term(Variable x, RangeDomain dom) -> SimpleTerm DJC.term(Expression expr, RangeDomain dom) -> SimpleTerm
Creates a simple term, that is a condition which can be used as a building block in disjunctive constraints. A simple term has the form an expression belongs to a domain. Only linear and ranged domains are allowed in a disjunctive constraint.
A simple term can be used to construct a conjunctive term with
DJC.AND (&)or it can enter directly as a term into a disjunctive constraint viaModel.disjunction (|).- Parameters:
x(Variable) – A variable.dom(LinearDomain) – The domain of this simple term.dom(RangeDomain) – The domain of this simple term.expr(Expression) – An expression.
- Return: