Abstract

Given an edge-weighted undirected graph with weights specifying dissimilarities between pairs of objects, represented by the vertices of the graph, the clique partitioning problem (CPP) is to partition the vertex set of the graph into mutually disjoint subsets such that the sum of the edge weights over all cliques induced by the subsets is as small as possible. We develop an iterated tabu search (ITS) algorithm for solving this problem. The proposed algorithm incorporates tabu search, local search, and solution perturbation procedures. We report computational results on CPP instances of size up to 2000 vertices. Performance comparisons of ITS against state-of-the-art methods from the literature demonstrate the competitiveness of our approach.

1. Introduction

Clique partitioning is an important combinatorial optimization problem with many real-life applications. It can be stated as follows. Suppose that there are objects and, in addition, there is an symmetric matrix, , whose entry represents the dissimilarity between objects and . These data can be modeled by considering a complete edge-weighted undirected graph with vertices corresponding to objects and edge weights given by the dissimilarity matrix . Let this graph be denoted by and its vertex set by . The clique partitioning problem (CPP for short) is to partition the vertex set into mutually disjoint subsets such that the sum of the edge weights over all cliques induced by the subsets is as small as possible. Henceforth, we will denote a feasible solution to the CPP as , where , , and for each pair , . The set of all such solutions is denoted by . Mathematically, the clique partitioning problem can be expressed as The CPP bears some resemblance to the maximally diverse grouping problem (MDGP) [13]. There are two main differences between the CPP and the MDGP. First, the latter assumes that the number of groups is fixed a priori. Meanwhile, in the case of CPP, the number of clusters is allowed to vary throughout solution process and is part of the output of algorithms designed for the CPP. Second, in the MDGP, the size of each group is either fixed or bounded from above and possibly from below. No constraints are imposed on the size of clusters in the formulation of the CPP. It follows from the above observations that nontrivial instances of (1) are defined by dissimilarity matrices with both positive and negative entries.

The clique partitioning problem is of interest in several contexts, one of them being combinatorial data analysis. In this context, the objects are characterized by a set of attributes. The values of an attribute are represented by a binary equivalence relation. Then the CPP can be interpreted as the problem of aggregation of binary relations. In this case, the entry of the matrix represents the number of attributes on which objects and disagree minus the number of attributes on which they agree. More details on this approach to data analysis can be found, for example, in [47]. The applicability of the CPP has also been reported in a number of other settings such as assigning flights to airport gates [8, 9], modularity maximization in networks [10], genomics [11], clustering [12, 13], and group formation in cellular manufacturing [14, 15].

Given the practical importance of the problem, many methods, both exact and heuristic, have been proposed in the literature. One of the first exact algorithms for the CPP was developed by Grötschel and Wakabayashi [16]. Their algorithm is based on the cutting plane technique. It uses polyhedral results presented in the companion paper [17]. Several new classes of facet-defining inequalities of the clique partitioning polytope were introduced by Oosten et al. [14]. The usefulness of the inequalities was demonstrated by performing experiments on a set of CPP instances arising in flexible manufacturing. Branch-and-bound algorithms for the CPP were proposed in [18, 19]. Computational results reported in [18, 19] show that these algorithms perform significantly better than the cutting plane method of Grötschel and Wakabayashi. Mehrotra and Trick [20] developed a branch-and-price algorithm for solving the CPP. Actually, their approach is applicable to the formulation that captures both the CPP and the capacitated clustering problem. Sukegawa et al. [21] presented a problem size reduction technique based on the Lagrangian relaxation and the pegging test. Its validity has been verified through extensive numerical experiments. Recently, a branch-and-bound algorithm for the CPP was proposed by Jaehn and Pesch [22]. Their algorithm incorporates several useful features including improved constraint propagation techniques for fixing edges at the nodes of the search tree.

It is well known that the CPP given by (1) is NP-hard in its general form. Thus, CPP instances of larger size can be solved only using heuristic algorithms. Perhaps the most traditional way to approach a combinatorial optimization problem is to resort to local search (LS) techniques. LS algorithms for solving the CPP were developed by Régnier [23] and by Marcotorchino and Michaud [24]. A multistart LS procedure was considered by Guénoche [7]. The drawback of LS techniques is that they might get trapped into poor quality local optima. The other way to approach the problem is to use metaheuristic search methods. Simulated annealing and tabu search implementations for the CPP were proposed by de Amorim et al. [25]. It was found that they performed very favourably in comparison to Régnier’s heuristic. Kochenberger et al. [11] presented an approach that relies on the idea of recasting the CPP into the form of a binary quadratic program. The program is solved using a tabu search method incorporating strategic oscillation. Dorndorf and Pesch [18] proposed an ejection chain algorithm for clique partitioning. The algorithm takes advantage of the variable depth local search strategy of Kernighan and Lin [26]. Charon and Hudry [27] offered an adaptation of the noising method to the CPP. They investigated a number of variations of this method, differing in the way of adding noise to the data. Computational experiments were carried out on graphs of order up to 500. Brusco and Köhn [6] developed two versions of the neighborhood search algorithm with different search intensification components. Specifically, the first version uses Régnier’s LS procedure, whereas the second one uses the tabu search algorithm. Both versions of the method were shown to be superior to simulated annealing and tabu search implementations from [25].

The focus of this paper is on developing an iterated tabu search (ITS) algorithm for solving the CPP. The primary intention is to combine search intensification and diversification components in order to achieve better performance, compared with that achievable by the best methods in the literature. Our strategy is to test the algorithm on a suite of larger CPP instances than those considered in the previous studies. We report computational experience on problem instances whose size goes up to 2000 vertices. We compare our ITS technique against the heuristics of Brusco and Köhn [6], which are the most successful of the current algorithms for the clique partitioning problem.

It should be noted that various implementations of the iterated tabu search method have also been proposed for other optimization problems. Excellent results have been reported in a number of papers, including [2834]. The tabu search metaheuristic used in ITS is a general-purpose optimization method, based on which specific algorithms for a variety of optimization problems have been developed. The origins of tabu search go back to the seminal work of Glover [35]. The basic concepts of the modern form of tabu search have been presented by Glover in [36].

The remainder of this paper is arranged as follows. In the next section, we present a detailed description of the ITS algorithm for the CPP. In Section 3, we report the results of computational experiments. Concluding remarks are given in the last section.

2. The Algorithm

In this section, we describe the components of our iterated tabu search algorithm for solving the clique partitioning problem. The essence of the algorithm is simple: improve an initial partition by repeatedly applying tabu search (TS) and solution perturbation procedures. Run duration of the first of them is controlled by imposing a limit on the number of iterations. Upon discovering an improving solution by TS, this solution is submitted to a local search procedure, which explores its neighborhood in an attempt to make further improvements. The implementation details of all these ingredients of the approach are explained next.

2.1. General Scheme

An important aspect of the clique partitioning problem is that the number of clusters is not fixed. Thus, not only the content of the clusters but also their number is varying throughout the search process. In this regard, it is convenient to have an empty cluster added to the partition vector . We assume in the description of algorithms that counts all clusters including the empty one. There are two possible scenarios in managing a partition when the number of clusters is changing. An easy case is when a vertex is ordered to move to the empty cluster in . In this case, a new empty cluster is added to the current partition. More processing is required if the last vertex of some cluster, say , is relocated. In this case, becomes empty. A possible strategy is to remove from the partition and renumber the remaining clusters. However, in our approach, renumbering may prove to be unduly time consuming. In particular, this operation implies the need for additional computations when updating tabu information. We have implemented another strategy, which rests on the idea of retaining all emptied clusters. We use a bit-vector of flags . Its components are set to 0 for all nonempty clusters as well as precisely one selected empty cluster. Let the latter be denoted by . The components of the vector corresponding to other empty clusters are equal to 1. Thus, in the situation outlined above, the cluster is made inactive by setting . Obviously, if later in the search a vertex is moved to , then can be selected as a new active empty cluster. In this case, the algorithm sets and .

We now present an iterated tabu search algorithm for the clique partitioning problem. The algorithm iteratively invokes two procedures, TS (Tabu Search) and GSP (Get Start Partition), which are detailed in the forthcoming subsections.

Consider the following ITS.(1)Compute the initial value for the variable denoting the number of clusters (including the empty one).(2)Generate a feasible solution to the problem at random (let in be an empty cluster). Set , , , , , , , and .(3)Apply the tabu search procedure .(4)Check if a stopping rule is satisfied. If so, then go to . Otherwise go to .(5)Apply the procedure , where and are randomly chosen values for the solution perturbation parameters. Return to .(6)Stop with the partition . The objective function value on is equal to .

A possible option to initialize the variable in Step of ITS is to use a fast constructive heuristic for the CPP. Our choice is to employ a randomized variant of the agglomerative heuristic (AH). This heuristic has been described in [19]. It begins with each vertex declared as a separate cluster and, in each step, merges two clusters into a larger one. This process is modelled by a graph, with vertices representing clusters. In order to select two clusters for agglomeration, AH compares the weights of all the edges of this graph. Among them, an edge having minimum weight is chosen, breaking ties arbitrarily. Let this edge be . If its weight is nonnegative, then the algorithm terminates. Otherwise, it merges the clusters represented by vertices and into a single cluster. During this operation, for each cluster with , the edges and are replaced by one edge connecting and vertex, say , representing the merged cluster. The weight of this edge is set to the sum of the weights of the edges and . The merging step of the heuristic is illustrated in Figure 1. The details of AH can be found in [19]. In the ITS framework, we use a version of AH in which an edge for merging is selected randomly from a set of edges having the smallest weights. The size of this set in our implementation is at most 5. Randomization of AH is useful when ITS is run in a multistart fashion.

In Step of the algorithm, a random initial solution to the problem is generated. This is done by first randomly generating a permutation of vertices. Then, a partition is constructed by assigning either or consecutive vertices from the permutation to each of nonempty clusters. Before entering the search phase, this partition is saved as the best found solution . The number of nonempty clusters in the best solution is denoted by . By running the TS procedure, is replaced with a solution having a smaller objective function value.

The heart of the ITS algorithm is the loop comprising Steps to . Inside this loop, the procedures TS and GSP are executed intermittently. The input to each of them includes the current solution specified by the triplet . The parameters and passed to GSP are used to control the solution perturbation process. The meaning of these parameters is explained later in this section, where also a description of the GSP procedure is given. In Step of ITS, a stopping criterion is required to be specified. It may be any, for example, upper bound on the number of calls to TS or a stopping rule based on the CPU clock. We performed computational experiments using time limit as the stopping condition.

2.2. Tabu Search

The type of moves used in our implementation of tabu search is relocation of a vertex from its current cluster to a different one. Given a partition , we define the relocation neighborhood   to be a set of all solutions that can be obtained from by relocating a single vertex. In the search process, it is important to efficiently compute the differences between the values of the objective function at the solutions in the neighborhood and the value of the objective function at the current solution . This can be done by taking advantage of an auxiliary matrix , where , , and . Consider a vertex and suppose that its owning cluster in is . Let denote the change in the value of the objective function caused by relocating the vertex from the cluster to the cluster , (see Figure 2). In the literature, the cost variation between two solutions, like , is called the move gain. We can express in terms of the entries of the matrix

In the description of ITS components given below, we will denote by the index of the cluster in which the vertex belongs to. Thus, if , then . The first component we present is the tabu search procedure. It maintains three data structures to store the tabu status of moves: the matrix with rows and columns corresponding to vertices and clusters, respectively, and lists and . The lists are used to represent, in a compact form, moves that are forbidden for a certain number of iterations. If, for example, vertex is relocated from cluster of size greater than one to a different cluster, then is set to 1, the vertex is appended to the list , and the cluster index is appended to the list . The reason behind the introduction of the lists and is to efficiently flip back from 1 to 0, whenever a specified number of iterations have been executed. This number is called tabu tenure and is considered as a parameter, denoted as , of the TS procedure. Another parameter of TS is the number of iterations . The procedure can be stated as follows.

Consider the following .(1)Initialize for each vertex and each cluster , , with 0. Set and .(2)Increase by 1. Set , , and .(3)Iterating through all vertices and clusters , , such that and , perform the following steps.(3.1)Compute by (2). If , then proceed to (3.2). Otherwise, check whether one of the following conditions holds: (i) ; (ii) ; (iii) and . If so, then go to (3.4); if not, go to (3.3).(3.2)Increase by 1 and set , , and with probability . Go to (3.4).(3.3)If , then set , , , and . Otherwise, if , then increase by 1 and set and with probability .(3.4)Repeat (3.1)–(3.3) until all pairs have been examined.(4)Save as and as . For each , subtract from and add it to . Move the vertex from the cluster to the cluster . Increase by . If becomes emptied, then mark this cluster as inactive by setting . Otherwise, if , then perform the following operations. If there exists a cluster such that , then set and . Otherwise, all clusters appear to be active, and, in this case, increment by 1, add an empty cluster to , initialize the th column of both and with zero vector, and set , .(5)If , then proceed to . Otherwise, go to (7).(6)Call the local search procedure . Let also denote the solution returned by it. Form a partition by identifying nonempty clusters , , among . Set , , and .(7)If , then return. Otherwise, perform the following operations. If , then set and remove and from the lists and , respectively. If , then bypass these modifications of , , and . In both cases, add the vertex at the end of the list . Check whether . If so, then add the empty cluster index at the end of the list and set . If not, then add at the end of and set . Go to .

In the above description, is the iteration counter, is the value of the current solution, and stands for the number of solutions found in the current iteration, which are better than the best partition, , recorded so far. The counter is increased if and only if the move gain is strictly less than the threshold . In Step of TS, there are two possible cases to consider for a feasible pair consisting of vertex and cluster . If , then a new improving solution specified by the pair is found. It is always accepted if and accepted with probability if . If, however, , then conditions (i)–(iii) in Step are checked. Condition (iii) is reasonable because it makes no sense to relocate the last vertex of a cluster to the empty cluster. If at least one of the conditions (i)–(iii) is satisfied, then the pair is immediately rejected. Otherwise, is compared with the best-gain move in Step . The selected move is represented by the pair . In Step of TS, and are saved in order to be used later when updating the tabu data structures at the end of the iteration. The same step also updates both the current solution and the matrix and, if needed, introduces a new active empty cluster. After these rearrangements, the local search procedure is applied only when an improving solution was found. The resulting partition is saved as the new best solution. While doing this, the partition is shrunk by removing all empty clusters. Step of TS updates the tabu information. If , then the tabu status of the oldest pair (vertex, cluster) is revoked by appropriately modifying the data structures , , and . For any , the pair consisting of the selected vertex and, depending on the value of , either its previous cluster or the empty one is made forbidden for the next iterations.

Our local search procedure for the CPP involves moves of two types. One of them is the same as that used in the TS algorithm. Another type of move is to simultaneously relocate two vertices from their current cluster to a different one. Given a partition , two vertices and such that , and a cluster , we denote by the solution that is derived from by moving vertices and from the cluster to the cluster . Let stand for the set of all solutions that can be obtained in this way. The gain of moving from solution to solution can be efficiently calculated as follows: where . A move of the second type is illustrated in Figure 3. Notice there that relocating a single vertex, or , does not lead to an improvement.

At each iteration, the local search (LS) procedure first explores the neighborhood and, if no solution better than is found, then explores the neighborhood . The procedure consists of the following steps.

Consider the following .(1)Randomly generate a permutation of vertices, denoted by , and a permutation of clusters, denoted by .(2)Initialize with 0.(3)For and , do the following.(3.1)Set and . If either or , then go to . Otherwise proceed to .(3.2)Iterating through all clusters , , such that and , perform the following steps.(3.2.1)Compute by (3).(3.2.2)Check whether . If so, then set and .(3.3)If , then set , and go to .(3.4)Repeat until all pairs , have been examined.(4)For , do the following.(4.1)Set .(4.2)Iterating through all clusters , , such that and , perform the following steps.(4.2.1)Compute by (2).(4.2.2)Check whether . If so, then set and .(4.3)If , then set and go to .(5)Return (because , which means that no improving move is detected).(6)Update the current solution and auxiliary data as in Step of TS. Go to .(7)Let . For each different from and , subtract from and add it to . Also, subtract from both and and add to both and . Move the vertices and from the cluster to the cluster . If becomes emptied, then set . Otherwise, if , then perform the following operations. If there exists a cluster such that , then set and . If no such cluster exists, then increment by 1, add an empty cluster to , initialize the th column of with zero vector, and set , .(8)If has been increased (either in Step or in Step ), then expand by setting . Go to .

Each iteration of the described procedure scans the neighborhood in Step and the neighborhood in Step . Both vertices and clusters are considered in the order given by random permutations. Such an approach allows us to introduce some extra randomization in the ITS algorithm. In Step of the LS procedure, only pairs of vertices connected by a negative edge and, of course, belonging to the same cluster are examined. Indeed, if for some , then, as it follows from (3), it is meaningful to ignore simultaneous relocation of the vertices and and to evaluate moves involving only one of these vertices. For a pair of vertices passing the test in Step , the aim is to identify a move with negative value of calculated from (3). If two or more such moves exist, then the one with the minimum is selected. Throughout this process, the value of the best move is saved as . The loop in Step evaluates the quality of partitions obtained from by relocating the vertices and to other clusters than their own. Provided that is negative, the index of the best cluster is stored in the variable . If at the end of the loop , then the current solution is replaced by the partition in Step of LS. If, however, no improving neighbor in is found, then Step is executed. Its structure is very similar to that of Step . If, for a vertex and at least one cluster, the value of is negative, then the move involving is accepted and the current solution is replaced with a better one in Step . Reaching Step means that a locally optimal solution is obtained, and no improving move of two considered types is available. Step of LS is similar to Step of TS. Little difference is seen in formulas used for updating the matrix .

2.3. Solution Perturbation

Another crucial component of the iterated tabu search algorithm is the solution perturbation procedure GSP. When applied within the ITS framework, it produces starting partitions for tabu search. Such partitions are generated by making a certain number of moves. In contrast to the commonly used method when moves are selected randomly, our procedure favours moves that minimize, to some degree, the degradation of the objective function value of the problem. Still, the procedure incorporates a randomization element. At each step, it selects a move at random from a list of the most attractive candidates. The upper limit on the cardinality of this list, denoted by , is a parameter of the procedure. Another parameter, , is the number of vertices that have to be moved from their current clusters to different ones. The input to GSP, of course, includes a partition . In our implementation, ITS submits to GSP the partition that has been returned by the most recent invocation of the TS procedure. While selecting a perturbation move, GSP partially explores the neighborhood . Basically, GSP is reminiscent of the above described LS algorithm with Steps and removed. The solution perturbation procedure can be described as follows.

Consider the following .(1)Set and .(2)Iterating through all vertex pairs and clusters such that , , and , perform the following steps.(2.1)Compute by (3). If , then go to (2.3). Otherwise, proceed to (2.2).(2.2)Identify a triplet such that for all . If , then remove from and go to (2.3). Otherwise, repeat from (2.1) until all proper combinations of the vertex pair and cluster have been examined.(2.3)Create a triplet with weight attached to it. Add to .(3)If is empty, then return with . Otherwise, select a triplet , say , from at random. Add the vertices and to .(4)Update the current solution and auxiliary data as in Step of LS. If , then make the set empty and go to . Otherwise, return with the partition .

As can be seen from the description, a single iteration of GSP comprises Steps to . When is sufficiently less than , GSP performs iterations. In each of them, the set of the relocated vertices is enlarged by the addition of a pair of vertices selected in Step . In the procedure, stands for the candidate list of the best moves. A move in is represented by the triplet consisting of two vertices and index of their target cluster. In Step , the neighborhood is searched only partially. Relocating a vertex twice during the run of GSP is prevented by ignoring vertices that belong to the set . Also, like in LS, the search is restricted only to pairs of vertices that are connected by a negative edge. In addition, the use of an empty target cluster is forbidden. The fitness of legal moves (triplets) is evaluated by (3). If the new triplet is better than the worst triplet in the candidate list and the size of is equal to , then the worst triplet in is replaced by the new one. In Step , the move to be performed is selected from the list at random. The moved vertices are added to the set . The solution is updated precisely in the same way as in Step of LS. The above outlined process is repeated until the cardinality of the set reaches the prescribed limit .

The value of the parameter for each run of GSP is generated using three secondary parameters , , and . First, an integer from the interval is chosen uniformly at random. Then, is compared with . If , then is uniformly and randomly chosen from the integers in the interval . Otherwise, is set to . Thus, in the general case, is drawn from the interval whose right endpoint is not fixed throughout the execution of the ITS algorithm. The value of the parameter for GSP is an integer randomly drawn from the interval , where and are some constants of the algorithm. The most appropriate values of , , , , and should be selected experimentally.

3. Computational Experiments

The main purpose of experimentation was to show the attractiveness and competitiveness of our approach. In order to evaluate the performance of the developed algorithm, we compared it with two state-of-the-art techniques for the CPP, proposed by Brusco and Köhn [6], namely, the neighborhood search heuristic coupled with the relocation procedure in one case and with the tabu search algorithm in another case. In the study of Brusco and Köhn [6], these algorithms are denoted as NS-R and NS-TS, respectively. When referring to them in this paper, we will use the same names. To be more focused, we do not experiment with other existing methods for the CPP, which are less successful in comparison with both NS-R and NS-TS.

3.1. Experimental Protocol

The described algorithm has been coded in the C programming language. Fortran implementations of NS-R and NS-TS were obtained from Brusco and Köhn [6]. All the tests have been carried out on a PC with an Intel Core 2 Duo CPU running at 3.0 GHz. As a testbed for evaluating the performance of the algorithms, we used a set of CPP instances from the literature as well as two sets of additional instances of our own. The first set consists of 7 benchmark instances originally considered by Charon and Hudry [27] (rand100-100, rand300-100, rand500-100, rand300-5, zahn300, sym300-50, and regnier300-50) and 6 instances introduced by Brusco and Köhn [6] (rand200-100, rand400-100, rand100-5, rand200-5, rand400-5, and rand500-5). For descriptions of these problem instances, see [6, 27]. In order to test the algorithms more thoroughly, we generated two additional sets of large random CPP instances. The first of them consists of 20 weighted graphs of order 500. The weights of edges are integer numbers drawn uniformly at random from the interval for the first 10 graphs and from the interval for the remaining 10 graphs. The second additional set consists of three subsets, each of cardinality 5. The order of the graphs in the first to third subsets is 1000, 1500, and 2000, respectively. The edge weights are random integers uniformly distributed in range .

The TS and GSP procedures described in the previous section have several parameters that affect the performance of the ITS algorithm. Their values were determined by conducting a preliminary experiment. Based on the obtained results, in the main experiments, the TS parameter was fixed at 200. As for the tabu tenure, we have found that a good choice is to take . The parameters used to generate and values were set as follows: , , , , and . The only algorithm’s parameter whose value is required to be submitted to our ITS code is a maximum CPU time limit per run.

Given its stochastic nature, we executed the ITS algorithm 10 times on each of the test problems. However, unlike ITS, both NS-R and NS-TS were run only once on each instance of size 500 or less. The reason behind such a decision was our intention to use the original executable code from [6], which does not have an option of restarting the algorithms. For graphs of order greater than 500, we used a very slightly modified version of the source (Fortran) code developed in [6]. In fact, we made just a couple of minor adjustments. First, we increased the size of arrays and matrices from 500 and to 2000 and , respectively. Second, we included in the possibility to restart the algorithms an arbitrary number of times. We capitalized on this possibility in the experiment on the third dataset. Like in the case of ITS, we ran both NS-R and NS-TS 10 times on each instance in this set. It should be noted, however, that, due to a different Fortran compiler we used, the generated executable code may appear to be less efficient than that provided by Brusco and Köhn [6].

As mentioned above, the input to our ITS code includes the time limit per run. We imposed time limits of 100 seconds, 1000 seconds, 2000 seconds, 1 hour, 2 hours, and 5 hours for test problems with , , , , , and , respectively. The same cutoff times were used for NS-R and NS-TS as well.

3.2. Numerical Results

The results of solving CPP instances in the first dataset are summarized in Table 1. Its first column shows the instance names in which the integer preceding “-” indicates the number of vertices. The second column presents the best known values reported in the literature. For rand100-100, rand300-5, rand300-100, sym300-50, regnier300-50, zahn300, and rand500-100, the best solutions were obtained by Charon and Hudry [27]. The authors mention that the experiments on these instances took up to several days of the CPU time. For the remaining instances in Table 1, the best known results were reported by Brusco and Köhn [6]. The third column shows the gap of the value of the best solution out of 10 runs (the gap of the average value of 10 solutions) found by ITS to the value displayed in the second column. The fourth column gives the success rate of reaching the best known value . The last two columns provide the deviation of the value of the solution delivered by NS-R and, respectively, NS-TS from the value . The bottom row shows the results averaged over the whole set of instances.

From Table 1, we see that ITS is superior to both NS algorithms. To be fair, we have to keep in mind that both NS-R and NS-TS were run only once, as opposed to 10 runs in the case of ITS. Therefore, we should compare the results displayed in the last two columns with those shown in parentheses for the ITS algorithm. It can be observed that both variations of NS failed to solve some of the instances of size up to 300. Meanwhile, ITS was able to reach the best known solutions for all of them in each of 10 runs.

In Table 2, we summarize the results of an empirical evaluation of tested algorithms for instances in the second dataset. The structure of this table is the same as that of Table 1. As a basis for comparison, we use, for each instance, the value of the best solution obtained from 10 runs of the ITS algorithm. This value, denoted by , is given in the second column. The results from Table 2 indicate that ITS significantly outperforms both reference algorithms in terms of solution quality. A direct comparison of algorithms across problem instances, using as a metric for ITS effectiveness, shows that ITS yields better solutions than NS-R and NS-TS in 18 and, respectively, 17 cases out of 20. We see that NS-TS was able to reach the best results for 3 instances in the dataset. Another NS variation, NS-R, has obtained the best solution value in one case only.

Table 3 reports comparative results of ITS with NS-R and NS-TS for instances of size ranging from 1000 to 2000 vertices. The number of vertices is encoded in the instance name. The first three columns of the table have the same meaning as in Table 2. The fourth column displays the gap of the value of the best solution out of 10 runs (the gap of the average value of 10 solutions) found by NS-R to the best value . The last column provides these statistics for the NS-TS method. The values shown in the second column were obtained by the ITS algorithm. From the results in Table 3, we see that the superiority of the proposed algorithm over NS-R and NS-TS is more pronounced than in the previous experiments. In fact, ITS dominates both NS-R and NS-TS on all instances in the third dataset. Both the NS variations failed to reach the best value in all cases. By analyzing the results in Tables 2 and 3, we also find that NS-R and NS-TS perform comparably in terms of solution quality, with NS-TS having a slight edge. A similar conclusion has been reached in the study of Brusco and Köhn [6].

4. Conclusions

In this paper we have presented an iterated tabu search algorithm for the clique partitioning problem. The described method incorporates tabu search, local search, and solution perturbation procedures. The latter is an essential component of the approach, because, according to our experience, to be successful, a tabu search-based algorithm for graph partitioning type problems should use a sufficiently powerful search diversification mechanism.

Experimental evaluations on three sets of CPP instances of size up to 2000 show that the proposed algorithm is able to produce solutions of high quality. In particular, we can conclude that our algorithm exhibits superior performance compared to the method of Brusco and Köhn. However, we surmise that, for the largest instances in the test suite, the best solutions obtained probably are not the best possible. We have experienced that in order to find improved solutions using ITS a big amount of CPU time is needed. The development of fast and powerful heuristic algorithms for the CPP is an important line of further research.

Conflict of Interests

The authors declare that they have no conflict of interests regarding the publication of this paper.