Skip to content
Snippets Groups Projects
  1. Jun 13, 2014
  2. Jun 12, 2014
  3. May 30, 2014
  4. May 21, 2014
  5. Mar 25, 2014
  6. Jun 04, 2013
  7. Jun 03, 2013
  8. May 31, 2013
  9. May 22, 2013
    • Erwan Jahier's avatar
      Fix a bug when expanding nodes (-en). A Node that calls a node that · 499a3f47
      Erwan Jahier authored
      itself calls another node on a non-trivial clock (i.e., using a when)
      was not producing correct code.
      
      I've fixed this by performing the fix-point on nodes rather than on
      equations. Indeed its more natural and efficient, and it avoid the
      problem above. However, I did not really fix the problem, but just
      turn around it. All tests seems to work fine though.
      
      nb : #FAILS=81->80 (and -2 unresolved, but because I fixed the prog)
      499a3f47
  10. May 17, 2013
  11. May 16, 2013
  12. May 15, 2013
    • Erwan Jahier's avatar
      Fix test the -ec mode in presence of clocked variable. · d5870c84
      Erwan Jahier authored
      Indeed, I've intentionally removed the when statements in clocked local var like this :
      
       var
          v:int;
      
      because the following was producing a syntax error in ecexe:
      
       var
          v:int when c;
      
      But Actually, the right thing to do was to generate the following:
      
       var
          (v:int) when c;
      
      ...
      
      nb : #FAILS=90->89
      d5870c84
  13. May 13, 2013
  14. May 10, 2013
  15. May 07, 2013
  16. May 06, 2013
  17. Apr 25, 2013
  18. Apr 24, 2013
  19. Apr 05, 2013
  20. Apr 04, 2013
    • Erwan Jahier's avatar
      The -exec mode now supports the merge statement. · 1ca66bc0
      Erwan Jahier authored
      In order to do that, I've generalised the type of merge : now the clock
      argument can be any expression. Some assert false still prevent its use,
      but it should be easy to get rid of them (I'll do that latter).
      1ca66bc0
  21. Apr 02, 2013
  22. Feb 13, 2013
  23. Feb 07, 2013
  24. Feb 04, 2013
    • Erwan Jahier's avatar
      Fix 2 problems in the ec mode: · aaf09392
      Erwan Jahier authored
       - translate merge on bools in terms of current and ite
       - do not print the clock info in node profile in en mode
      
      + various fixes in lustre test files.
      
      nb : now all tests in the should_work dir passes !!!
      aaf09392
  25. Feb 01, 2013
  26. Jan 31, 2013
  27. Jan 29, 2013
  28. Jan 24, 2013
Loading