Excerpted from DomainDrivenDesignBook
Problem: Elements in the model may partially serve the
CoreDomain and partially play supporting roles. CORE elements may be tightly coupled to generic ones. The conceptual cohesion of the CORE may not be strong or visible. All this clutter and entanglement chokes the CORE. Designers can?t clearly see the most important relationships, leading to a weak design.
Solution: Refactor the model to separate the CORE concepts from supporting players (including ill-defined ones) and strengthen the cohesion of the CORE while reducing its coupling to other code. Factor all generic or supporting elements into other objects and place them into other packages, even if this means refactoring the model in ways that separate highly coupled elements.
SegregatedCore is mentioned on: MessagesByTopic