<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/1.0.4">
</HEAD>
<BODY>
Hi, 
<BR>

<BR>
I am programming in Emboss but I do not understand why the buckle number 2 (see it in red) does not work. 
<BR>
The problem is that the program does not pass by the buckle in red. Is it impossible to have two imbricated buckles or there is another problem ? 
<BR>
I do not find the answer to my answer so, can someone help me, please ..... :-(
<BR>
Carole
<BR>

<BR>

<BR>

<BR>
This is the code :
<BR>

<BR>

<BR>
//S&#233;lection des meilleurs couples
<BR>
&nbsp; ajint compteur2 = 0;
<BR>
&nbsp; iterList3 = ajListIter(ListCoupleInit); // parcours liste couple avec score
<BR>
&nbsp; iterList4 = ajListIter(BestCouple);&nbsp; // liste contenant meilleurs couples
<BR>
&nbsp; 
<BR>
&nbsp; ajint nbreBestCouple2 = 0;
<BR>
 nbreBestCouple2 = ajListLength(BestCouple);
<BR>
 ajFmtPrintF(outf,&quot;\n nbre de meilleurs couples 2 : %d \n&quot;, nbreBestCouple2);
<BR>
 
<BR>
&nbsp; //remplissage liste BestCouple
<BR>
&nbsp; while (ajListIterMore(iterList3))
<BR>
&nbsp;&nbsp;&nbsp; {
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ajFmtPrintF(outf,&quot;\n Boucle 1 \n&quot;); 
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; res3 = (CoupleOlig) ajListIterNext(iterList3);
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ajint nbreBestCouple3 = 0;
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; nbreBestCouple3 = ajListLength(BestCouple);
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ajFmtPrintF(outf,&quot;\n nbre de meilleurs couples 3 : %d \n&quot;, nbreBestCouple3);
<BR>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (compteur2 == 0)
<BR>
        {
<BR>
        &nbsp; ajFmtPrintF(outf,&quot;\n Boucle 3 \n&quot;); 
<BR>
        &nbsp; ajListPush(BestCouple, (void *) res3);
<BR>
        &nbsp; ajFmtPrintF(outf,&quot;\n Boucle 5 \n&quot;);
<BR>
        }
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; compteur2 ++;
<BR>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; while (ajListIterMore(iterList4))
<BR>
<FONT COLOR="#f80000"><B>        {</FONT></B>
<BR>
<FONT COLOR="#f80000"><B>        &nbsp; ajFmtPrintF(outf,&quot;\n Boucle 2 \n&quot;); </FONT></B>
<BR>
<FONT COLOR="#f80000"><B>        &nbsp; res4 = (CoupleOlig) ajListIterNext(iterList4);</FONT></B>
<BR>
<FONT COLOR="#f80000"><B>        &nbsp; if (res3-&gt;score &lt;= res4-&gt;score)</FONT></B>
<BR>
<FONT COLOR="#f80000"><B>        &nbsp;&nbsp;&nbsp; {</FONT></B>
<BR>
<FONT COLOR="#f80000"><B>        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ajFmtPrintF(outf,&quot;\n Boucle 4 \n&quot;); </FONT></B>
<BR>
<FONT COLOR="#f80000"><B>        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ajListInsert(iterList4, (void*) res3);</FONT></B>
<BR>
<FONT COLOR="#f80000"><B>        &nbsp;&nbsp;&nbsp; }&nbsp; </FONT></B>
<BR>
<FONT COLOR="#f80000"><B>        }</FONT></B>
<BR>
&nbsp;&nbsp;&nbsp; }
<BR>

<BR>

<BR>
&nbsp; ajint nbreBestCouple = 0;
<BR>
&nbsp; nbreBestCouple = ajListLength(BestCouple);
<BR>
&nbsp; ajFmtPrintF(outf,&quot;\n nbre de meilleurs couples : %d \n&quot;, nbreBestCouple);
<BR>

<BR>
 
<BR>

<BR>
 
<BR>

</BODY>
</HTML>