Skip to content
Snippets Groups Projects

Capture remove

Merged Joan Solà Ortega requested to merge capture_remove into master
5 files
+ 42
10
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 5
1
@@ -90,6 +90,10 @@ void CaptureBase::remove()
{
feature_list_.front()->remove(); // remove downstream
}
while (!constrained_by_list_.empty())
{
constrained_by_list_.front()->remove(); // remove constrained by
}
}
}
@@ -146,7 +150,7 @@ void CaptureBase::removeStateBlocks()
{
for (unsigned int i = 0; i < state_block_vec_.size(); i++)
{
auto sbp = getStateBlockPtr(i);
auto sbp = state_block_vec_[i];
if (sbp != nullptr)
{
if (getProblem() != nullptr)
Loading