full screen
Typed Ratings and Dependency Injection
A rating function determines the fitness of a given solution to the problem in question. They are generally used in order to guide problem solvers. However, rating functions can also be used in order to inject additional code into solvers. This can be seen as a form of dependency injection. A simple example is provided at the end of this article.
    d:todo
  • Solution comparsion function


rating function signature and context



    d:todo
  • note template
Note: During the design phase of the second version of Gel I searched for methods to create complex constraints out of relatively simple constraints. Typed ratings can be used in order to i.e. negate a given constraint with high quality. I also looked for ways to organize complex manipulations of solutions. However, typed ratings were of no use for the solvers during my master thesis. Instead, the given solution was queried for variables that dissatisfy certain aspects of the constraints.
Note: This article does currently not consider existing research yet.
The hill climber for discrete values is able to imitate any discrete solving algorithm that optimizes a given complete solution. For a given history of intermediate solutions one has to determine a path in the search space visiting all intermediate solutions in the given order. The rating function can be used in order to determine the next step of the hill climber at the current step of the optimization path.
If there is a high number of neighbors at the current position of the problem space, then the performance of the hill climber might be inappropriate. This can be compensated by adjusting the problem space dynamically in order to minimize the number of neighbors during a hill climbing step. This shows that the solution space can also be used in order to inject code into solving programs.
Every rating function is of one of the following types:
The lower the rating the better the solution. A cost function is also called loss function. 


mathematical formalization



Consecutively, some properties related to the quality of rating functions are listed.
A proportional object function evaluates the compliance of a solution to a given problem: if the rating of a solution A is X-times higher as the rating of another solution B then B disagrees the given constraints X-times as much as A. Constraint weights are considered in this context.


mathematical formalization



An exact cost function is a proportional cost function where an optimal solution is rated with zero. Note that a rating function that only returns the number of dissatisfied constraints may not be exact. An exact object function needs to respect the weights of the constraints in questions.


mathematical formalization



An invertible objective function has a return value with a known upper bound. This means that one can take an invertible cost function and create a negation of that function. This is equal to a conversion of a fitness function into a loss function and vice versa.


mathematical formalization



For a given distorted cost function: If the rating of a solution A is X times higher as the rating of another solution B then A might not disagree the given constraints X-times more than B. Constraint weights are considered in this context.


mathematical formalization



If a given solution is rated multiple times with such a function, then the result is always the same.


mathematical formalization



If a given solution is rated multiple times with such a function than the rating may not be the same: i.e. a learning program that learned a rating function but still adjusts its weightings. If a side effect free system is used, then this can be implemented via the concept of time. This can be done by adding a parameter to the rating function representing the current time:


mathematical formalization



An alternative approach is to implement the rating function as a monad:


mathematical formalization



A rating function where every solving algorithm has a low probability to find an optimal solution to a randomly chosen problem instance for a given problem:


mathematical formalization



Subsequently, some types of object functions with different qualities are listed:
For a given solution and search space this cost function returns the minimum distance between the given solution and any optimal solution:


mathematical formalization



For a given solution, feasible region and solver this cost function returns the expected minimal distance between the given solution and any optimal solution:


mathematical formalization



For a given feasible region, solution, local search algorithm and a maximum search space walk distance this profit function returns the rating improvements that the search algorithm is expected to find for a given neighbor of the current solution:


mathematical formalization



For a given feasible region, solution, local search algorithm and a maximum search space walk distance this fitness function returns the probability that the search algorithm will find an optimal solution:


mathematical formalization



The following Python code shows how Simulated Annealing can be injected into the hill climbing algorithm. Note that the implemented rating functions are based on side effects and are therefore not suitable for certain local search algorithms.