Skip to content

Commit

Permalink
Fixed minMap
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalashnikovni committed May 20, 2024
1 parent 8a3d510 commit 71a7551
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions sbg/pw_map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
******************************************************************************/

#include "sbg/pw_map.hpp"
#include <iostream>

namespace SBG {

Expand Down Expand Up @@ -610,7 +609,7 @@ PWMap<Set> PWMap<Set>::minMap(
if (!s2.isEmpty()) {
e2 = map2.exp();
flag2 = true;
im2 = map2.image();
im2 = map2.image(mdi_set);
break;
}
}
Expand All @@ -630,7 +629,7 @@ PWMap<Set> PWMap<Set>::minMap(
if (!s3.isEmpty()) {
e3 = map3.exp();
flag3 = true;
im3 = map3.image();
im3 = map3.image(mdi_set);
break;
}
}
Expand Down

0 comments on commit 71a7551

Please sign in to comment.