summaryrefslogtreecommitdiffstats
path: root/src/map/if
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/if')
-rw-r--r--src/map/if/ifCut.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/map/if/ifCut.c b/src/map/if/ifCut.c
index 47127fda..9d884e75 100644
--- a/src/map/if/ifCut.c
+++ b/src/map/if/ifCut.c
@@ -953,18 +953,22 @@ float If_CutAreaFlow( If_Man_t * p, If_Cut_t * pCut )
float If_CutEdgeFlow( If_Man_t * p, If_Cut_t * pCut )
{
If_Obj_t * pLeaf;
- float Flow;
+ float Flow, AddOn;
int i;
Flow = pCut->nLeaves;
If_CutForEachLeaf( p, pCut, pLeaf, i )
{
if ( pLeaf->nRefs == 0 || If_ObjIsConst1(pLeaf) )
- Flow += If_ObjCutBest(pLeaf)->Edge;
+ AddOn = If_ObjCutBest(pLeaf)->Edge;
else
{
assert( pLeaf->EstRefs > p->fEpsilon );
- Flow += If_ObjCutBest(pLeaf)->Edge / pLeaf->EstRefs;
+ AddOn = If_ObjCutBest(pLeaf)->Edge / pLeaf->EstRefs;
}
+ if ( Flow >= (float)1e32 || AddOn >= (float)1e32 )
+ Flow = (float)1e32;
+ else
+ Flow += AddOn;
}
return Flow;
}