Package ptolemy.actor

Examples of ptolemy.actor.Actor.fire()


            if (_debugging) {
                _debug("  firing..." + ((Nameable) next).getFullName());
            }

            next.fire();
        }

        // Time must be advanced after all dynamic actors are fired.
        _advanceModelTime();
    }
View Full Code Here


                                + "discrete output?");
            } else {
                if (_debugging) {
                    _debug("  firing..." + ((Nameable) next).getFullName());
                }
                next.fire();
            }
        }
    }

    /** Return the amount of history information needed by this solver.
View Full Code Here

                        ((CTEmbeddedDirector) director)
                                .setInitialStatesNotReady();
                    }
                }

                actor.fire();
            }

            // The controller needs to know the most updated outputs from
            // the firing of the enabled refinements.
            ctrl.readOutputsFromRefinement();
View Full Code Here

                if (actor.prefire()) {
                    if (_debugging) {
                        _debug("Fire actor " + ((Nameable) actor).getName());
                    }

                    actor.fire();
                    actor.postfire();
                }
            }
        } else {
            // if this director is at the top level, wait for async push/pull
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.