<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <br>
    <div class="moz-cite-prefix">Op 09-01-13 11:01, Michiel Vermandel
      schreef:<br>
    </div>
    <blockquote
      cite="mid:1357725670.31968.YahooMailNeo@web161304.mail.bf1.yahoo.com"
      type="cite">
      <div style="color:#000; background-color:#fff; font-family:tahoma,
        new york, times, serif;font-size:10pt">
        <div><span>Ok, I found the problem.</span></div>
        <div style="color: rgb(0, 0, 0); font-size: 13.3333px;
          font-family: tahoma,new york,times,serif; background-color:
          transparent; font-style: normal;"><span>I did not copy the
            third planning variable value when cloning my planning
            entity.</span></div>
      </div>
    </blockquote>
    For 6.0, implementing cloneSolution() yourself will be optional, as
    we 'll have a reflection based implementation out-of-the-box too.<br>
    <blockquote
      cite="mid:1357725670.31968.YahooMailNeo@web161304.mail.bf1.yahoo.com"
      type="cite">
      <div style="color:#000; background-color:#fff; font-family:tahoma,
        new york, times, serif;font-size:10pt">
        <div style="color: rgb(0, 0, 0); font-size: 13.3333px;
          font-family: tahoma,new york,times,serif; background-color:
          transparent; font-style: normal;"><span>Problem fixed.</span></div>
        <div style="color: rgb(0, 0, 0); font-size: 13.3333px;
          font-family: tahoma,new york,times,serif; background-color:
          transparent; font-style: normal;"><br>
          <span></span></div>
        <div style="color: rgb(0, 0, 0); font-size: 13.3333px;
          font-family: tahoma,new york,times,serif; background-color:
          transparent; font-style: normal;"><span>Regards,</span></div>
        <div style="color: rgb(0, 0, 0); font-size: 13.3333px;
          font-family: tahoma,new york,times,serif; background-color:
          transparent; font-style: normal;"><br>
          <span></span></div>
        <div style="color: rgb(0, 0, 0); font-size: 13.3333px;
          font-family: tahoma,new york,times,serif; background-color:
          transparent; font-style: normal;"><span>Michiel<br>
          </span></div>
        <div>&nbsp;</div>
        <div>-----------------<br>
          <a class="moz-txt-link-freetext" href="http://www.codessentials.com">http://www.codessentials.com</a> - Your essential software, for
          free!<br>
          Follow us at <a class="moz-txt-link-freetext" href="http://twitter.com/#!/Codessentials">http://twitter.com/#!/Codessentials</a><br>
        </div>
        <div style="font-family: tahoma, new york, times, serif;
          font-size: 10pt;">
          <div style="font-family: times new roman, new york, times,
            serif; font-size: 12pt;">
            <div dir="ltr"> <font face="Arial" size="2">
                <hr size="1"> <b><span style="font-weight:bold;">From:</span></b>
                Michiel Vermandel <a class="moz-txt-link-rfc2396E" href="mailto:mvermand@yahoo.com">&lt;mvermand@yahoo.com&gt;</a><br>
                <b><span style="font-weight: bold;">To:</span></b> Rules
                Users List <a class="moz-txt-link-rfc2396E" href="mailto:rules-users@lists.jboss.org">&lt;rules-users@lists.jboss.org&gt;</a> <br>
                <b><span style="font-weight: bold;">Sent:</span></b>
                Wednesday, January 9, 2013 10:32 AM<br>
                <b><span style="font-weight: bold;">Subject:</span></b>
                Re: [rules-users] Fw: proble with localSearch<br>
              </font> </div>
            <br>
            <div id="yiv195543016">
              <div>
                <div
                  style="color:#000;background-color:#fff;font-family:tahoma,
                  new york, times, serif;font-size:10pt;">
                  <div><span>There is </span>a construction heuristic
                    that should have already filled in that planning
                    entity.</div>
                  <div style="color:rgb(0, 0,
                    0);font-size:13.3333px;font-family:tahoma, new york,
                    times,
                    serif;background-color:transparent;font-style:normal;">The
                    two other planning variables are filled for each
                    planning entity.</div>
                  <div style="color:rgb(0, 0,
                    0);font-size:13.3333px;font-family:tahoma, new york,
                    times,
                    serif;background-color:transparent;font-style:normal;">I
                    have put a printline in the setter of the
                    troublesome planning variable:</div>
                  <div style="color:rgb(0, 0,
                    0);font-size:13.3333px;font-family:tahoma, new york,
                    times,
                    serif;background-color:transparent;font-style:normal;"><br>
                  </div>
                  <div style="color:rgb(0, 0,
                    0);font-size:13.3333px;font-family:tahoma, new york,
                    times,
                    serif;background-color:transparent;font-style:normal;">&nbsp;&nbsp;&nbsp;
                    @PlanningVariable(strengthComparatorClass =
                    TasktypeStrengthComparator.class, nullable = false)<br>
                    &nbsp;&nbsp;&nbsp; @ValueRange(type =
                    ValueRangeType.FROM_SOLUTION_PROPERTY,
                    solutionProperty = "tasktypes")<br>
                    &nbsp;&nbsp;&nbsp; public TaskType getType() {<br>
                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return type;<br>
                    &nbsp;&nbsp;&nbsp; }<br>
                    <br>
                    &nbsp;&nbsp;&nbsp; public void setType(TaskType type) {<br>
                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <span style="font-weight:bold;">System.out.println("Type
                      set to " + type);</span><br>
                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; this.type = type;<br>
                    &nbsp;&nbsp;&nbsp; }<br>
                  </div>
                  <div>&nbsp;<br>
                    And I get the following outprint:<br>
                    <br>
                    Type set to TL<br>
                    Type set to null<br>
                    Type set to TL<br>
                    Type set to TL<br>
                    Type set to null<br>
                    Type set to TL<br>
                    Type set to null<br>
                    Type set to TL<br>
                    Type set to null<br>
                    Type set to TL<br>
                    Type set to null<br>
                    Type set to TL<br>
                    Type set to TL<br>
                    Type set to null<br>
                    Type set to TL<br>
                    ...<br>
                    Type set to null<br>
                    Type set to TL<br>
                    Type set to null<br>
                    Type set to TL<br>
                    <br>
                    Note that I also tried to set the annotation
                    property nullable to false.<br>
                    This seems to have no effect.<br>
                    <br>
                    Thanks,<br>
                    Michiel<br>
                  </div>
                  <div>-----------------<br>
                    <a class="moz-txt-link-freetext" href="http://www.codessentials.com">http://www.codessentials.com</a> - Your essential
                    software, for free!<br>
                    Follow us at <a class="moz-txt-link-freetext" href="http://twitter.com/#!/Codessentials">http://twitter.com/#!/Codessentials</a><br>
                  </div>
                  <div style="font-family:tahoma, new york, times,
                    serif;font-size:10pt;">
                    <div style="font-family:times new roman, new york,
                      times, serif;font-size:12pt;">
                      <div dir="ltr"> <font face="Arial" size="2">
                          <hr size="1"> <b><span
                              style="font-weight:bold;">From:</span></b>
                          Geoffrey De Smet
                          <a class="moz-txt-link-rfc2396E" href="mailto:ge0ffrey.spam@gmail.com">&lt;ge0ffrey.spam@gmail.com&gt;</a><br>
                          <b><span style="font-weight:bold;">To:</span></b>
                          Rules Users List
                          <a class="moz-txt-link-rfc2396E" href="mailto:rules-users@lists.jboss.org">&lt;rules-users@lists.jboss.org&gt;</a> <br>
                          <b><span style="font-weight:bold;">Sent:</span></b>
                          Wednesday, January 9, 2013 9:30 AM<br>
                          <b><span style="font-weight:bold;">Subject:</span></b>
                          Re: [rules-users] Fw: proble with localSearch<br>
                        </font> </div>
                      <br>
                      <div id="yiv195543016">
                        <div> <br>
                          <div class="yiv195543016moz-cite-prefix">Op
                            09-01-13 08:21, Michiel Vermandel schreef:<br>
                          </div>
                          <blockquote type="cite">
                            <div
                              style="color:#000;background-color:#fff;font-family:tahoma,
                              new york, times, serif;font-size:10pt;"><span>Hi
                                Geoffrey,</span>
                              <div style="font-family:tahoma, new york,
                                times, serif;font-size:10pt;">
                                <div style="font-family:times new roman,
                                  new york, times,
                                  serif;font-size:12pt;">
                                  <div id="yiv195543016">
                                    <div>
                                      <div
                                        style="color:#000;background-color:#fff;font-family:tahoma,
                                        new york, times,
                                        serif;font-size:10pt;">
                                        <div style="color:rgb(0, 0,
                                          0);font-size:13.3333px;font-family:tahoma,
                                          new york, times,
                                          serif;background-color:transparent;font-style:normal;"><br>
                                          <span></span></div>
                                        <div style="color:rgb(0, 0,
                                          0);font-size:13.3333px;font-family:tahoma,
                                          new york, times,
                                          serif;background-color:transparent;font-style:normal;"><span>Thanks

                                            for your advice.</span></div>
                                        <div style="color:rgb(0, 0,
                                          0);font-size:13.3333px;font-family:tahoma,
                                          new york, times,
                                          serif;background-color:transparent;font-style:normal;"><span>Indeed

                                            one of the planning
                                            variables is consistently
                                            null over all planning
                                            entities.</span></div>
                                      </div>
                                    </div>
                                  </div>
                                </div>
                              </div>
                            </div>
                          </blockquote>
                          And there was a construction heuristic that
                          should have already filled in that planning
                          entity?<br>
                          Enable DEBUG logging, so you can see in the
                          construction heuristic log if it does steps
                          which change that variable from null to a
                          non-null value.<br>
                          <br>
                          If you have 2 &lt;constructionHeuristics&gt;
                          configurations before the &lt;localSearch&gt;
                          configuration (which I don't see how you could
                          with the 5.5 CH behavior):<br>
                          I just fixed a bug/feature for 6.0 earlier
                          this week to support that.<br>
                          <br>
                          <blockquote type="cite">
                            <div
                              style="color:#000;background-color:#fff;font-family:tahoma,
                              new york, times, serif;font-size:10pt;">
                              <div style="font-family:tahoma, new york,
                                times, serif;font-size:10pt;">
                                <div style="font-family:times new roman,
                                  new york, times,
                                  serif;font-size:12pt;">
                                  <div id="yiv195543016">
                                    <div>
                                      <div
                                        style="color:#000;background-color:#fff;font-family:tahoma,
                                        new york, times,
                                        serif;font-size:10pt;">
                                        <div style="color:rgb(0, 0,
                                          0);font-size:13.3333px;font-family:tahoma,
                                          new york, times,
                                          serif;background-color:transparent;font-style:normal;"><span>Should

                                            drools planner take care of
                                            this or should I impose an
                                            extra rule to exclude these
                                            selections?</span></div>
                                        <div style="color:rgb(0, 0,
                                          0);font-size:13.3333px;font-family:tahoma,
                                          new york, times,
                                          serif;background-color:transparent;font-style:normal;"><span>Once

                                            again I seem to struggle
                                            with nulls being passed in
                                            as planning variable...</span></div>
                                        <div style="color:rgb(0, 0,
                                          0);font-size:13.3333px;font-family:tahoma,
                                          new york, times,
                                          serif;background-color:transparent;font-style:normal;"><br>
                                          <span></span></div>
                                        <div style="color:rgb(0, 0,
                                          0);font-size:13.3333px;font-family:tahoma,
                                          new york, times,
                                          serif;background-color:transparent;font-style:normal;"><span>Thanks,</span></div>
                                        <div style="color:rgb(0, 0,
                                          0);font-size:13.3333px;font-family:tahoma,
                                          new york, times,
                                          serif;background-color:transparent;font-style:normal;"><br>
                                          <span></span></div>
                                        <div style="color:rgb(0, 0,
                                          0);font-size:13.3333px;font-family:tahoma,
                                          new york, times,
                                          serif;background-color:transparent;font-style:normal;"><span>Michiel<br>
                                          </span></div>
                                        <div>&nbsp;</div>
                                        <div>-----------------<br>
                                          <a class="moz-txt-link-freetext" href="http://www.codessentials.com">http://www.codessentials.com</a> -
                                          Your essential software, for
                                          free!<br>
                                          Follow us at
                                          <a class="moz-txt-link-freetext" href="http://twitter.com/#!/Codessentials">http://twitter.com/#!/Codessentials</a><br>
                                        </div>
                                        <div style="font-family:tahoma,
                                          new york, times,
                                          serif;font-size:10pt;">
                                          <div style="font-family:times
                                            new roman, new york, times,
                                            serif;font-size:12pt;">
                                            <div dir="ltr"> <font
                                                face="Arial" size="2">
                                                <hr size="1"> <b><span
style="font-weight:bold;">From:</span></b> Geoffrey De Smet <a
                                                  moz-do-not-send="true"
                                                  rel="nofollow"
                                                  class="yiv195543016moz-txt-link-rfc2396E"
ymailto="mailto:ge0ffrey.spam@gmail.com" target="_blank"
                                                  href="mailto:ge0ffrey.spam@gmail.com">&lt;ge0ffrey.spam@gmail.com&gt;</a><br>
                                                <b><span
                                                    style="font-weight:bold;">To:</span></b>
                                                Michiel Vermandel <a
                                                  moz-do-not-send="true"
                                                  rel="nofollow"
                                                  class="yiv195543016moz-txt-link-rfc2396E"
ymailto="mailto:mvermand@yahoo.com" target="_blank"
                                                  href="mailto:mvermand@yahoo.com">&lt;mvermand@yahoo.com&gt;</a>;
                                                Rules Users List <a
                                                  moz-do-not-send="true"
                                                  rel="nofollow"
                                                  class="yiv195543016moz-txt-link-rfc2396E"
ymailto="mailto:rules-users@lists.jboss.org" target="_blank"
                                                  href="mailto:rules-users@lists.jboss.org">&lt;rules-users@lists.jboss.org&gt;</a>
                                                <br>
                                                <b><span
                                                    style="font-weight:bold;">Sent:</span></b>
                                                Tuesday, January 8, 2013
                                                4:27 PM<br>
                                                <b><span
                                                    style="font-weight:bold;">Subject:</span></b>
                                                Re: proble with
                                                localSearch<br>
                                              </font> </div>
                                            <br>
                                            <div id="yiv195543016">
                                              <div> <br>
                                                <div
                                                  class="yiv195543016moz-cite-prefix">Op

                                                  08-01-13 15:24,
                                                  Michiel Vermandel
                                                  schreef:<br>
                                                </div>
                                                <blockquote type="cite">
                                                  <div
                                                    style="color:#000;background-color:#fff;font-family:tahoma,
                                                    new york, times,
                                                    serif;font-size:10pt;">Hi,<br>
                                                    <br>
                                                    I'm trying to
                                                    implement a basic
                                                    local search (really
                                                    new to it).<br>
                                                    <br>
                                                    When I run my
                                                    project I now get:<br>
                                                    <br>
                                                    Exception in thread
                                                    "main"
                                                    java.lang.IllegalStateException:
                                                    Phase localSearch
                                                    started with an
                                                    uninitialized
                                                    Solution. First
                                                    initialize the
                                                    Solution. For
                                                    example, run a phase
                                                    constructionHeuristic
                                                    first.<br>
                                                    &nbsp;&nbsp;&nbsp; at
org.drools.planner.core.localsearch.DefaultLocalSearchSolverPhase.phaseStarted(DefaultLocalSearchSolverPhase.java:120)<br>
                                                  </div>
                                                </blockquote>
                                                You have a construction
                                                heuristic configured, so
                                                all @PlanningVariable's
                                                should be different from
                                                null after that phase is
                                                ended.<br>
                                                So when the local search
                                                phase starts, that check
                                                should be ok and not
                                                throw that exception.<br>
                                                <br>
                                                Comment out local
                                                search, write the
                                                solution to disk an
                                                verify that all planning
                                                variables are now not
                                                null.<br>
                                                Or debug where that
                                                exception is throw and
                                                inspect
                                                phaseScope.getSolverScope().getScoreDirector().getWorkingSolution().<br>
                                                <blockquote type="cite">
                                                  <div
                                                    style="color:#000;background-color:#fff;font-family:tahoma,
                                                    new york, times,
                                                    serif;font-size:10pt;"><br>
                                                    This is my config:<br>
                                                    <br>
                                                    &lt;?xml
                                                    version="1.0"
                                                    encoding="UTF-8"?&gt;<br>
                                                    &lt;solver&gt;<br>
                                                    &nbsp;&nbsp;&nbsp;
                                                    &lt;environmentMode&gt;DEBUG&lt;/environmentMode&gt;<br>
                                                    <br>
                                                    &nbsp;&nbsp;&nbsp; &lt;!-- Domain
                                                    model configuration
                                                    --&gt;<br>
                                                    &nbsp;&nbsp;&nbsp;
&lt;solutionClass&gt;be.axi.planner.app.InspectionSchedule&lt;/solutionClass&gt;<br>
                                                    &nbsp;&nbsp;&nbsp;
&lt;planningEntityClass&gt;be.axi.planner.domain.Task&lt;/planningEntityClass&gt;<br>
                                                    <br>
                                                    &nbsp;&nbsp;&nbsp; &lt;!-- Score
                                                    configuration --&gt;<br>
                                                    &nbsp;&nbsp;&nbsp;
                                                    &lt;scoreDirectorFactory&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;scoreDefinitionType&gt;HARD_AND_SOFT&lt;/scoreDefinitionType&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;scoreDrl&gt;/inspectionRules.drl&lt;/scoreDrl&gt;<br>
                                                    &nbsp;&nbsp;&nbsp;
                                                    &lt;/scoreDirectorFactory&gt;<br>
                                                    <br>
                                                    &nbsp;&nbsp;&nbsp;
                                                    &lt;constructionHeuristic&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&lt;constructionHeuristicType&gt;BEST_FIT_DECREASING&lt;/constructionHeuristicType&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;!--
constructionHeuristicPickEarlyType&gt;FIRST_LAST_STEP_SCORE_EQUAL_OR_IMPROVING&lt;/constructionHeuristicPickEarlyType--&gt;<br>
                                                    &nbsp;&nbsp;&nbsp;
                                                    &lt;/constructionHeuristic&gt;<br>
                                                    <br>
                                                    &nbsp;&nbsp;&nbsp;
                                                    &lt;localSearch&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;termination&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&lt;terminationCompositionStyle&gt;OR&lt;/terminationCompositionStyle&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;maximumSecondsSpend&gt;3600&lt;/maximumSecondsSpend&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;scoreAttained&gt;0hard/0soft&lt;/scoreAttained&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;/termination&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;unionMoveSelector&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;changeMoveSelector&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;valueSelector&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&lt;planningVariableName&gt;period&lt;/planningVariableName&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;/valueSelector&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;/changeMoveSelector&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;changeMoveSelector&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;valueSelector&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&lt;planningVariableName&gt;spector&lt;/planningVariableName&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;/valueSelector&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;/changeMoveSelector&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;changeMoveSelector&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;valueSelector&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&lt;planningVariableName&gt;type&lt;/planningVariableName&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;/valueSelector&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;/changeMoveSelector&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;swapMoveSelector&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;/swapMoveSelector&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;/unionMoveSelector&gt;<br>
                                                    <br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;acceptor&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;planningEntityTabuSize&gt;7&lt;/planningEntityTabuSize&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;/acceptor&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;forager&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;minimalAcceptedSelection&gt;1000&lt;/minimalAcceptedSelection&gt;<br>
                                                    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
                                                    &lt;/forager&gt;<br>
                                                    &nbsp;&nbsp;&nbsp;
                                                    &lt;/localSearch&gt;<br>
                                                    <br>
                                                    &lt;/solver&gt;<br>
                                                    <div><span></span></div>
                                                    <div>&nbsp;Any thoughts
                                                      on what I'm doing
                                                      wrong?<br>
                                                      <br>
                                                      Thanks<br>
                                                      <br>
                                                      Michiel<br>
                                                    </div>
                                                    <div>-----------------<br>
                                                      <a
                                                        moz-do-not-send="true"
                                                        rel="nofollow"
                                                        class="yiv195543016moz-txt-link-freetext"
                                                        target="_blank"
href="http://www.codessentials.com/">http://www.codessentials.com</a> -
                                                      Your essential
                                                      software, for
                                                      free!<br>
                                                      Follow us at <a
                                                        moz-do-not-send="true"
                                                        rel="nofollow"
                                                        class="yiv195543016moz-txt-link-freetext"
                                                        target="_blank"
href="http://twitter.com/#%21/Codessentials">http://twitter.com/#!/Codessentials</a></div>
                                                  </div>
                                                  <br>
                                                  <fieldset
                                                    class="yiv195543016mimeAttachmentHeader"></fieldset>
                                                  <br>
                                                  <pre>_______________________________________________
rules-users mailing list
<a moz-do-not-send="true" rel="nofollow" class="yiv195543016moz-txt-link-abbreviated" ymailto="mailto:rules-users@lists.jboss.org" target="_blank" href="mailto:rules-users@lists.jboss.org">rules-users@lists.jboss.org</a>
<a moz-do-not-send="true" rel="nofollow" class="yiv195543016moz-txt-link-freetext" target="_blank" href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a>
</pre>
                                                </blockquote>
                                                <br>
                                              </div>
                                            </div>
                                            <br>
                                            <br>
                                          </div>
                                        </div>
                                      </div>
                                    </div>
                                  </div>
                                  <br>
                                  <br>
                                </div>
                              </div>
                            </div>
                            <br>
                            <fieldset
                              class="yiv195543016mimeAttachmentHeader"></fieldset>
                            <br>
                            <pre>_______________________________________________
rules-users mailing list
<a moz-do-not-send="true" rel="nofollow" class="yiv195543016moz-txt-link-abbreviated" ymailto="mailto:rules-users@lists.jboss.org" target="_blank" href="mailto:rules-users@lists.jboss.org">rules-users@lists.jboss.org</a>
<a moz-do-not-send="true" rel="nofollow" class="yiv195543016moz-txt-link-freetext" target="_blank" href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a>
</pre>
                          </blockquote>
                          <br>
                        </div>
                      </div>
                      <br>
                      _______________________________________________<br>
                      rules-users mailing list<br>
                      <a moz-do-not-send="true" rel="nofollow"
                        ymailto="mailto:rules-users@lists.jboss.org"
                        target="_blank"
                        href="mailto:rules-users@lists.jboss.org">rules-users@lists.jboss.org</a><br>
                      <a moz-do-not-send="true" rel="nofollow"
                        target="_blank"
                        href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>
                      <br>
                      <br>
                    </div>
                  </div>
                </div>
              </div>
            </div>
            <br>
            _______________________________________________<br>
            rules-users mailing list<br>
            <a moz-do-not-send="true"
              ymailto="mailto:rules-users@lists.jboss.org"
              href="mailto:rules-users@lists.jboss.org">rules-users@lists.jboss.org</a><br>
            <a moz-do-not-send="true"
              href="https://lists.jboss.org/mailman/listinfo/rules-users"
              target="_blank">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>
            <br>
            <br>
          </div>
        </div>
      </div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
rules-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:rules-users@lists.jboss.org">rules-users@lists.jboss.org</a>
<a class="moz-txt-link-freetext" href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a>
</pre>
    </blockquote>
    <br>
  </body>
</html>