﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
5294	Backend does not support initial if equation with assert	Willi Braun	Karim Adbdelhak	"For instance models as below are not supported by BackendCreate.

{{{
loadString(""
model A
  Real x,xd;
  parameter Real lb=5, ub=10;
equation
initial equation
  if x<ub then
    assert(xd>49, \""Call ub assert\\n\"");
  end if;
  if x<lb then
    assert(xd<49, \""Call lb assert\\n\"");
  end if;
equation
  der(x) = sin(x*time)+lb*ub;
  xd = der(x);
end A;
"");
getErrorString();

simulate(A);
getErrorString();
}}}


"	defect	closed	high	1.14.0	Initialization	v1.14.0-dev-nightly	fixed		Niklas Worschech
