<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff></diff>
      <filename>data/first-suite-hist.png</filename>
    </modified>
    <modified>
      <diff>@@ -153,40 +153,6 @@ sketch
 - [[file:single-evolve/sketch.pde::void%20populationReset%20u8%20packet][population_reset]]
 
 *** experimental results (and playing with the big group)
-5 runs each of the following goals
-0) &quot;xx*&quot; $x^2$
-1) &quot;xxx**&quot; $x^3$
-2) &quot;7xx*+&quot; $x^2+7$
-3) &quot;987xxx*-+*+&quot; $8((x^2-x)+7)+9$ 
-
-over all combinations of the following parameters
-| GP parameter    | different values (normally milliseconds per execution) |
-|-----------------+--------------------------------------------------------|
-| mutation        | (0 10)                                                 |
-| breeding        | (0 10)                                                 |
-| injection       | (0 10)                                                 |
-| tournament size | (100 4 1)                                              |
-
-resulting in 420 total runs -- after removing those runs where mutation,
-breeding and injection are all 0
-
-#+tblname: condensed-results-tournament-4
-| goal |              --i |              -b- |              m-- |              m-i | mbi |
-|------+------------------+------------------+------------------+------------------+-----|
-|    0 | 77.1133333333333 | 215.686803887679 |           127.66 |  184.17858974359 |     |
-|    1 | 807.578534713026 | 1685.21269780701 |            645.5 |           805.65 |     |
-|    2 | 49.0695674620098 | 197.752021278984 | 45.6393369396871 | 52.4849094202899 |     |
-|    3 | 1105.78706875267 | 1652.64349621782 | 929.366606810173 | 344.271612309488 |     |
-
-#+begin_src gnuplot :var data=condensed-results-tournament-4 :results silent :exports code
-  set boxwidth 0.9 relative
-  set title 'run times by GP params'
-  set xlabel 'problems'
-  set ylabel 'runtimes (seconds)'
-  set style data histograms
-  set style fill solid 1.0 border -1
-  plot data using 2 title '--i', '' using 3 title '-b-', '' using 4 title 'm--', '' using 5 title 'm-i'
-#+end_src
 
 *** next steps
 
@@ -227,29 +193,53 @@ resulting in 420 total runs -- after removing those runs where mutation,
 breeding and injection are all 0
 
 #+tblname: condensed-results-tournament-4
-| goal |              --i |              -b- |              m-- |              m-i | mbi |
-|------+------------------+------------------+------------------+------------------+-----|
-|    0 | 77.1133333333333 | 215.686803887679 |           127.66 |  184.17858974359 |     |
-|    1 | 807.578534713026 | 1685.21269780701 |            645.5 |           805.65 |     |
-|    2 | 49.0695674620098 | 197.752021278984 | 45.6393369396871 | 52.4849094202899 |     |
-|    3 | 1105.78706875267 | 1652.64349621782 | 929.366606810173 | 344.271612309488 |     |
-
-#+begin_src gnuplot :var data=condensed-results-tournament-4 :file data/first-suite-hist.png :exports code
+| goal |              --i |              -b- |              m-- |              m-i |              mbi |
+|------+------------------+------------------+------------------+------------------+------------------|
+|    0 | 77.1133333333333 | 215.686803887679 |           127.66 |  184.17858974359 |           115.98 |
+|    1 | 807.578534713026 | 1685.21269780701 |            645.5 |           805.65 | 724.266666666667 |
+|    2 | 49.0695674620098 | 197.752021278984 | 45.6393369396871 | 52.4849094202899 | 66.7578861683425 |
+|    3 | 1105.78706875267 | 1652.64349621782 | 929.366606810173 | 344.271612309488 | 382.323249758704 |
+
+#+begin_src gnuplot :var data=condensed-results-tournament-4 :exports code :file data/first-suite-hist.png
   set boxwidth 0.9 relative
   set title 'run times by GP params'
   set xlabel 'problems'
   set ylabel 'runtimes (seconds)'
   set style data histograms
   set style fill solid 1.0 border -1
-  plot data using 2 title '--i', '' using 3 title '-b-', '' using 4 title 'm--', '' using 5 title 'm-i'
+  plot data using 2 title '--i', '' using 3 title '-b-', '' using 4 title 'm--', '' using 5 title 'm-i', '' using 6 title 'mbi'
 #+end_src
 
+#+resname:
 [[file:data/first-suite-hist.png]]
 
 #+begin_src ruby :var raw=first_suite_results_by_goal :exports none
   raw.select{|r| r[3] == 4}
 #+end_src
 
+#+resname:
+|  0 |  0 | 10 | 4 | 0 |  32 | 77.1133333333333 |
+|  0 |  0 | 10 | 4 | 1 | 298 | 807.578534713026 |
+|  0 |  0 | 10 | 4 | 2 | 298 | 49.0695674620098 |
+|  0 |  0 | 10 | 4 | 3 | 298 | 1105.78706875267 |
+|  0 | 10 |  0 | 4 | 0 | 298 | 215.686803887679 |
+|  0 | 10 |  0 | 4 | 1 | 298 | 1685.21269780701 |
+|  0 | 10 |  0 | 4 | 2 | 298 | 197.752021278984 |
+|  0 | 10 |  0 | 4 | 3 | 298 | 1652.64349621782 |
+| 10 |  0 |  0 | 4 | 0 | 125 |           127.66 |
+| 10 |  0 |  0 | 4 | 1 |  16 |            645.5 |
+| 10 |  0 |  0 | 4 | 2 | 298 | 45.6393369396871 |
+| 10 |  0 |  0 | 4 | 3 | 298 | 929.366606810173 |
+| 10 |  0 | 10 | 4 | 0 |  29 |  184.17858974359 |
+| 10 |  0 | 10 | 4 | 1 |  14 |           805.65 |
+| 10 |  0 | 10 | 4 | 2 | 189 | 52.4849094202899 |
+| 10 |  0 | 10 | 4 | 3 | 239 | 344.271612309488 |
+| 10 | 10 | 10 | 4 | 0 |  17 |            |
+| 10 | 10 | 10 | 4 | 1 |  14 |  |
+| 10 | 10 | 10 | 4 | 2 | 135 |  |
+| 10 | 10 | 10 | 4 | 3 | 298 |  |
+
+
 *** results
 **** setup
 #+srcname: first_suite_results_setup
@@ -358,6 +348,14 @@ breeding and injection are all 0
 |       10 |        0 |        10 |          4 |    1 |      14 |           805.65 |
 |       10 |        0 |        10 |          4 |    2 |     189 | 52.4849094202899 |
 |       10 |        0 |        10 |          4 |    3 |     239 | 344.271612309488 |
+|       10 |       10 |        10 |        100 |    0 |      10 |             41.5 |
+|       10 |       10 |        10 |        100 |    1 |      16 | 579.166666666667 |
+|       10 |       10 |        10 |        100 |    2 |     155 | 58.3026855294288 |
+|       10 |       10 |        10 |        100 |    3 |     298 | 436.408668716752 |
+|       10 |       10 |        10 |          4 |    0 |      17 |           115.98 |
+|       10 |       10 |        10 |          4 |    1 |      14 | 724.266666666667 |
+|       10 |       10 |        10 |          4 |    2 |     135 | 66.7578861683425 |
+|       10 |       10 |        10 |          4 |    3 |     298 | 382.323249758704 |
 
 **** full results
 #+srcname: first_suite_full_results
@@ -611,6 +609,48 @@ breeding and injection are all 0
 |       10 |        0 |        10 |          4 |  3.2 |     299 | 137.538461538462 |
 |       10 |        0 |        10 |          4 |  3.3 |     299 | 806.759197324415 |
 |       10 |        0 |        10 |          4 |  3.4 |     298 | 319.295302013423 |
+|       10 |       10 |        10 |        100 |  0.0 |      10 |             38.5 |
+|       10 |       10 |        10 |        100 |  0.1 |      10 |             31.7 |
+|       10 |       10 |        10 |        100 |  0.2 |      10 |             51.7 |
+|       10 |       10 |        10 |        100 |  0.3 |      10 |             45.0 |
+|       10 |       10 |        10 |        100 |  0.4 |      10 |             40.6 |
+|       10 |       10 |        10 |        100 |  1.0 |      10 |            511.2 |
+|       10 |       10 |        10 |        100 |  1.1 |      30 | 905.033333333333 |
+|       10 |       10 |        10 |        100 |  1.2 |      20 |            731.9 |
+|       10 |       10 |        10 |        100 |  1.3 |      10 |            377.8 |
+|       10 |       10 |        10 |        100 |  1.4 |      10 |            369.9 |
+|       10 |       10 |        10 |        100 |  2.0 |      10 |             54.7 |
+|       10 |       10 |        10 |        100 |  2.1 |     298 | 65.3691275167785 |
+|       10 |       10 |        10 |        100 |  2.2 |     298 | 65.6342281879195 |
+|       10 |       10 |        10 |        100 |  2.3 |      30 |             51.4 |
+|       10 |       10 |        10 |        100 |  2.4 |     139 |  54.410071942446 |
+|       10 |       10 |        10 |        100 |  3.0 |     298 | 429.030201342282 |
+|       10 |       10 |        10 |        100 |  3.1 |     299 | 401.083612040134 |
+|       10 |       10 |        10 |        100 |  3.2 |     298 | 570.926174496644 |
+|       10 |       10 |        10 |        100 |  3.3 |     298 | 278.687919463087 |
+|       10 |       10 |        10 |        100 |  3.4 |     298 | 502.315436241611 |
+|       10 |       10 |        10 |          1 |  0.0 |      10 |            237.9 |
+|       10 |       10 |        10 |          1 |  0.1 |      28 |             83.5 |
+|       10 |       10 |        10 |          4 |  0.0 |      10 |             65.5 |
+|       10 |       10 |        10 |          4 |  0.1 |      10 |             50.3 |
+|       10 |       10 |        10 |          4 |  0.2 |      10 |             24.6 |
+|       10 |       10 |        10 |          4 |  0.3 |      10 |             64.1 |
+|       10 |       10 |        10 |          4 |  0.4 |      10 |             54.0 |
+|       10 |       10 |        10 |          4 |  1.0 |      10 |            844.2 |
+|       10 |       10 |        10 |          4 |  1.1 |      30 | 942.633333333333 |
+|       10 |       10 |        10 |          4 |  1.2 |      10 |            381.6 |
+|       10 |       10 |        10 |          4 |  1.3 |      10 |            605.1 |
+|       10 |       10 |        10 |          4 |  1.4 |      10 |            847.8 |
+|       10 |       10 |        10 |          4 |  2.0 |     299 | 32.6655518394649 |
+|       10 |       10 |        10 |          4 |  2.1 |      10 |             96.7 |
+|       10 |       10 |        10 |          4 |  2.2 |     249 | 62.2449799196787 |
+|       10 |       10 |        10 |          4 |  2.3 |     109 | 66.6788990825688 |
+|       10 |       10 |        10 |          4 |  2.4 |      10 |             75.5 |
+|       10 |       10 |        10 |          4 |  3.0 |     299 | 517.943143812709 |
+|       10 |       10 |        10 |          4 |  3.1 |     299 | 398.605351170569 |
+|       10 |       10 |        10 |          4 |  3.2 |     298 | 384.791946308725 |
+|       10 |       10 |        10 |          4 |  3.3 |     299 | 509.809364548495 |
+|       10 |       10 |        10 |          4 |  3.4 |     298 |  100.46644295302 |
 
 * Issues / Notes
 ** new error code</diff>
      <filename>gp4ixm.org</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>20a5f7a1674666c2883ca27af80a49f608f7bcf2</id>
    </parent>
  </parents>
  <author>
    <name>Eric Schulte</name>
    <email>schulte.eric@gmail.com</email>
  </author>
  <url>http://github.com/eschulte/gp4ixm/commit/e5428495b59024b15ff271852b8a2a04b19c4210</url>
  <id>e5428495b59024b15ff271852b8a2a04b19c4210</id>
  <committed-date>2009-11-09T08:43:07-08:00</committed-date>
  <authored-date>2009-11-09T08:43:07-08:00</authored-date>
  <message>incorporating new results</message>
  <tree>a796539a0a1808e0e5faf6e8ee6e17f734184700</tree>
  <committer>
    <name>Eric Schulte</name>
    <email>schulte.eric@gmail.com</email>
  </committer>
</commit>
