fromMemory.getBetaMemory().setSegmentMemory(smem);
}
private static boolean processBranchNode(ConditionalBranchNode tupleSource, InternalWorkingMemory wm, SegmentMemory smem) {
boolean updateNodeBit;
ConditionalBranchMemory branchMem = (ConditionalBranchMemory) smem.createNodeMemory((ConditionalBranchNode) tupleSource, wm);
branchMem.setSegmentMemory(smem);
updateNodeBit = false; // nodes after a branch CE can notify, but they cannot impact linking
return updateNodeBit;
}