﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1783	Inner/outer handling fails for some cases	Per Östlund	Per Östlund	"The following model generates two {{{stateGraphRoot.activeStepsDummy = 0.0}}} equations, but one of them should be prefixed with {{{tankController.makeProduct}}}.
{{{
model TankController 
  parameter Real limit = 0.98;
  MakeProduct makeProduct(limit = limit);
  Real lt = makeProduct.limit;
end TankController;

model MakeProduct 
  inner outer StateGraphRoot stateGraphRoot;
  parameter Real limit = 0.98;
end MakeProduct;

model StateGraphRoot 
  Real activeStepsDummy;
equation
  activeStepsDummy = 0;
end StateGraphRoot;

model ControlledTanks 
  TankController tankController;
  inner StateGraphRoot stateGraphRoot;
end ControlledTanks;
}}}
I don't really expect this ticket to be resolved with the current instantiation, so this ticket is mostly just a reminder to make sure this works in the new instantiation."	defect	closed	normal	2.0.0	New Instantiation	trunk	fixed		
