All Downloads are FREE. Search and download functionalities are using the official Maven repository.

model.unimplementedBiology.NervousSystem Maven / Gradle / Ivy

There is a newer version: 2.3.3
Show newest version
package model.unimplementedBiology;

import model.MARK_II.Neocortex;
import model.Retina;

/**
 * @author Quinn Liu ([email protected])
 * @version June 5, 2013
 */
public class NervousSystem {
    private CNS CNS;
    private model.unimplementedBiology.PNS PNS;

    public NervousSystem(Neocortex neocortex, LGN LGN, Retina retina) {
        this.CNS = new CNS(neocortex, LGN);
        this.PNS = new PNS(retina);
    }

    public CNS getCNS() {
        return this.CNS;
    }

    public PNS getPNS() {
        return this.PNS;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy