Uses of Class
org.cicirello.search.problems.QuadraticAssignmentProblem
Package
Description
Package of classes and interfaces related to representing computational problems, as well as
classes implementing a variety of specific computational problems.
-
Uses of QuadraticAssignmentProblem in org.cicirello.search.problems
Modifier and TypeMethodDescriptionstatic QuadraticAssignmentProblem
QuadraticAssignmentProblem.createInstance
(int[][] cost, int[][] distance) Creates an instance of the QAP problem from given cost and distance matrices.static QuadraticAssignmentProblem
QuadraticAssignmentProblem.createUniformRandomInstance
(int size, int minCost, int maxCost, int minDistance, int maxDistance) Creates an instance of the QAP problem with cost and distance matrices formed from uniformly random integers.static QuadraticAssignmentProblem
QuadraticAssignmentProblem.createUniformRandomInstance
(int size, int minCost, int maxCost, int minDistance, int maxDistance, long seed) Creates an instance of the QAP problem with cost and distance matrices formed from uniformly random integers.