Skip to content

Commit

Permalink
adding lower to bounded form
Browse files Browse the repository at this point in the history
  • Loading branch information
cheshmi committed Sep 25, 2020
1 parent 9c925e8 commit 708bbe3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mp_format_converter.h
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,9 @@ namespace format {
smp_->desc_struct_=bf_->desc;
smp_->desc_=smp_->desc_struct_.get_desc();
problem_name = smp_->desc_struct_.name_;
smp_->H_ = sym_lib::copy_sparse(bf_->H);
//smp_->H_ = sym_lib::copy_sparse(bf_->H);
smp_->H_ = sym_lib::make_half(bf_->H->n,bf_->H->p,
bf_->H->i, bf_->H->x,true);
smp_->H_->stype = LOWER;
smp_->q_ = sym_lib::copy_dense(bf_->q);
smp_->r_ = bf_->fixed;
Expand Down

0 comments on commit 708bbe3

Please sign in to comment.