Skip to content
Snippets Groups Projects
  1. Feb 09, 2017
    • Martin Bauer's avatar
      Entropic · 68a50ca5
      Martin Bauer authored
      - version with weights in the entropy denominator
      68a50ca5
  2. Dec 22, 2016
  3. Dec 16, 2016
  4. Dec 15, 2016
  5. Dec 08, 2016
  6. Dec 04, 2016
  7. Nov 28, 2016
  8. Nov 25, 2016
  9. Nov 24, 2016
  10. Nov 21, 2016
  11. Nov 17, 2016
  12. Nov 16, 2016
  13. Nov 15, 2016
  14. Nov 14, 2016
  15. Nov 11, 2016
    • Martin Bauer's avatar
      Changed symbolsRead/ symbolsDefined semantics · b207d071
      Martin Bauer authored
      problem in moveConstantBeforeLoops transformation:
      
      --> a should end up here
      {
      for() {
        const int a = 5;
      }
      for() {
        const int a = 5
      }
      }
      
      the "a" of the lower loop was not moved up, since it could not move across first loop (which is wrong)
      b207d071