本文整理汇总了C++中strvec::empty方法的典型用法代码示例。如果您正苦于以下问题:C++ strvec::empty方法的具体用法?C++ strvec::empty怎么用?C++ strvec::empty使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类strvec
的用法示例。
在下文中一共展示了strvec::empty方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: optimiseSum
void MtxLP::optimiseSum(bool max, strvec q, bool presolve){
setObjDir(max);
if (q.empty())
q = getColNames();
setObjective(q);
Solve(presolve);
}
示例2: optimiseLen
void MtxLP::optimiseLen(bool max, strvec q, bool presolve){
if (q.empty())
q = getColNames();
setObjDir(max);
setLenObjective(q, true);
Solve(presolve);
cleanTmpRows(q.size());
}
示例3: select
void Matrix::select(strvec &rv, strvec &names, bool(Matrix::*fun)(string)const, strvec &ignore)const {
if (names.empty())
names = rows;
elmap::iterator end = map->end();
string name;
strvec::iterator igbeg = ignore.begin(), igend = ignore.end();
for (strvec::iterator it = names.begin(); it != names.end(); ++it){
if (std::find(igbeg, igend, *it) == igend){
name = *it;
if (map->find(*it) == end)
throw runtime_error(string("No such row or column: ") + name);
if ((*this.*fun)(name))
rv.push_back(name);
}
}
}