Skip to content

Commit

Permalink
[sep] corrected bug in SepProj
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonRohou committed Apr 14, 2023
1 parent da1d743 commit 2d706ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/separators/codac_SepProj.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ bool SepProj::process(IntervalVector& x_in, IntervalVector& x_out, IntervalVecto
x_out.set_empty();
if( use_point == false)
impact.setCoutFlags(x_out, x);
y.set_empty();
//y.set_empty();
return true;
} else {
x_out = XoutFull.subvector(0, x_out.size()-1);
y = XoutFull.subvector(x_out.size(), XoutFull.size()-1);
//y = XoutFull.subvector(x_out.size(), XoutFull.size()-1);
if( use_point == false)
impact.setCoutFlags(x_out, x);
}
Expand Down

0 comments on commit 2d706ff

Please sign in to comment.