Next: Port is bound more than once, Previous: Port not bound, Up: Well-formedness -- System [Contents][Index]
port not bound – of instanceNo binding is specified for a port of a component instance.
interface ihello
{
in bool hello ();
behavior {}
}
component hello
{
provides ihello p;
behavior {}
}
component instance_port_not_bound
{
system
{
hello h;
}
}
This results in the following error message:
instance-port-not-bound.dzn:9:3: error: port `p' not bound instance-port-not-bound.dzn:17:5: info: of instance: `h'