Examples of portList()


Examples of ptolemy.actor.CompositeActor.portList()

        // external ports are unknown The reason is that it will make
        // rate information propagate from an actor input port to
        // another actors input port that are connected on the inside
        // to the same external input port.  See
        // BaseSDFScheduler.setContainerRates.
        Iterator ports = model.portList().iterator();

        while (ports.hasNext()) {
            IOPort port = (IOPort) ports.next();

            if (_debugging && VERBOSE) {
View Full Code Here

Examples of ptolemy.actor.CompositeActor.portList()

        // is an HDFFSMDirector, which is a subclass of MultirateFSMDirector.
        ConstVariableModelAnalysis analysis = ConstVariableModelAnalysis
                .getAnalysis(this);
        CompositeActor model = (CompositeActor) getContainer();

        for (Iterator ports = model.portList().iterator(); ports.hasNext();) {
            IOPort port = (IOPort) ports.next();

            if (!(port instanceof ParameterPort)) {
                if (port.isInput()) {
                    _declareReconfigurationDependencyForRefinementRateVariables(
View Full Code Here

Examples of ptolemy.actor.CompositeActor.portList()

     */
    protected void _saveContainerRates(Map externalRates)
            throws NotSchedulableException, IllegalActionException {
        Director director = (Director) getContainer();
        CompositeActor container = (CompositeActor) director.getContainer();
        Iterator ports = container.portList().iterator();

        while (ports.hasNext()) {
            IOPort port = (IOPort) ports.next();

            if (_debugging && VERBOSE) {
View Full Code Here

Examples of ptolemy.actor.CompositeActor.portList()

        ConstVariableModelAnalysis analysis = ConstVariableModelAnalysis
                .getAnalysis(this);
        SDFDirector director = (SDFDirector) getContainer();
        CompositeActor model = (CompositeActor) director.getContainer();

        for (Iterator ports = model.portList().iterator(); ports.hasNext();) {
            IOPort port = (IOPort) ports.next();

            if (!(port instanceof ParameterPort)) {
                if (port.isInput()) {
                    _declareDependency(analysis, port, "tokenConsumptionRate",
View Full Code Here

Examples of ptolemy.actor.CompositeActor.portList()

        // FIXME: Why not get this via the container of the receivers?
        // or better yet, cache it in the receivers?
        Map externalRates = new HashMap();

        // Initialize externalRates to zero.
        for (Iterator ports = container.portList().iterator(); ports.hasNext();) {
            IOPort port = (IOPort) ports.next();
            externalRates.put(port, Fraction.ZERO);
        }

        // First solve the balance equations
View Full Code Here

Examples of ptolemy.actor.CompositeActor.portList()

        // and is used in the end to set final rates on external ports.
        // This map is initialized to zero.
        Map externalRates = new TreeMap(new DFUtilities.NamedObjComparator());

        // Initialize externalRates to zero.
        for (Iterator ports = container.portList().iterator(); ports.hasNext();) {
            IOPort port = (IOPort) ports.next();
            externalRates.put(port, Fraction.ZERO);
        }

        // An association between all the relations in a simulation and
View Full Code Here

Examples of ptolemy.actor.CompositeActor.portList()

                .getController();

        // Find the port number corresponding to the given input port.
        // Ports are numbered in the order as in the list returned by
        // portList().
        Iterator containerPorts = container.portList().iterator();
        int portNumber = 0;
        while (containerPorts.hasNext()) {
            if (containerPorts.next() == inputPort) {
                break;
            }
View Full Code Here

Examples of ptolemy.actor.CompositeActor.portList()

        ptolemy.codegen.c.actor.TypedCompositeActor containerHelper = (ptolemy.codegen.c.actor.TypedCompositeActor) _getHelper(container);

        // Find the port number corresponding to the given output
        // port.  Ports are numbered in the order as in the list
        // returned by portList().
        Iterator containerPorts = container.portList().iterator();
        int portNumber = 0;
        while (containerPorts.hasNext()) {
            if (containerPorts.next() == outputPort) {
                break;
            }
View Full Code Here

Examples of ptolemy.actor.CompositeActor.portList()

        CodeGeneratorHelper containerHelper = (CodeGeneratorHelper) _getHelper(container);

        List refinementPorts = ((Entity) refinement).portList();
        List controllerPorts = controller.portList();
        List containerPorts = container.portList();

        for (int i = 0; i < refinementPorts.size(); i++) {

            IOPort refinementPort = (IOPort) refinementPorts.get(i);
            IOPort controllerPort = (IOPort) controllerPorts.get(i);
View Full Code Here

Examples of ptolemy.actor.CompositeActor.portList()

                // current buffer size needed.

                _updatePortBufferSize();

                // Record external port rates for current configuration.
                List externalPorts = container.portList();
                int[] externalPortRates = new int[externalPorts.size()];
                Iterator externalPortsIterator = externalPorts.iterator();
                int portNumber = 0;
                while (externalPortsIterator.hasNext()) {
                    IOPort externalPort = (IOPort) externalPortsIterator.next();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.