﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
3044	warn if one tries to override secondary parameters	Lennart Ochel	somebody	"I think the simulation should display a warning at least if one tries to override secondary parameters.

Please, checkout the following example:
{{{#!mo
loadString(""
model Test
  Real y;
  parameter Real p = 1;
  parameter Real q = p;
equation
  y = q + time;
end Test;
""); getErrorString();

simulate(Test, simflags=""-lv=LOG_SOTI""); getErrorString();
val(q, 0.0); getErrorString();
val(y, 0.0); getErrorString();

simulate(Test, simflags=""-lv=LOG_SOTI -override=q=2""); getErrorString();
val(q, 0.0); getErrorString();
val(y, 0.0); getErrorString();
}}}

{{{q}}} will be {{{1}}} (actually {{{p}}}) for both cases. Any comments?"	discussion	new	high	Future	Run-time	trunk			Adrian Pop Martin Sjölund
