Uses of Class
org.ddolib.modeling.InvalidSolutionException
Packages that use InvalidSolutionException
Package
Description
This package implements the acs, astar and ddo models for the Aircraft Landing Problem (ALP).
This package implements the acs, astar and ddo models for the Bounded Knapsack Problem (BKS).
This package implements the acs, astar and ddo models for the Golomb Rule Problem (GRP).
This package implements the acs, astar and ddo models for the Knapsack Problem (KS).
This package implements the acs, astar and ddo models for the Longest Common Subsequence (LCS) Problem.
This package implements the acs, astar and ddo models for the Maximum 2-Satisfiability Problem (MAX2SAT) Problem.
This package implements the acs, astar and ddo models for the Maximum Cut Problem (MCP).
This package implements the acs, astar and ddo models for the Maximum Independent Set Problem (MISP).
The Multidimensional Knapsack Problem (MKP) is a generalization of the KP
to multiple capacity constraints: $n$ items and $m$ dimensions of the knapsack
are given, each dimension with capacity bound $(C_1,\ldots ,C_m)$.
This package implements the acs, astar and ddo models for the Minimum Sum Completion Time (MSCT).
This package implements the acs, astar and ddo models for the Single Vehicle Pick-up and Delivery Problem (PDP).
This package implements the acs, astar and ddo models for the Pigment Sequencing Problem (PSP).
This package implements the acs, astar and ddo models for the Single Machine with Inventory Constraint (SMIC).
This package implements the acs, astar and ddo models for the Single Row Facility Layout Problem (SRFLP).
This package implements the acs, astar and ddo models for the Talent Scheduling problem (talentSched).
This package implements the acs, astar and ddo models for the Traveling Salesman Problem (TSP).
This package implements the acs, astar and ddo models for the Traveling Salesman Problem with Time Window (TSPTW).
This package contains the interfaces and abstract classes that must be implemented as problem
specific classes to model a problem.It also contains default implementation.
-
Uses of InvalidSolutionException in org.ddolib.examples.alp
Methods in org.ddolib.examples.alp that throw InvalidSolutionException -
Uses of InvalidSolutionException in org.ddolib.examples.boundedknapsack
Methods in org.ddolib.examples.boundedknapsack that throw InvalidSolutionException -
Uses of InvalidSolutionException in org.ddolib.examples.gruler
Methods in org.ddolib.examples.gruler that throw InvalidSolutionException -
Uses of InvalidSolutionException in org.ddolib.examples.knapsack
Methods in org.ddolib.examples.knapsack that throw InvalidSolutionException -
Uses of InvalidSolutionException in org.ddolib.examples.lcs
Methods in org.ddolib.examples.lcs that throw InvalidSolutionException -
Uses of InvalidSolutionException in org.ddolib.examples.max2sat
Methods in org.ddolib.examples.max2sat that throw InvalidSolutionException -
Uses of InvalidSolutionException in org.ddolib.examples.maximumcoverage
Methods in org.ddolib.examples.maximumcoverage that throw InvalidSolutionExceptionModifier and TypeMethodDescriptiondoubleMaxCoverProblem.evaluate(int[] solution) Evaluates a complete solution. -
Uses of InvalidSolutionException in org.ddolib.examples.mcp
Methods in org.ddolib.examples.mcp that throw InvalidSolutionException -
Uses of InvalidSolutionException in org.ddolib.examples.misp
Methods in org.ddolib.examples.misp that throw InvalidSolutionException -
Uses of InvalidSolutionException in org.ddolib.examples.mks
Methods in org.ddolib.examples.mks that throw InvalidSolutionExceptionModifier and TypeMethodDescriptiondoubleMKSProblem.evaluate(int[] solution) Evaluates the cost of a given solution. -
Uses of InvalidSolutionException in org.ddolib.examples.msct
Methods in org.ddolib.examples.msct that throw InvalidSolutionException -
Uses of InvalidSolutionException in org.ddolib.examples.pdp
Methods in org.ddolib.examples.pdp that throw InvalidSolutionException -
Uses of InvalidSolutionException in org.ddolib.examples.pigmentscheduling
Methods in org.ddolib.examples.pigmentscheduling that throw InvalidSolutionException -
Uses of InvalidSolutionException in org.ddolib.examples.smic
Methods in org.ddolib.examples.smic that throw InvalidSolutionException -
Uses of InvalidSolutionException in org.ddolib.examples.srflp
Methods in org.ddolib.examples.srflp that throw InvalidSolutionException -
Uses of InvalidSolutionException in org.ddolib.examples.talentscheduling
Methods in org.ddolib.examples.talentscheduling that throw InvalidSolutionException -
Uses of InvalidSolutionException in org.ddolib.examples.tsp
Methods in org.ddolib.examples.tsp that throw InvalidSolutionException -
Uses of InvalidSolutionException in org.ddolib.examples.tsptw
Methods in org.ddolib.examples.tsptw that throw InvalidSolutionException -
Uses of InvalidSolutionException in org.ddolib.modeling
Methods in org.ddolib.modeling that throw InvalidSolutionExceptionModifier and TypeMethodDescriptiondoubleProblem.evaluate(int[] solution) Given a solution such thatsolution[i]is the value of the variablex_i, returns the value of this solution and checks if the solution respects the problem's constraints.