Wireless Access Point Configuration Problem
A benchmark problem for topology synthesis
Jianjun Hu (hujianju@msu.edu)
Proposal of a GP benchmark problem for open-ended simultaneous topology and parameter search
Wireless Access Point Configuration problem is proposed as a benchmark problem for testing our Genetic Programming algorithm in simultaneous open-ended structure and parameter evolution (search)
A small city is planning to provide wireless Internet service to its citizens, which are located around the city map below (labeled as circled C). A bunch of wireless access points then need to be placed at several places to cover all the clients since each access point has limited service radius. To reduce the cost, a design solution with minimal number of access points and minimum length of the wires connecting those access points is regarded as optimal. So the question is, how to decide the number of necessary access points and which place should we put. To make it harder, we can ask to maximize the average signal strength at all clients, or add some constraints on the location of the access points. As this problem (not the simplified version) requires simultaneous topology and parameter search, many issues exist.

What is structure to be evolved?
Every wireless access point must be either directly linked to the source radio station or linked to another access point which has been linked to the radio station (directly or indirectly) by wires whose cost is proportionate to its length. All the connected graph is the structure to be evolved
What are the parameters to be evolved?
The locations of
access points are the
parameters to be evolved. Their range can be constrained in a range, e.g. (x,y)|x,y
[0, 1000]
Given a set of clients and the position of the source internet connection outlet, find a best configuration of the access points such that:
where
is the cost of each access point,
is the number of access point.

1) Increase the number of client sites.
2) Constrain the possible position area of access points or add other constrains
3) Allow multiple radio station sources.
4) Allow several existing access points.
5) Include multiple objective
6) Assume the cost of access points with different construction costs
7) Similar problems including water system, etc.
Edge-encoding (Sean Luke).
Cellular Encoding/node encoding (Gruau)
Hybrid encoding (koza, this package)
Is this problem a NP problem?
How is it related to TSP? Can it be a TSP in GP?
Are there some existing similar problems in graph theory literature?
//numer of covered clients
double nCoveredClients = g->pClientGraph->getNumVertices()-ncoveredClients;
//penalty of the total length of edges
double wireCost = g->getSumWeight();
if(wireCost==0) wireCost=1.0;
//cost of building each access point
double stationCost = g->getNumVertices();
double coverFit = 20.0*(double)nCoveredClients/g->pClientGraph
->getNumVertices();
double wireFit = 1000.0/(1000.0+wireCost);
double stationFit = 10.0/(10+stationCost);
//cout<<coverFit<<" "<<wireFit<<" "<<stationFit<<endl;
//total fitness value
finalfitness= coverFit+wireFit+stationFit;
//penalty if not connected
if(!g->isConnected()) finalfitness=finalfitness/2 ;
ind->hits = 0;
ind->r_fitness = 0;
ind->s_fitness = nCoveredClients;//The objective raw fitness of an inidividual
ind->a_fitness = finalfitness; //used for selection process
Some running results



