diff --git a/pres/reveal.js-master/css/theme/white.css b/pres/reveal.js-master/css/theme/white.css index 200ad2bc62df697e5bf733f98b11c98303a50a0f..fe32ce9ad4ab79f007dbc3ccb0caaaa6f0608d5a 100644 --- a/pres/reveal.js-master/css/theme/white.css +++ b/pres/reveal.js-master/css/theme/white.css @@ -16,7 +16,7 @@ body { .reveal { font-family: "Source Sans Pro", Helvetica, sans-serif; - font-size: 42px; + font-size: 38px; font-weight: normal; color: #222; } @@ -50,7 +50,7 @@ body { font-weight: 600; line-height: 1.2; letter-spacing: normal; - text-transform: uppercase; + /*text-transform: uppercase;*/ text-shadow: none; word-wrap: break-word; } diff --git a/pres/reveal.js-master/index.html b/pres/reveal.js-master/index.html index a093c1649cb2218c414a4b008172e6fffaaefc53..1601015bc7aeab086f7a88847100aaf545cac982 100644 --- a/pres/reveal.js-master/index.html +++ b/pres/reveal.js-master/index.html @@ -67,7 +67,7 @@ <section> <h4> Algorithm to generate all possible sequences </h4> <ul> - <li> Acend the Path recursively for every Droplet and decide at every Bifurcation if another heder droplet is needed</li> + <li> Ascend the Path recursively for every Droplet and decide at every Bifurcation if another heder droplet is needed</li> <li> This generates a (possibly huge) list of possibleSequences </li> </ul> </section> @@ -87,6 +87,20 @@ else: </pre></code> </section> + <section> + <h4> Possible Improvements</h4> + <ul> + <li>Performance ! </li> + <li>Recursion for finding possible sequences not implemented with good performance</li> + <ol> + <li>Check paths for header droplets that are likely to produce a short (with a lower amount of header droplets) sequence </li> + <li>After all possible sequences for these few paths are found check for feasability and colesceing </li> + <li>Just in case no sequence was found check the more complicated possible sequences</li> + </ol> + <li>No verfication yet (that the sequence really realizes the correct payload path) </li> + </ul> + </section> + </div> </div>