Question

In: Computer Science

I need to implement an algorithm based on local search that are in the following list...

I need to implement an algorithm based on local search that are in the following list in Python or Matlab( simulated annealing, variable neighborhood search, variable neighborhood descent)

PLEASE HELP I am really stuck!

Solutions

Expert Solution

  • Simulated Annealing :

    Problem : Given a cost function f: R^n –> R, find an n-tuple that minimizes the value of f. Note that minimizing the value of a function is algorithmically equivalent to maximization (since we can redefine the cost function as 1-f).

    Many of you with a background in calculus/analysis are likely familiar with simple optimization for single variable functions. For instance, the function f(x) = x^2 + 2x can be optimized setting the first derivative equal to zero, obtaining the solution x = -1 yielding the minimum value f(-1) = -1. This technique suffices for simple functions with few variables. However, it is often the case that researchers are interested in optimizing functions of several variables, in which case the solution can only be obtained computationally.

code for stimulated annealing:

// Java program to implement Simulated Annealing
import java.util.*;

public class SimulatedAnnealing {

   // Initial and final temperature
   public static double T = 1;

   // Simulated Annealing parameters

   // Temperature at which iteration terminates
   static final double Tmin = .0001;

   // Decrease in temperature
   static final double alpha = 0.9;

   // Number of iterations of annealing
   // before decreasing temperature
   static final int numIterations = 100;

   // Locational parameters

   // Target array is discretized as M*N grid
   static final int M = 5, N = 5;

   // Number of objects desired
   static final int k = 5;


   public static void main(String[] args) {

       // Problem: place k objects in an MxN target
       // plane yielding minimal cost according to
       // defined objective function

       // Set of all possible candidate locations
       String[][] sourceArray = new String[M][N];

       // Global minimum
       Solution min = new Solution(Double.MAX_VALUE, null);

       // Generates random initial candidate solution
       // before annealing process
       Solution currentSol = genRandSol();

       // Continues annealing until reaching minimum
       // temprature
       while (T > Tmin) {
           for (int i=0;i<numIterations;i++){

               // Reassigns global minimum accordingly
               if (currentSol.CVRMSE < min.CVRMSE){
                   min = currentSol;
               }

               Solution newSol = neighbor(currentSol);
               double ap = Math.pow(Math.E,
                   (currentSol.CVRMSE - newSol.CVRMSE)/T);
               if (ap > Math.random())
                   currentSol = newSol;
           }

           T *= alpha; // Decreases T, cooling phase
       }

       //Returns minimum value based on optimiation
       System.out.println(min.CVRMSE+"\n\n");

       for(String[] row:sourceArray) Arrays.fill(row, "X");

       // Displays
       for (int object:min.config) {
           int[] coord = indexToPoints(object);
           sourceArray[coord[0]][coord[1]] = "-";
       }

       // Displays optimal location
       for (String[] row:sourceArray)
           System.out.println(Arrays.toString(row));

   }

   // Given current configuration, returns "neighboring"
   // configuration (i.e. very similar)
   // integer of k points each in range [0, n)
   /* Different neighbor selection strategies:
       * Move all points 0 or 1 units in a random direction
       * Shift input elements randomly
       * Swap random elements in input sequence
       * Permute input sequence
       * Partition input sequence into a random number
       of segments and permute segments */
   public static Solution neighbor(Solution currentSol){

       // Slight perturbation to the current solution
       // to avoid getting stuck in local minimas

       // Returning for the sake of compilation
       return currentSol;

   }

   // Generates random solution via modified Fisher-Yates
   // shuffle for first k elements
   // Pseudorandomly selects k integers from the interval
   // [0, n-1]
   public static Solution genRandSol(){

       // Instantiating for the sake of compilation
       int[] a = {1, 2, 3, 4, 5};

       // Returning for the sake of compilation
       return new Solution(-1, a);
   }


   // Complexity is O(M*N*k), asymptotically tight
   public static double cost(int[] inputConfiguration){

       // Given specific configuration, return object
       // solution with assigned cost
       return -1; //Returning for the sake of compilation
   }

   // Mapping from [0, M*N] --> [0,M]x[0,N]
   public static int[] indexToPoints(int index){
       int[] points = {index%M, index/M};
       return points;
   }

   // Class solution, bundling configuration with error
   static class Solution {

       // function value of instance of solution;
       // using coefficient of variance root mean
       // squared error
       public double CVRMSE;

       public int[] config; // Configuration array
       public Solution(double CVRMSE, int[] configuration) {
           this.CVRMSE = CVRMSE;
           config = configuration;
       }
   }
}

  • variable neighborhood search :Variable neighborhood search (VNS),[1] proposed by Mladenović & Hansen in 1997,[2] is a metaheuristic method for solving a set of combinatorial optimization and global optimization problems. It explores distant neighborhoods of the current incumbent solution, and moves from there to a new one if and only if an improvement was made. The local search method is applied repeatedly to get from solutions in the neighborhood to local optima. VNS was designed for approximating solutions of discrete and continuous optimization problems and according to these, it is aimed for solving linear program problems, integer program problems, mixed integer program problems, nonlinear program problems, etc.

code for variable neighbourhood search is in the link : (https://github.com/donfaq/CFP)


Related Solutions

I need to implement an algorithm based on local search that are in the following list...
I need to implement an algorithm based on local search that are in the following list in Python or Matlab( tabu search, simulated annealing, iterated local search, evolutionary local search, variable neighborhood search, variable neighborhood descent) PLEASE HELP :)
Create a List object that uses the binary search algorithm to search for the string "A"....
Create a List object that uses the binary search algorithm to search for the string "A". Display a message box indicating whether the value was found. Language: C#
Hello i need someone to implement in JAVA a radix sort algorithm forsorting strings in ascending...
Hello i need someone to implement in JAVA a radix sort algorithm forsorting strings in ascending order. The input to your algorithm should be a (multi)set S = [S1, S2, . . . , Sn] of strings each of which is of length m over the English alphabet [A…Z, a…z]. The output should be the set sorted in ascending lexicographical order. Number of strings is >= 100 and number of characters >= 50 i need the answer fast please
Write a program in C++ to implement Binary Search Algorithm. Assume the data given in an...
Write a program in C++ to implement Binary Search Algorithm. Assume the data given in an array. Use number of data N at least more than 10. The function Binary Search should return the index of the search key V.
I need to implement a method that removes any duplicate items in a list and returns...
I need to implement a method that removes any duplicate items in a list and returns the new values    private static linkedlist removeDuplicates(linkedlist list) {    return list; }
I am trying to implement a search function for a binary search tree. I am trying...
I am trying to implement a search function for a binary search tree. I am trying to get the output to print each element preceding the the target of the search. For example, in the code when I search for 19, the output should be "5-8-9-18-20-19" Please only modify the search function and also please walk me through what I did wrong. I am trying to figure this out. Here is my code: #include<iostream> using namespace std; class node {...
Write a program to implement Apriori Algorithm on web log data?   do a google search for...
Write a program to implement Apriori Algorithm on web log data?   do a google search for any keyword and store the results in a file or take some web log data from internet and apply apriori algorithm to get a meaningful conclusion from the data
What is the Average time complexity of sequential search algorithm in a linked list?
What is the Average time complexity of sequential search algorithm in a linked list?
implementing linked list using c++ Develop an algorithm to implement an employee list with employee ID,...
implementing linked list using c++ Develop an algorithm to implement an employee list with employee ID, name, designation and department using linked list and perform the following operations on the list. Add employee details based on department Remove employee details based on ID if found, otherwise display appropriate message Display employee details Count the number of employees in each department
Hello, I am writing the initial algorithm and refined algorithm for a program. I just need...
Hello, I am writing the initial algorithm and refined algorithm for a program. I just need to make sure I did it correctly. I'm not sure if my formula is correct. I appreciate any help, thank you! TASK: Write a program that will calculate the final balance in an investment account. The user will supply the initial deposit, the annual interest rate, and the number of years invested. Solution Description: Write a program that calculates the final balance in an...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT