All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.drools.planner.core.score.director.ScoreDirector Maven / Gradle / Ivy

Go to download

Drools Planner optimizes automated planning by combining metaheuristic search algorithms with rule engine powered score calculation. This is the drools-planner-core module which contains metaheuristic algorithms.

There is a newer version: 6.0.0.Alpha9
Show newest version
/*
 * Copyright 2011 JBoss Inc
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.drools.planner.core.score.director;

import java.util.List;
import java.util.Map;

import org.drools.planner.core.domain.solution.SolutionDescriptor;
import org.drools.planner.core.domain.variable.PlanningVariableDescriptor;
import org.drools.planner.core.score.Score;
import org.drools.planner.core.score.definition.ScoreDefinition;
import org.drools.planner.core.solution.Solution;

/**
 * The ScoreDirector hold the {@link Solution} workingSolution and calculates the score for that {@link Solution}.
 */
public interface ScoreDirector {

    /**
     * @return never null
     */
    SolutionDescriptor getSolutionDescriptor();

    /**
     * @return never null
     */
    ScoreDefinition getScoreDefinition();

    /**
     * The {@link Solution} that is used to calculate the {@link Score}.
     * 

* Because a {@link Score} is best calculated incrementally (by delta's), * the {@link ScoreDirector} needs to be notified when it's workingSolution changes. *

* If the {@link Solution} has been changed since {@link #calculateScore} has been called, * the {@link Solution#getScore()} of this {@link Solution} won't be correct. * @return never null */ Solution getWorkingSolution(); /** * The workingSolution must never be the same instance as the bestSolution, it should be a (un)changed clone. * @param workingSolution never null */ void setWorkingSolution(Solution workingSolution); void beforeEntityAdded(Object entity); void afterEntityAdded(Object entity); void beforeAllVariablesChanged(Object entity); void afterAllVariablesChanged(Object entity); void beforeVariableChanged(Object entity, String variableName); void afterVariableChanged(Object entity, String variableName); void beforeEntityRemoved(Object entity); void afterEntityRemoved(Object entity); // TODO extract this set of methods into a separate interface, only used by ProblemFactChange void beforeProblemFactAdded(Object problemFact); void afterProblemFactAdded(Object problemFact); void beforeProblemFactChanged(Object problemFact); void afterProblemFactChanged(Object problemFact); void beforeProblemFactRemoved(Object problemFact); void afterProblemFactRemoved(Object problemFact); /** * @return never null: an empty list if there are none */ List getWorkingPlanningEntityList(); /** * @return true if the workingSolution is initialized */ boolean isWorkingSolutionInitialized(); /** * Calculates the {@link Score} and updates the workingSolution accordingly. * @return never null, the {@link Score} of the working solution */ Score calculateScore(); /** * @return at least 0L */ long getCalculateCount(); /** * @param variableDescriptor never null * @return never null */ Map> getVariableToEntitiesMap(PlanningVariableDescriptor variableDescriptor); /** * @param workingScore never null */ void assertWorkingScore(Score workingScore); /** * Needs to be called after use because some implementations needs to clean up their resources. */ void dispose(); }