コード例 #1
0
 public void phaseEnded(AbstractPhaseScope phaseScope) {
   if (cacheType == SelectionCacheType.PHASE) {
     selectionCacheLifecycleListener.disposeCache(phaseScope.getSolverScope());
   }
 }
コード例 #2
0
 public void solvingEnded(DefaultSolverScope solverScope) {
   if (cacheType == SelectionCacheType.SOLVER) {
     selectionCacheLifecycleListener.disposeCache(solverScope);
   }
 }
コード例 #3
0
 public void stepEnded(AbstractStepScope stepScope) {
   if (cacheType == SelectionCacheType.STEP) {
     selectionCacheLifecycleListener.disposeCache(stepScope.getPhaseScope().getSolverScope());
   }
 }