Uses of Interface
org.ddolib.modeling.Problem
Packages that use Problem
Package
Description
This package contains the implementations of cache mechanism.
This package contains defining the compilation type and the compilation input
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 Problem in org.ddolib.ddo.core.cache
Methods in org.ddolib.ddo.core.cache with parameters of type ProblemModifier and TypeMethodDescriptionvoidCache.initialize(Problem<T> problem) Initializes the cache for use with the specified problem instance.voidSimpleCache.initialize(Problem<T> problem) Initializes the cache based on the number of variables of the problem. -
Uses of Problem in org.ddolib.ddo.core.compilation
Fields in org.ddolib.ddo.core.compilation declared as Problem -
Uses of Problem in org.ddolib.examples.alp
Classes in org.ddolib.examples.alp that implement Problem -
Uses of Problem in org.ddolib.examples.boundedknapsack
Classes in org.ddolib.examples.boundedknapsack that implement ProblemModifier and TypeClassDescriptionclassRepresents an instance of the Bounded Knapsack Problem (BKP). -
Uses of Problem in org.ddolib.examples.gruler
Classes in org.ddolib.examples.gruler that implement ProblemModifier and TypeClassDescriptionclassRepresents an instance of the Golomb Ruler (GR) problem. -
Uses of Problem in org.ddolib.examples.knapsack
Classes in org.ddolib.examples.knapsack that implement ProblemModifier and TypeClassDescriptionclassRepresents an instance of the Knapsack Problem (KS). -
Uses of Problem in org.ddolib.examples.lcs
Classes in org.ddolib.examples.lcs that implement ProblemModifier and TypeClassDescriptionclassDefinition of the Longest Common Subsequence (LCS) problem. -
Uses of Problem in org.ddolib.examples.max2sat
Classes in org.ddolib.examples.max2sat that implement ProblemModifier and TypeClassDescriptionclassRepresents a Maximum 2-Satisfiability (MAX2SAT) problem instance. -
Uses of Problem in org.ddolib.examples.maximumcoverage
Classes in org.ddolib.examples.maximumcoverage that implement ProblemModifier and TypeClassDescriptionclassRepresents an instance of the Maximum Coverage (MaxCover) problem. -
Uses of Problem in org.ddolib.examples.mcp
Classes in org.ddolib.examples.mcp that implement ProblemModifier and TypeClassDescriptionclassRepresents an instance of the Maximum Cut Problem (MCP). -
Uses of Problem in org.ddolib.examples.misp
Classes in org.ddolib.examples.misp that implement ProblemModifier and TypeClassDescriptionclassRepresents an instance of the Maximum Independent Set Problem (MISP) as aProblem. -
Uses of Problem in org.ddolib.examples.mks
Classes in org.ddolib.examples.mks that implement ProblemModifier and TypeClassDescriptionclassRepresents a Multi-dimensional Knapsack Problem (MKS) as aProblemfor decision diagram optimization. -
Uses of Problem in org.ddolib.examples.msct
Classes in org.ddolib.examples.msct that implement ProblemModifier and TypeClassDescriptionclassRepresents an instance of the **Minimum Sum of Completion Times (MSCT)** problem. -
Uses of Problem in org.ddolib.examples.pdp
Classes in org.ddolib.examples.pdp that implement ProblemModifier and TypeClassDescriptionclassRepresents a Pickup and Delivery Problem (PDP) instance with a single vehicle. -
Uses of Problem in org.ddolib.examples.pigmentscheduling
Classes in org.ddolib.examples.pigmentscheduling that implement ProblemModifier and TypeClassDescriptionclassRepresents an instance of the Pigment Sequencing Problem (PSP) used within a Decision Diagram Optimization (DDO) framework. -
Uses of Problem in org.ddolib.examples.smic
Classes in org.ddolib.examples.smic that implement ProblemModifier and TypeClassDescriptionclassTheSMICProblemclass represents an instance of the Single Machine with Inventory Constraint (SMIC) scheduling problem. -
Uses of Problem in org.ddolib.examples.srflp
Classes in org.ddolib.examples.srflp that implement ProblemModifier and TypeClassDescriptionclassA Single-Row Facility Layout Problem (SRFLP) instance. -
Uses of Problem in org.ddolib.examples.talentscheduling
Classes in org.ddolib.examples.talentscheduling that implement Problem -
Uses of Problem in org.ddolib.examples.tsp
Classes in org.ddolib.examples.tsp that implement ProblemModifier and TypeClassDescriptionclassClass representing an instance of the Traveling Salesman Problem (TSP). -
Uses of Problem in org.ddolib.examples.tsptw
Classes in org.ddolib.examples.tsptw that implement ProblemModifier and TypeClassDescriptionclassClass representing an instance of the Traveling Salesman Problem with Time Windows (TSPTW). -
Uses of Problem in org.ddolib.modeling
Methods in org.ddolib.modeling that return Problem