removed all printing
parent
cc0e5cd3ca
commit
d435fa72df
|
|
@ -108,11 +108,8 @@ public:
|
||||||
lG11sum += -lambda[i] * G11[i];
|
lG11sum += -lambda[i] * G11[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
std::cout << "lG11sum: " << lG11sum << std::endl;
|
|
||||||
HessianFactor::shared_ptr hf(new HessianFactor(Base::key(), lG11sum,
|
HessianFactor::shared_ptr hf(new HessianFactor(Base::key(), lG11sum,
|
||||||
zero(X1Dim), 100.0));
|
zero(X1Dim), 100.0));
|
||||||
hf->print("HessianFactor: ");
|
|
||||||
return hf;
|
return hf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -215,7 +215,7 @@ public:
|
||||||
* Single iteration of SQP
|
* Single iteration of SQP
|
||||||
*/
|
*/
|
||||||
SQPSimpleState iterate(const SQPSimpleState& state) const {
|
SQPSimpleState iterate(const SQPSimpleState& state) const {
|
||||||
static const bool debug = true;
|
static const bool debug = false;
|
||||||
|
|
||||||
// construct the qp subproblem
|
// construct the qp subproblem
|
||||||
QP qp;
|
QP qp;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue