Opened 19 years ago

Last modified 14 years ago

#69 closed defect (fixed)

write_integer_array missing

Reported by: mater Owned by: mater
Priority: normal Milestone:
Component: Version:
Keywords: Cc: mater, Adrian Pop

Description

See comment

Change History (3)

comment:1 by mater, 19 years ago

Ett exempel:

function fac

input Integer n;
output Integer[n] y;

algorithm

y[1]:=1;
for i in 2:n loop

y[i] := y[i-1] * i;

end for;

end fac;

evaluering av t.ex. fac(4) funkar inte. Men om jag sätter typen på y till
Real[n] så får jag önskat resultat. Tror bara att det är utskriftsrutinen av
integerarrayer som saknas.

comment:2 by Peter Aronsson, 18 years ago

Explanation in english: Evaluation of e.g. fac(4) does not work. But if type is
changed to Real it works. Probable cause: write_integer_array missing.

comment:3 by Martin Sjölund, 14 years ago

Works since a long time ago

Note: See TracTickets for help on using tickets.