mirror of
https://github.com/opencv/opencv.git
synced 2025-06-11 03:33:28 +08:00
Minor fixes
Fixing failed build.
This commit is contained in:
parent
c123974f42
commit
52b250f466
@ -91,7 +91,6 @@ int solveLP(const Mat& Func, const Mat& Constr, Mat& z){
|
|||||||
z.create(c.cols,1,CV_64FC1);
|
z.create(c.cols,1,CV_64FC1);
|
||||||
MatIterator_<double> it=z.begin<double>();
|
MatIterator_<double> it=z.begin<double>();
|
||||||
for(int i=1;i<=c.cols;i++,it++){
|
for(int i=1;i<=c.cols;i++,it++){
|
||||||
std::vector<int>::iterator pos=B.begin();
|
|
||||||
if(indexToRow[i]<N.size()){
|
if(indexToRow[i]<N.size()){
|
||||||
*it=0;
|
*it=0;
|
||||||
}else{
|
}else{
|
||||||
|
Loading…
Reference in New Issue
Block a user