约束中的不等式。我试图在朱莉娅写下面的数学方程式,不知道如何处理不等式条件

时间:2018-02-25 16:31:56

标签: julia gurobi julia-jump

enter image description here

我现在有以下代码。有人可以帮助解决如何在循环中实现不等式条件吗?感谢

for i=1:c
    for j=1:c
        for k=1:N_+
@constraint(m,2*y[i,j,k]- sum{x[h,i],h=0:N_0}- sum{x[l,k],l=1:c} <=0)   
        end
    end
end

1 个答案:

答案 0 :(得分:1)

<xsl:template match="sec|ack">
    <xsl:call-template name="subtitle">
        <xsl:with-param name="text" select="title"/>
    </xsl:call-template>
    <fo:table width="100%" >
        <fo:table-column column-width="45%"/>
        <fo:table-column column-width="45%"/>
        <fo:table-body>
            <fo:table-row>
                <fo:table-cell>
                    <fo:block><xsl:apply-templates select="*[name()!='title']|text()" mode="xhtml"/></fo:block>
                </fo:table-cell>
                <fo:table-cell>
                    <fo:block>This is the second content block.</fo:block>
                </fo:table-cell>
            </fo:table-row>
        </fo:table-body>
    </fo:table>
</xsl:template>