A Python library for Random-Key Optimization (RKO).
Project description
RKO - RANDOM-KEY OPTIMIZER (PYTHON FRAMEWORK)
1. INTRODUCTION TO THE RANDOM-KEY OPTIMIZER (RKO)
The Random-Key Optimizer (RKO) is a versatile and efficient metaheuristic framework designed for a wide range of combinatorial optimization problems. Its core paradigm is the encoding of solutions as vectors of random keys—real numbers uniformly distributed in the interval [0, 1). This representation maps the discrete, and often complex, search space of a combinatorial problem to a continuous n-dimensional unit hypercube.
The primary strength of the RKO framework lies in its modular architecture, which decouples the search algorithms from the problem-specific logic. This is achieved through a problem-specific decoder, a user-defined function that translates a random-key vector into a feasible solution for the target problem.
This design allows for the seamless integration of multiple classic metaheuristics (e.g., Simulated Annealing, Iterated Local Search, Genetic Algorithms) that can operate independently or in parallel. When executed concurrently, these algorithms share high-quality solutions through a common elite solution pool, fostering a collaborative and robust search process.
2. FRAMEWORK ARCHITECTURE
The Python implementation of RKO is centered around the RKO class, which encapsulates all search operators and metaheuristics.
Core Operators:
- Shaking: Diversification mechanism to escape local optima by applying controlled perturbations to a solution.
- RVND (Random Variable Neighborhood Descent): Intensification strategy that systematically explores multiple neighborhood structures (SwapLS, FareyLS, InvertLS, NelderMeadSearch) in a randomized order to find local optima.
- Blending: A crossover operator for population-based methods that combines two parent solutions to generate offspring.
- Parallel Execution: The
solvemethod orchestrates the parallel execution of multiple metaheuristic workers using Python's multiprocessing library. These workers operate on the same problem instance and share their findings through a thread-safeSolutionPool.
3. HOW TO USE THE RKO FRAMEWORK
The main workflow consists of three steps:
- Define the Problem Environment: Create a Python class that contains all the logic specific to your optimization problem.
- Instantiate the RKO Solver: Create an instance of the RKO class, providing your custom environment object and a total time limit.
- Execute the Solver: Call the
solve()method to begin the optimization.
3.1. THE PROBLEM ENVIRONMENT: YOUR INTERFACE TO THE RKO
To make the RKO solver work for your problem, you must create a problem environment class.
It is highly recommended to create a class that implements the structure outlined in the abstract base class RKOEnvAbstract.
from abc import ABC, abstractmethod
import numpy as np
class RKOEnvAbstract(ABC):
"""
Abstract Base Class for creating a problem environment compatible with the RKO solver.
Inherit from this class and implement all abstract methods and required attributes.
"""
def __init__(self):
# Required attributes
self.tam_solution: int = 0
self.max_time: int = 200
self.LS_type: str = 'Best'
self.dict_best: dict = {}
self.instance_name: str = "default_instance"
# Metaheuristic parameter configuration
self.BRKGA_parameters: dict = {'p': [100], 'pe': [0.20], 'pm': [0.10], 'rhoe': [0.70]}
self.SA_parameters: dict = {'SAmax': [50], 'alphaSA': [0.99], 'betaMin': [0.05], 'betaMax': [0.25], 'T0': [10000]}
@abstractmethod
def decoder(self, keys: np.ndarray):
pass
@abstractmethod
def cost(self, solution, final_solution: bool = False) -> float:
pass
Key Components to Implement
- tam_solution (int): dimensionality of the random-key vector.
- decoder(keys): maps a NumPy array of random keys into a feasible solution.
- cost(solution): returns the objective function value. Note: RKO minimizes this value. For maximization problems, return the negated value.
- Parameter dictionaries: configure static or dynamic values for each metaheuristic.
3.2. Verifying Your Environment with check_env
from Environment import check_env
my_env = YourProblemEnv(...)
if check_env(my_env):
print("Environment validated successfully")
3.3. Instantiating and Running the Solver
from RKO import RKO
from your_problem_env import YourProblemEnv
if __name__ == "__main__":
# 1. Instantiate your problem environment
my_environment = YourProblemEnv(dataset_name="my_instance")
# 2. Instantiate the RKO solver
rko_solver = RKO(
env=my_environment,
print_best=True,
save_directory="./results/my_problem_results.csv"
)
# 3. Execute the solver
final_cost, final_solution, time_to_best = rko_solver.solve(
time_total=300,
runs=5,
restart=1.0,
brkga=2,
ils=2,
vns=1
)
# 4. Display the final results
print("\n--- FINAL RESULT ---")
print(f"Best Objective Value Found: {final_cost}")
print(f"Time to Find Best Solution: {time_to_best}s")
By following this structure, you can adapt the RKO framework to a wide variety of combinatorial optimization problems, leveraging its powerful, parallel search capabilities with minimal problem-specific coding.
Maintainers
Felipe Silvestre Cardoso Roberto - Linkedin
For any questions regarding the framework, bug reports, or collaboration inquiries, please feel free to contact me on LinkedIn. I welcome any feedback or suggestions for improvement.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rko-0.1.0.tar.gz.
File metadata
- Download URL: rko-0.1.0.tar.gz
- Upload date:
- Size: 22.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
715c7c730dc990c73fc59b3e4850ca13c7d8f82bea204bc189a8d4d5168be6ee
|
|
| MD5 |
04e689d90a9373faf6074fe0b522f77b
|
|
| BLAKE2b-256 |
dfb9aae4dd3fdc420828c7969e380aa2efbfbb476385d7f66f4e1eae8d5315ca
|
File details
Details for the file rko-0.1.0-py3-none-any.whl.
File metadata
- Download URL: rko-0.1.0-py3-none-any.whl
- Upload date:
- Size: 21.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f7d994561831c49d06971b47f6dd88c9c7440e034c6b66fb0c20e35dc91bec8
|
|
| MD5 |
f27fce31c6c78e230ffdb8c183580cfd
|
|
| BLAKE2b-256 |
5e2b2c5c52019787b7de176277052e0d2f709ca5a3393f84a66d5399cdae9230
|