|
OptaPlanner distribution 6.2.1-SNAPSHOT | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Solution in org.optaplanner.benchmark.impl.result |
---|
Methods in org.optaplanner.benchmark.impl.result that return Solution | |
---|---|
Solution |
ProblemBenchmarkResult.readPlanningProblem()
|
Methods in org.optaplanner.benchmark.impl.result with parameters of type Solution | |
---|---|
void |
ProblemBenchmarkResult.writeOutputSolution(SingleBenchmarkResult singleBenchmarkResult,
Solution outputSolution)
|
Uses of Solution in org.optaplanner.core.api.domain.solution.cloner |
---|
Classes in org.optaplanner.core.api.domain.solution.cloner with type parameters of type Solution | |
---|---|
interface |
SolutionCloner<SolutionG extends Solution>
Clones a Solution during planning. |
Uses of Solution in org.optaplanner.core.api.solver |
---|
Methods in org.optaplanner.core.api.solver that return Solution | |
---|---|
Solution |
Solver.getBestSolution()
|
Methods in org.optaplanner.core.api.solver with parameters of type Solution | |
---|---|
void |
Solver.solve(Solution planningProblem)
Solves the planning problem. |
Uses of Solution in org.optaplanner.core.api.solver.event |
---|
Classes in org.optaplanner.core.api.solver.event with type parameters of type Solution | |
---|---|
class |
BestSolutionChangedEvent<SolutionG extends Solution>
Delivered when the best Solution changes during solving. |
interface |
SolverEventListener<SolutionG extends Solution>
|
Uses of Solution in org.optaplanner.core.config.solver |
---|
Fields in org.optaplanner.core.config.solver with type parameters of type Solution | |
---|---|
protected Class<? extends Solution> |
SolverConfig.solutionClass
|
Methods in org.optaplanner.core.config.solver that return types with arguments of type Solution | |
---|---|
Class<? extends Solution> |
SolverConfig.getSolutionClass()
|
Method parameters in org.optaplanner.core.config.solver with type arguments of type Solution | |
---|---|
void |
SolverConfig.setSolutionClass(Class<? extends Solution> solutionClass)
|
Uses of Solution in org.optaplanner.core.impl.constructionheuristic.scope |
---|
Methods in org.optaplanner.core.impl.constructionheuristic.scope that return Solution | |
---|---|
Solution |
ConstructionHeuristicMoveScope.getWorkingSolution()
|
Uses of Solution in org.optaplanner.core.impl.domain.entity.descriptor |
---|
Methods in org.optaplanner.core.impl.domain.entity.descriptor with parameters of type Solution | |
---|---|
List<Object> |
EntityDescriptor.extractEntities(Solution solution)
|
long |
EntityDescriptor.getProblemScale(Solution solution,
Object entity)
|
Uses of Solution in org.optaplanner.core.impl.domain.solution.cloner |
---|
Classes in org.optaplanner.core.impl.domain.solution.cloner with type parameters of type Solution | |
---|---|
class |
FieldAccessingSolutionCloner<SolutionG extends Solution>
|
class |
PlanningCloneableSolutionCloner<SolutionG extends Solution>
|
Uses of Solution in org.optaplanner.core.impl.domain.solution.descriptor |
---|
Methods in org.optaplanner.core.impl.domain.solution.descriptor that return types with arguments of type Solution | |
---|---|
Class<? extends Solution> |
SolutionDescriptor.getSolutionClass()
|
Methods in org.optaplanner.core.impl.domain.solution.descriptor with parameters of type Solution | |
---|---|
int |
SolutionDescriptor.countReinitializableVariables(ScoreDirector scoreDirector,
Solution solution)
|
int |
SolutionDescriptor.countUninitializedVariables(Solution solution)
|
Collection<Object> |
SolutionDescriptor.getAllFacts(Solution solution)
|
int |
SolutionDescriptor.getEntityCount(Solution solution)
|
List<Object> |
SolutionDescriptor.getEntityList(Solution solution)
|
List<Object> |
SolutionDescriptor.getEntityListByEntityClass(Solution solution,
Class<?> entityClass)
|
long |
SolutionDescriptor.getProblemScale(Solution solution)
Calculates an indication on how big this problem instance is. |
int |
SolutionDescriptor.getValueCount(Solution solution)
|
long |
SolutionDescriptor.getVariableCount(Solution solution)
|
boolean |
SolutionDescriptor.isInitialized(ScoreDirector scoreDirector,
Solution solution)
|
Constructor parameters in org.optaplanner.core.impl.domain.solution.descriptor with type arguments of type Solution | |
---|---|
SolutionDescriptor(Class<? extends Solution> solutionClass)
|
Uses of Solution in org.optaplanner.core.impl.domain.solution.mutation |
---|
Methods in org.optaplanner.core.impl.domain.solution.mutation with parameters of type Solution | |
---|---|
int |
MutationCounter.countMutations(Solution a,
Solution b)
|
int |
MutationCounter.countMutations(Solution a,
Solution b)
|
Uses of Solution in org.optaplanner.core.impl.domain.valuerange.descriptor |
---|
Methods in org.optaplanner.core.impl.domain.valuerange.descriptor with parameters of type Solution | |
---|---|
ValueRange<?> |
FromSolutionPropertyValueRangeDescriptor.extractValueRange(Solution solution)
|
ValueRange<?> |
EntityIndependentValueRangeDescriptor.extractValueRange(Solution solution)
As specified by ValueRangeDescriptor.extractValueRange(Solution, Object) . |
ValueRange<?> |
CompositeValueRangeDescriptor.extractValueRange(Solution solution)
|
ValueRange<?> |
ValueRangeDescriptor.extractValueRange(Solution solution,
Object entity)
|
ValueRange<?> |
FromSolutionPropertyValueRangeDescriptor.extractValueRange(Solution solution,
Object entity)
|
ValueRange<?> |
FromEntityPropertyValueRangeDescriptor.extractValueRange(Solution solution,
Object entity)
|
ValueRange<?> |
CompositeValueRangeDescriptor.extractValueRange(Solution solution,
Object entity)
|
Uses of Solution in org.optaplanner.core.impl.domain.variable.descriptor |
---|
Methods in org.optaplanner.core.impl.domain.variable.descriptor with parameters of type Solution | |
---|---|
long |
GenuineVariableDescriptor.getValueCount(Solution solution,
Object entity)
|
Uses of Solution in org.optaplanner.core.impl.heuristic.selector.common.decorator |
---|
Classes in org.optaplanner.core.impl.heuristic.selector.common.decorator with type parameters of type Solution | |
---|---|
interface |
SelectionSorterWeightFactory<Sol extends Solution,T>
Creates a weight to decide the order of a collections of selections (a selection is a PlanningEntity , a planningValue, a Move or a Selector ). |
Constructor parameters in org.optaplanner.core.impl.heuristic.selector.common.decorator with type arguments of type Solution | |
---|---|
WeightFactorySelectionSorter(SelectionSorterWeightFactory<Solution,T> selectionSorterWeightFactory,
SelectionSorterOrder selectionSorterOrder)
|
Uses of Solution in org.optaplanner.core.impl.heuristic.selector.move.factory |
---|
Classes in org.optaplanner.core.impl.heuristic.selector.move.factory with type parameters of type Solution | |
---|---|
interface |
MoveListFactory<SolutionG extends Solution>
A simple interface to generate a List of custom Move s. |
Uses of Solution in org.optaplanner.core.impl.heuristic.selector.value |
---|
Fields in org.optaplanner.core.impl.heuristic.selector.value declared as Solution | |
---|---|
protected Solution |
FromEntityPropertyValueSelector.workingSolution
|
Uses of Solution in org.optaplanner.core.impl.localsearch.scope |
---|
Methods in org.optaplanner.core.impl.localsearch.scope that return Solution | |
---|---|
Solution |
LocalSearchMoveScope.getWorkingSolution()
|
Uses of Solution in org.optaplanner.core.impl.phase.scope |
---|
Fields in org.optaplanner.core.impl.phase.scope declared as Solution | |
---|---|
protected Solution |
AbstractStepScope.clonedSolution
|
Methods in org.optaplanner.core.impl.phase.scope that return Solution | |
---|---|
Solution |
AbstractStepScope.createOrGetClonedSolution()
|
Solution |
AbstractStepScope.getClonedSolution()
|
Solution |
AbstractStepScope.getWorkingSolution()
|
Solution |
AbstractPhaseScope.getWorkingSolution()
|
Methods in org.optaplanner.core.impl.phase.scope with parameters of type Solution | |
---|---|
void |
AbstractStepScope.setClonedSolution(Solution clonedSolution)
|
Uses of Solution in org.optaplanner.core.impl.score.director |
---|
Fields in org.optaplanner.core.impl.score.director declared as Solution | |
---|---|
protected Solution |
AbstractScoreDirector.workingSolution
|
Methods in org.optaplanner.core.impl.score.director that return Solution | |
---|---|
Solution |
InnerScoreDirector.cloneSolution(Solution originalSolution)
|
Solution |
AbstractScoreDirector.cloneSolution(Solution originalSolution)
|
Solution |
InnerScoreDirector.cloneWorkingSolution()
|
Solution |
AbstractScoreDirector.cloneWorkingSolution()
|
Solution |
ScoreDirector.getWorkingSolution()
The Solution that is used to calculate the Score . |
Solution |
AbstractScoreDirector.getWorkingSolution()
|
Methods in org.optaplanner.core.impl.score.director with parameters of type Solution | |
---|---|
void |
InnerScoreDirectorFactory.assertScoreFromScratch(Solution solution)
Asserts that if the Score is calculated for the parameter solution,
it would be equal to the getScore() of that parameter. |
void |
AbstractScoreDirectorFactory.assertScoreFromScratch(Solution solution)
|
Solution |
InnerScoreDirector.cloneSolution(Solution originalSolution)
|
Solution |
AbstractScoreDirector.cloneSolution(Solution originalSolution)
|
void |
ScoreDirector.setWorkingSolution(Solution workingSolution)
The workingSolution must never be the same instance as the bestSolution ,
it should be a (un)changed clone. |
void |
AbstractScoreDirector.setWorkingSolution(Solution workingSolution)
|
Uses of Solution in org.optaplanner.core.impl.score.director.drools |
---|
Methods in org.optaplanner.core.impl.score.director.drools with parameters of type Solution | |
---|---|
void |
DroolsScoreDirector.setWorkingSolution(Solution workingSolution)
|
Uses of Solution in org.optaplanner.core.impl.score.director.easy |
---|
Classes in org.optaplanner.core.impl.score.director.easy with type parameters of type Solution | |
---|---|
interface |
EasyScoreCalculator<Sol extends Solution>
Used for easy java Score calculation. |
Uses of Solution in org.optaplanner.core.impl.score.director.incremental |
---|
Classes in org.optaplanner.core.impl.score.director.incremental with type parameters of type Solution | |
---|---|
class |
AbstractIncrementalScoreCalculator<Sol extends Solution>
Abstract superclass for IncrementalScoreCalculator . |
interface |
ConstraintMatchAwareIncrementalScoreCalculator<Sol extends Solution>
Allows a IncrementalScoreCalculator to report ConstraintMatchTotal s
for explaining a score (= which score constraints match for how much)
and also for score corruption analysis. |
interface |
IncrementalScoreCalculator<Sol extends Solution>
Used for incremental java Score calculation. |
Methods in org.optaplanner.core.impl.score.director.incremental with parameters of type Solution | |
---|---|
void |
IncrementalScoreDirector.setWorkingSolution(Solution workingSolution)
|
Uses of Solution in org.optaplanner.core.impl.solver |
---|
Methods in org.optaplanner.core.impl.solver that return Solution | |
---|---|
Solution |
DefaultSolver.getBestSolution()
|
Methods in org.optaplanner.core.impl.solver with parameters of type Solution | |
---|---|
void |
DefaultSolver.solve(Solution planningProblem)
|
Uses of Solution in org.optaplanner.core.impl.solver.event |
---|
Methods in org.optaplanner.core.impl.solver.event with parameters of type Solution | |
---|---|
void |
SolverEventSupport.fireBestSolutionChanged(Solution newBestSolution,
int newUninitializedVariableCount)
|
Uses of Solution in org.optaplanner.core.impl.solver.recaller |
---|
Methods in org.optaplanner.core.impl.solver.recaller with parameters of type Solution | |
---|---|
void |
BestSolutionRecaller.updateBestSolution(DefaultSolverScope solverScope,
Solution solution,
int uninitializedVariableCount)
|
Uses of Solution in org.optaplanner.core.impl.solver.scope |
---|
Fields in org.optaplanner.core.impl.solver.scope declared as Solution | |
---|---|
protected Solution |
DefaultSolverScope.bestSolution
|
Methods in org.optaplanner.core.impl.solver.scope that return Solution | |
---|---|
Solution |
DefaultSolverScope.getBestSolution()
|
Solution |
DefaultSolverScope.getWorkingSolution()
|
Methods in org.optaplanner.core.impl.solver.scope with parameters of type Solution | |
---|---|
void |
DefaultSolverScope.assertScoreFromScratch(Solution solution)
|
void |
DefaultSolverScope.setBestSolution(Solution bestSolution)
The bestSolution must never be the same instance as the workingSolution, it should be a (un)changed clone. |
Uses of Solution in org.optaplanner.examples.cheaptime.domain |
---|
Classes in org.optaplanner.examples.cheaptime.domain that implement Solution | |
---|---|
class |
CheapTimeSolution
|
Uses of Solution in org.optaplanner.examples.cheaptime.persistence |
---|
Methods in org.optaplanner.examples.cheaptime.persistence that return Solution | |
---|---|
Solution |
CheapTimeSolutionFileIO.read(File inputSolutionFile)
|
Solution |
CheapTimeImporter.CheapTimeInputBuilder.readSolution()
|
Solution |
CheapTimeImporter.CheapTimeInputBuilder.ForecastInputBuilder.readSolution()
|
Solution |
CheapTimeImporter.readSolution(File inputFile)
|
Methods in org.optaplanner.examples.cheaptime.persistence with parameters of type Solution | |
---|---|
void |
CheapTimeExporter.CheapTimeOutputBuilder.setSolution(Solution solution)
|
void |
CheapTimeSolutionFileIO.write(Solution solution,
File outputSolutionFile)
|
Uses of Solution in org.optaplanner.examples.cheaptime.swingui |
---|
Methods in org.optaplanner.examples.cheaptime.swingui with parameters of type Solution | |
---|---|
void |
CheapTimePanel.resetPanel(Solution solution)
|
Uses of Solution in org.optaplanner.examples.cloudbalancing.domain |
---|
Classes in org.optaplanner.examples.cloudbalancing.domain that implement Solution | |
---|---|
class |
CloudBalance
|
Uses of Solution in org.optaplanner.examples.cloudbalancing.swingui |
---|
Methods in org.optaplanner.examples.cloudbalancing.swingui with parameters of type Solution | |
---|---|
void |
CloudBalancingPanel.resetPanel(Solution solution)
|
void |
CloudBalancingPanel.updatePanel(Solution solution)
|
Uses of Solution in org.optaplanner.examples.common.business |
---|
Methods in org.optaplanner.examples.common.business that return Solution | |
---|---|
Solution |
SolutionBusiness.getSolution()
|
Solution |
SolutionBusiness.solve(Solution planningProblem)
Can be called on any thread. |
Methods in org.optaplanner.examples.common.business with parameters of type Solution | |
---|---|
void |
SolutionBusiness.setSolution(Solution solution)
|
Solution |
SolutionBusiness.solve(Solution planningProblem)
Can be called on any thread. |
Uses of Solution in org.optaplanner.examples.common.persistence |
---|
Methods in org.optaplanner.examples.common.persistence that return Solution | |
---|---|
abstract Solution |
AbstractXmlSolutionImporter.XmlInputBuilder.readSolution()
|
abstract Solution |
AbstractTxtSolutionImporter.TxtInputBuilder.readSolution()
|
Solution |
XStreamSolutionDao.readSolution(File inputSolutionFile)
|
Solution |
SolutionDao.readSolution(File inputSolutionFile)
|
Solution |
AbstractXmlSolutionImporter.readSolution(File inputFile)
|
Solution |
AbstractTxtSolutionImporter.readSolution(File inputFile)
|
abstract Solution |
AbstractSolutionImporter.readSolution(File inputFile)
|
Solution |
AbstractTxtSolutionImporter.readSolution(URL inputURL)
|
Methods in org.optaplanner.examples.common.persistence with parameters of type Solution | |
---|---|
abstract void |
AbstractXmlSolutionExporter.XmlOutputBuilder.setSolution(Solution solution)
|
abstract void |
AbstractTxtSolutionExporter.TxtOutputBuilder.setSolution(Solution solution)
|
void |
XStreamSolutionDao.writeSolution(Solution solution,
File outputSolutionFile)
|
void |
SolutionDao.writeSolution(Solution solution,
File outputSolutionFile)
|
void |
AbstractXmlSolutionExporter.writeSolution(Solution solution,
File outputFile)
|
void |
AbstractTxtSolutionExporter.writeSolution(Solution solution,
File outputFile)
|
abstract void |
AbstractSolutionExporter.writeSolution(Solution solution,
File outputFile)
|
Uses of Solution in org.optaplanner.examples.common.swingui |
---|
Fields in org.optaplanner.examples.common.swingui declared as Solution | |
---|---|
protected Solution |
SolverAndPersistenceFrame.SolveWorker.planningProblem
|
Methods in org.optaplanner.examples.common.swingui that return Solution | |
---|---|
protected Solution |
SolverAndPersistenceFrame.SolveWorker.doInBackground()
|
Methods in org.optaplanner.examples.common.swingui with parameters of type Solution | |
---|---|
void |
SolverAndPersistenceFrame.refreshScoreField(Solution solution)
|
abstract void |
SolutionPanel.resetPanel(Solution solution)
|
void |
SolutionPanel.updatePanel(Solution solution)
|
Constructors in org.optaplanner.examples.common.swingui with parameters of type Solution | |
---|---|
SolverAndPersistenceFrame.SolveWorker(Solution planningProblem)
|
Uses of Solution in org.optaplanner.examples.curriculumcourse.domain |
---|
Classes in org.optaplanner.examples.curriculumcourse.domain that implement Solution | |
---|---|
class |
CourseSchedule
|
Uses of Solution in org.optaplanner.examples.curriculumcourse.persistence |
---|
Methods in org.optaplanner.examples.curriculumcourse.persistence that return Solution | |
---|---|
Solution |
CurriculumCourseImporter.CurriculumCourseInputBuilder.readSolution()
|
Methods in org.optaplanner.examples.curriculumcourse.persistence with parameters of type Solution | |
---|---|
void |
CurriculumCourseExporter.CurriculumCourseOutputBuilder.setSolution(Solution solution)
|
Uses of Solution in org.optaplanner.examples.curriculumcourse.swingui |
---|
Methods in org.optaplanner.examples.curriculumcourse.swingui with parameters of type Solution | |
---|---|
void |
CurriculumCoursePanel.resetPanel(Solution solution)
|
Uses of Solution in org.optaplanner.examples.dinnerparty.domain |
---|
Classes in org.optaplanner.examples.dinnerparty.domain that implement Solution | |
---|---|
class |
DinnerParty
|
Uses of Solution in org.optaplanner.examples.dinnerparty.persistence |
---|
Methods in org.optaplanner.examples.dinnerparty.persistence that return Solution | |
---|---|
Solution |
DinnerPartyImporter.DinnerPartyInputBuilder.readSolution()
|
Uses of Solution in org.optaplanner.examples.dinnerparty.swingui |
---|
Methods in org.optaplanner.examples.dinnerparty.swingui with parameters of type Solution | |
---|---|
void |
DinnerPartyPanel.resetPanel(Solution solution)
|
Uses of Solution in org.optaplanner.examples.examination.domain |
---|
Classes in org.optaplanner.examples.examination.domain that implement Solution | |
---|---|
class |
Examination
|
Uses of Solution in org.optaplanner.examples.examination.persistence |
---|
Methods in org.optaplanner.examples.examination.persistence that return Solution | |
---|---|
Solution |
ExaminationImporter.ExaminationInputBuilder.readSolution()
|
Methods in org.optaplanner.examples.examination.persistence with parameters of type Solution | |
---|---|
void |
ExaminationExporter.ExaminationOutputBuilder.setSolution(Solution solution)
|
Uses of Solution in org.optaplanner.examples.examination.swingui |
---|
Methods in org.optaplanner.examples.examination.swingui with parameters of type Solution | |
---|---|
void |
ExaminationPanel.resetPanel(Solution solution)
|
Uses of Solution in org.optaplanner.examples.machinereassignment.domain |
---|
Classes in org.optaplanner.examples.machinereassignment.domain that implement Solution | |
---|---|
class |
MachineReassignment
|
Uses of Solution in org.optaplanner.examples.machinereassignment.persistence |
---|
Methods in org.optaplanner.examples.machinereassignment.persistence that return Solution | |
---|---|
Solution |
MachineReassignmentFileIO.read(File inputSolutionFile)
|
Solution |
MachineReassignmentImporter.MachineReassignmentInputBuilder.readSolution()
|
Methods in org.optaplanner.examples.machinereassignment.persistence with parameters of type Solution | |
---|---|
void |
MachineReassignmentExporter.MachineReassignmentOutputBuilder.setSolution(Solution solution)
|
void |
MachineReassignmentFileIO.write(Solution solution,
File outputSolutionFile)
|
Uses of Solution in org.optaplanner.examples.machinereassignment.swingui |
---|
Methods in org.optaplanner.examples.machinereassignment.swingui with parameters of type Solution | |
---|---|
void |
MachineReassignmentPanel.resetPanel(Solution solution)
|
void |
MachineReassignmentPanel.updatePanel(Solution solution)
|
Uses of Solution in org.optaplanner.examples.nqueens.domain |
---|
Classes in org.optaplanner.examples.nqueens.domain that implement Solution | |
---|---|
class |
NQueens
|
Uses of Solution in org.optaplanner.examples.nqueens.swingui |
---|
Methods in org.optaplanner.examples.nqueens.swingui with parameters of type Solution | |
---|---|
void |
NQueensPanel.resetPanel(Solution solution)
|
Uses of Solution in org.optaplanner.examples.nurserostering.domain |
---|
Classes in org.optaplanner.examples.nurserostering.domain that implement Solution | |
---|---|
class |
NurseRoster
|
Uses of Solution in org.optaplanner.examples.nurserostering.persistence |
---|
Methods in org.optaplanner.examples.nurserostering.persistence that return Solution | |
---|---|
Solution |
NurseRosteringImporter.NurseRosteringInputBuilder.readSolution()
|
Methods in org.optaplanner.examples.nurserostering.persistence with parameters of type Solution | |
---|---|
void |
NurseRosteringExporter.NurseRosteringOutputBuilder.setSolution(Solution solution)
|
Uses of Solution in org.optaplanner.examples.nurserostering.swingui |
---|
Methods in org.optaplanner.examples.nurserostering.swingui with parameters of type Solution | |
---|---|
void |
NurseRosteringPanel.resetPanel(Solution solution)
|
void |
NurseRosteringPanel.updatePanel(Solution solution)
|
Uses of Solution in org.optaplanner.examples.pas.domain |
---|
Classes in org.optaplanner.examples.pas.domain that implement Solution | |
---|---|
class |
PatientAdmissionSchedule
|
Uses of Solution in org.optaplanner.examples.pas.persistence |
---|
Methods in org.optaplanner.examples.pas.persistence that return Solution | |
---|---|
Solution |
PatientAdmissionScheduleImporter.PatientAdmissionScheduleInputBuilder.readSolution()
|
Methods in org.optaplanner.examples.pas.persistence with parameters of type Solution | |
---|---|
void |
PatientAdmissionScheduleExporter.PatientAdmissionScheduleOutputBuilder.setSolution(Solution solution)
|
Uses of Solution in org.optaplanner.examples.pas.swingui |
---|
Methods in org.optaplanner.examples.pas.swingui with parameters of type Solution | |
---|---|
void |
PatientAdmissionSchedulePanel.resetPanel(Solution solution)
|
Uses of Solution in org.optaplanner.examples.projectjobscheduling.domain |
---|
Classes in org.optaplanner.examples.projectjobscheduling.domain that implement Solution | |
---|---|
class |
Schedule
|
Uses of Solution in org.optaplanner.examples.projectjobscheduling.persistence |
---|
Methods in org.optaplanner.examples.projectjobscheduling.persistence that return Solution | |
---|---|
Solution |
ProjectJobSchedulingImporter.ProjectJobSchedulingInputBuilder.readSolution()
|
Solution |
ProjectJobSchedulingImporter.ProjectJobSchedulingInputBuilder.ProjectFileInputBuilder.readSolution()
|
Uses of Solution in org.optaplanner.examples.projectjobscheduling.swingui |
---|
Methods in org.optaplanner.examples.projectjobscheduling.swingui with parameters of type Solution | |
---|---|
void |
ProjectJobSchedulingPanel.resetPanel(Solution solution)
|
Uses of Solution in org.optaplanner.examples.tennis.domain |
---|
Classes in org.optaplanner.examples.tennis.domain that implement Solution | |
---|---|
class |
TennisSolution
|
Uses of Solution in org.optaplanner.examples.tennis.swingui |
---|
Methods in org.optaplanner.examples.tennis.swingui with parameters of type Solution | |
---|---|
void |
TennisPanel.resetPanel(Solution solution)
|
Uses of Solution in org.optaplanner.examples.travelingtournament.domain |
---|
Classes in org.optaplanner.examples.travelingtournament.domain that implement Solution | |
---|---|
class |
TravelingTournament
|
Uses of Solution in org.optaplanner.examples.travelingtournament.persistence |
---|
Methods in org.optaplanner.examples.travelingtournament.persistence that return Solution | |
---|---|
Solution |
TravelingTournamentImporter.TravelingTournamentInputBuilder.readSolution()
|
Methods in org.optaplanner.examples.travelingtournament.persistence with parameters of type Solution | |
---|---|
void |
TravelingTournamentExporter.TravelingTournamentOutputBuilder.setSolution(Solution solution)
|
Uses of Solution in org.optaplanner.examples.travelingtournament.swingui |
---|
Methods in org.optaplanner.examples.travelingtournament.swingui with parameters of type Solution | |
---|---|
void |
TravelingTournamentPanel.resetPanel(Solution solution)
|
Uses of Solution in org.optaplanner.examples.tsp.domain |
---|
Classes in org.optaplanner.examples.tsp.domain that implement Solution | |
---|---|
class |
TravelingSalesmanTour
|
Uses of Solution in org.optaplanner.examples.tsp.persistence |
---|
Methods in org.optaplanner.examples.tsp.persistence that return Solution | |
---|---|
Solution |
TspFileIO.read(File inputSolutionFile)
|
Solution |
TspImporter.TspInputBuilder.readSolution()
|
Methods in org.optaplanner.examples.tsp.persistence with parameters of type Solution | |
---|---|
void |
TspExporter.TspOutputBuilder.setSolution(Solution solution)
|
void |
TspFileIO.write(Solution solution,
File outputSolutionFile)
|
Uses of Solution in org.optaplanner.examples.tsp.swingui |
---|
Methods in org.optaplanner.examples.tsp.swingui with parameters of type Solution | |
---|---|
void |
TspPanel.resetPanel(Solution solution)
|
void |
TspPanel.updatePanel(Solution solution)
|
Uses of Solution in org.optaplanner.examples.vehiclerouting.domain |
---|
Classes in org.optaplanner.examples.vehiclerouting.domain that implement Solution | |
---|---|
class |
VehicleRoutingSolution
|
Uses of Solution in org.optaplanner.examples.vehiclerouting.domain.timewindowed |
---|
Classes in org.optaplanner.examples.vehiclerouting.domain.timewindowed that implement Solution | |
---|---|
class |
TimeWindowedVehicleRoutingSolution
|
Uses of Solution in org.optaplanner.examples.vehiclerouting.persistence |
---|
Methods in org.optaplanner.examples.vehiclerouting.persistence that return Solution | |
---|---|
Solution |
VehicleRoutingFileIO.read(File inputSolutionFile)
|
Solution |
VehicleRoutingImporter.VehicleRoutingInputBuilder.readSolution()
|
Methods in org.optaplanner.examples.vehiclerouting.persistence with parameters of type Solution | |
---|---|
void |
VehicleRoutingFileIO.write(Solution solution,
File outputSolutionFile)
|
Uses of Solution in org.optaplanner.examples.vehiclerouting.swingui |
---|
Methods in org.optaplanner.examples.vehiclerouting.swingui with parameters of type Solution | |
---|---|
void |
VehicleRoutingPanel.resetPanel(Solution solutionObject)
|
void |
VehicleRoutingPanel.updatePanel(Solution solutionObject)
|
Uses of Solution in org.optaplanner.persistence.common.api.domain.solution |
---|
Methods in org.optaplanner.persistence.common.api.domain.solution that return Solution | |
---|---|
Solution |
SolutionFileIO.read(File inputSolutionFile)
This method is thread-safe. |
Methods in org.optaplanner.persistence.common.api.domain.solution with parameters of type Solution | |
---|---|
void |
SolutionFileIO.write(Solution solution,
File outputSolutionFile)
This method is thread-safe. |
Uses of Solution in org.optaplanner.persistence.xstream.impl.domain.solution |
---|
Methods in org.optaplanner.persistence.xstream.impl.domain.solution that return Solution | |
---|---|
Solution |
XStreamSolutionFileIO.read(File inputSolutionFile)
|
Methods in org.optaplanner.persistence.xstream.impl.domain.solution with parameters of type Solution | |
---|---|
void |
XStreamSolutionFileIO.write(Solution solution,
File outputSolutionFile)
|
|
OptaPlanner distribution 6.2.1-SNAPSHOT | |||||||||
PREV NEXT | FRAMES NO FRAMES |