コード例 #1
0
 public void phaseEnded(AbstractPhaseScope phaseScope) {
   if (cacheType == SelectionCacheType.PHASE) {
     selectionCacheLifecycleListener.disposeCache(phaseScope.getSolverScope());
   }
 }
コード例 #2
0
 public void phaseStarted(AbstractPhaseScope phaseScope) {
   if (cacheType == SelectionCacheType.PHASE) {
     selectionCacheLifecycleListener.constructCache(phaseScope.getSolverScope());
   }
 }