Skip to main content

Table 1 Algorithm of greedy randomized search procedure

From: Biclustering of gene expression data using reactive greedy randomized adaptive search procedure

Algorithm GRASP (Seed)

 

   Current = Seed;

 

   While <termination condition not met> do

 

Solution ← Greedy_Randomized_ Construction (Current);

 

Solution ← Local_Search (Solution);

 

Current ← Solution;

 

   End