Changes between Initial Version and Version 1 of Ticket #3263, comment 1


Ignore:
Timestamp:
2015-04-06T05:43:16Z (10 years ago)
Author:
Rüdiger Franke

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3263, comment 1

    initial v1  
    77The compiled model generates wrong results though. There are deficiencies in the code generation for array slices, both rhs and lhs:
    88{{{
    9   wM2 := sorted_M[j + 1, :];        // translated to wM2 := sorted_M[j + 1, NOTHING];
    10   sorted_M[j + gap + 1, :] := wM2;  // translated to sorted_M := wM2
     9  wM2 := sorted_M[j + 1, :];        // generates wM2 := sorted_M[j + 1, NOTHING];
     10  sorted_M[j + gap + 1, :] := wM2;  // generates sorted_M := wM2
    1111}}}