﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1162	Backend: Fixed attribute not working properly for variables	Martin Sjölund	Martin Sjölund	"The following two classes will generate different initial equations. In the first case, we will solve r and get der(r) = 1 = r.

class A
  Real r(fixed = false, start=2.0);
initial equation
  der(r) = 1;
equation
  der(r) = r;
end A;

In the second case, r will not be solved for in the initial equations. r = 2; der(r) = 1.

class A
  Real r(start=2.0);
initial equation
  der(r) = 1;
equation
  der(r) = r;
end A;"	defect	closed	normal				fixed		Martin Sjölund
