Changes between Initial Version and Version 1 of Ticket #2309, comment 5
- Timestamp:
- 2013-08-13T12:28:12Z (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2309, comment 5
initial v1 1 1 That is probably not a helpful message for you as user :-) 2 2 3 You can avoid this missing case in our code generation with th isworkaround:3 You can avoid this missing case in our code generation with the following workaround: 4 4 {{{#!mo 5 5 model ReadArray … … 15 15 algorithm 16 16 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; 20 20 end for; 21 21 end ReadArray;