本文整理汇总了C++中IntervalMatrix::col方法的典型用法代码示例。如果您正苦于以下问题:C++ IntervalMatrix::col方法的具体用法?C++ IntervalMatrix::col怎么用?C++ IntervalMatrix::col使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IntervalMatrix
的用法示例。
在下文中一共展示了IntervalMatrix::col方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: proj_mul
bool proj_mul(const IntervalMatrix& y, IntervalMatrix& x1, IntervalMatrix& x2, double ratio) {
int m=y.nb_rows();
int n=y.nb_cols();
assert(x1.nb_cols()==x2.nb_rows());
assert(x1.nb_rows()==m);
assert(x2.nb_cols()==n);
// each coefficient (i,j) of y is considered as a binary "dot product" constraint
// between the ith row of x1 and the jth column of x2
// (advantage: we have exact projection for the dot product)
//
// we propagate these constraints using a simple agenda.
Agenda a(m*n);
//init
for (int i=0; i<m; i++)
for (int j=0; j<n; j++)
a.push(i*n+j);
int k;
while (!a.empty()) {
a.pop(k);
int i=k/n;
int j=k%n;
IntervalVector x1old=x1[i];
IntervalVector x2j=x2.col(j);
IntervalVector x2old=x2j;
if (!proj_mul(y[i][j],x1[i],x2j)) {
x1.set_empty();
x2.set_empty();
return false;
} else {
if (x1old.rel_distance(x1[i])>=ratio) {
for (int j2=0; j2<n; j2++)
if (j2!=j) a.push(i*n+j2);
}
if (x2old.rel_distance(x2j)>=ratio) {
for (int i2=0; i2<m; i2++)
if (i2!=i) a.push(i2*n+j);
}
x2.set_col(j,x2j);
}
}
return true;
}