Changes between Initial Version and Version 1 of Ticket #2309, comment 5


Ignore:
Timestamp:
2013-08-13T12:28:12Z (12 years ago)
Author:
Lennart Ochel

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2309, comment 5

    initial v1  
    11That is probably not a helpful message for you as user :-)
    22
    3 You can avoid this missing case in our code generation with this workaround:
     3You can avoid this missing case in our code generation with the following workaround:
    44{{{#!mo
    55model ReadArray
     
    1515algorithm
    1616  for i in 1:alength loop
    17   (line, eof):= Streams.readLine( filename, i );
    18   temp := Strings.scanReal( line );
    19   a[i] := temp;
     17    (line, eof):= Streams.readLine(filename, i);
     18    temp := Strings.scanReal(line);
     19    a[i] := temp;
    2020  end for;
    2121end ReadArray;