Package ptolemy.actor.util

Examples of ptolemy.actor.util.FunctionDependency


            // FIXME: The following is really problematic. Check the
            // DESchedulingTest3.xml as example (NOTE: I can't
            // find this example. EAL).
            if (ioPort.isOutput()) {
                // Get the function dependency of the container actor
                FunctionDependency functionDependency = portContainer
                        .getFunctionDependency();

                List inputPorts = functionDependency
                        .getInputPortsDependentOn(ioPort);
                Iterator inputsIterator = inputPorts.iterator();

                // Iterate all input ports the current output depends on to
                // find their maximum depth.
View Full Code Here


                    continue;
                }
            } else {
                // The ioPort is an output port.
                // Get the function dependency of the container actor
                FunctionDependency functionDependency = portContainer
                        .getFunctionDependency();
                inputPorts = functionDependency
                        .getInputPortsDependentOn(ioPort);
            }
            // Iterate all input ports the current output depends on,
            // find their maximum depth.
            Iterator inputsIterator = inputPorts.iterator();
View Full Code Here

TOP

Related Classes of ptolemy.actor.util.FunctionDependency

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.