Package ca.nengo.sim.impl

Examples of ca.nengo.sim.impl.LocalSimulator


  /**
   * @return Simulator used to run this Network (a LocalSimulator by default)
   */
  public Simulator getSimulator() {
    if (mySimulator == null) {
      mySimulator = new LocalSimulator();
      mySimulator.initialize(this);
    }
    return mySimulator;
  }
View Full Code Here

TOP

Related Classes of ca.nengo.sim.impl.LocalSimulator

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.